/* Dabet Theme - Main Stylesheet */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Image Styles */
.hero-image-wrapper {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.site-header {
    background: #1a1a2e;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-desktop .primary-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-desktop .primary-menu li {
    position: relative;
}

.nav-desktop .primary-menu a {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-desktop .primary-menu a:hover {
    color: #e94560;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login,
.btn-register {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-login:hover {
    background: #fff;
    color: #1a1a2e;
}

.btn-register {
    background: #e94560;
    border: 2px solid #e94560;
    color: #fff;
}

.btn-register:hover {
    background: #c9334e;
    border-color: #c9334e;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: #fff;
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    background: #1a1a2e;
    padding: 20px;
}

.nav-mobile .mobile-menu {
    list-style: none;
}

.nav-mobile .mobile-menu li {
    margin-bottom: 15px;
}

.nav-mobile .mobile-menu a {
    color: #fff;
    font-size: 16px;
    display: block;
    padding: 10px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e94560;
    color: #fff;
}

.btn-primary:hover {
    background: #c9334e;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a2e;
}

/* Content Sections */
.site-main section {
    padding: 60px 0;
}

.site-main section:nth-child(even) {
    background: #fff;
}

.site-main h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
}

.site-main h3 {
    font-size: 24px;
    color: #16213e;
    margin-bottom: 15px;
}

.site-main p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Grid Layouts */
.sports-grid,
.casino-grid,
.promo-grid,
.features-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sport-card,
.casino-card,
.promo-card,
.feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sport-card:hover,
.casino-card:hover,
.promo-card:hover,
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.sport-card h3,
.casino-card h3,
.promo-card h3,
.feature-item h3 {
    color: #e94560;
    margin-bottom: 15px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Content Pages */
.page-content,
.single-post {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.page-content h1,
.single-post h1 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.content-body,
.post-content {
    font-size: 18px;
    line-height: 1.8;
}

/* Post Meta */
.post-meta {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.post-date,
.post-author {
    margin-right: 20px;
}

/* Archive & Blog */
.archive-header,
.blog-header {
    background: #1a1a2e;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.archive-header h1,
.blog-header h1 {
    font-size: 36px;
}

.posts-grid,
.posts-list {
    display: grid;
    gap: 30px;
}

.post-card,
.post-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.post-card:hover,
.post-item:hover {
    transform: translateY(-3px);
}

.post-card h2,
.post-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
}

.post-card h2 a,
.post-item h2 a {
    color: #1a1a2e;
}

.post-card h2 a:hover,
.post-item h2 a:hover {
    color: #e94560;
}

.post-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #e94560;
    font-weight: 600;
}

/* Sidebar */
.sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e94560;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.widget a {
    color: #333;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #e94560;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #ff6b6b, #e94560);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column h3 {
    color: #e94560;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e94560, transparent);
}

.footer-column p {
    line-height: 1.9;
    opacity: 0.85;
    color: #d1d1d1;
    font-size: 15px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #e94560;
    text-decoration: underline;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
}

.footer-menu li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-menu li:hover::before {
    transform: translateX(5px);
}

.footer-menu a {
    color: #d1d1d1;
    padding-left: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-menu a:hover {
    color: #e94560;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-seo {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 35px;
    margin-bottom: 35px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    padding: 30px;
}

.footer-seo p {
    text-align: center;
    opacity: 0.85;
    line-height: 1.9;
    font-size: 15px;
    color: #c9c9c9;
    max-width: 900px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    opacity: 0.75;
    font-size: 14px;
    color: #a8a8a8;
    margin: 0;
}

.footer-bottom p:hover {
    opacity: 1;
    color: #e94560;
    transition: all 0.3s ease;
}

/* Pagination */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.pagination a:hover {
    background: #e94560;
}

/* Category Cards */
.category-card,
.slot-category,
.news-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.category-card h3,
.slot-category h3,
.news-category h3 {
    color: #e94560;
    margin-bottom: 15px;
}

/* Promo Items */
.promo-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #e94560;
}

.promo-item h3 {
    color: #e94560;
    margin-bottom: 15px;
}

/* VIP Benefits */
.vip-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.benefit-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid #e94560;
}

.benefit-card h3 {
    color: #e94560;
    margin-bottom: 10px;
}

/* Slot Grid */
.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.slot-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.slot-item h4 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

/* News Cards */
.news-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.news-card h3 {
    margin-bottom: 10px;
}

.news-card h3 a {
    color: #1a1a2e;
}

.news-card h3 a:hover {
    color: #e94560;
}

.news-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Features */
.sports-features,
.casino-features,
.news-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-box,
.feature-news {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.feature-box h3,
.feature-news h3 {
    color: #e94560;
    margin-bottom: 10px;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

/* Tag Links */
.post-tags {
    margin: 30px 0;
}

.tag-links a {
    display: inline-block;
    background: #f8f9fa;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag-links a:hover {
    background: #e94560;
    color: #fff;
}

/* No Results */
.no-results,
.no-articles {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 18px;
    color: #666;
}

/* SEO Section */
.seo-section {
    background: #1a1a2e;
    color: #fff;
}

.seo-section h2 {
    color: #fff;
}

.seo-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .btn-login,
    .btn-register {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .site-main h2 {
        font-size: 28px;
    }
    
    .sports-grid,
    .casino-grid,
    .promo-grid,
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .site-footer {
        padding: 60px 0 25px;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column h3 {
        font-size: 20px;
    }
    
    .footer-seo {
        padding: 25px 20px;
    }
    
    .footer-seo p {
        font-size: 14px;
    }
    
    .hero-image-wrapper {
        margin: 20px 0;
    }
    
    .section-image {
        max-width: 100%;
        margin: 20px auto;
    }
    
    .archive-header h1,
    .blog-header h1 {
        font-size: 28px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .vip-benefits,
    .sports-features,
    .casino-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 26px;
    }
    
    .site-main section {
        padding: 40px 0;
    }
    
    .page-content,
    .single-post {
        padding: 20px;
    }
}
