/*
 * Dabet Theme Styles
 * Main Stylesheet
 */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.primary-nav .nav-list {
    display: flex;
    gap: 30px;
}

.primary-nav .nav-list a {
    color: #fff;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.primary-nav .nav-list a:hover {
    background: rgba(255,255,255,0.1);
    color: #ffd700;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-login, .btn-register {
    padding: 10px 20px;
    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: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border: 2px solid #ffd700;
}

.btn-register:hover {
    background: transparent;
    color: #ffd700;
}

.mobile-nav {
    display: none;
    background: #16213e;
    padding: 20px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-list a {
    color: #fff;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Main Content */
.site-main {
    min-height: calc(100vh - 200px);
}

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

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

.btn-primary, .btn-secondary, .btn-cta, .btn-submit, .btn-highlight {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary, .btn-cta {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
}

.btn-primary:hover, .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,215,0,0.3);
}

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

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

/* Section Styles */
section {
    padding: 60px 20px;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a2e;
    text-transform: capitalize;
}

section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0f3460;
    text-transform: capitalize;
}

/* Brand Intro */
.brand-intro {
    background: #fff;
}

.brand-intro p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Games Section */
.games-section {
    background: #fff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: scale(1.02);
}

.game-card h3 {
    color: #ffd700;
}

.game-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    background: #f8f9fa;
}

.reasons-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.reason-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: #fff;
    text-align: center;
}

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

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.faq-item h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

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

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Login Section */
.login-section {
    background: #f8f9fa;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.login-form-container, .register-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.login-form-container h2, .register-form-container h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #0f3460;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.forgot-password {
    color: #0f3460;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    font-size: 1.1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.login-links, .register-links {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.login-links a, .register-links a {
    color: #0f3460;
    font-weight: 600;
}

.login-info, .register-benefits {
    padding: 20px;
}

.login-info h2, .register-benefits h2 {
    text-align: left;
    margin-bottom: 30px;
}

.benefits-list, .benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item, .benefit-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.benefit-item p, .benefit-box p {
    color: #666;
    line-height: 1.7;
}

/* Register Section */
.register-section {
    background: #f8f9fa;
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.form-agree {
    margin-bottom: 25px;
}

.form-agree a {
    color: #0f3460;
    font-weight: 600;
}

/* Guide Sections */
.guide-intro, .promo-intro, .contact-intro {
    background: #fff;
}

.guide-intro p, .promo-intro p, .contact-intro p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.steps-container, .process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-box, .timeline-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.step-box h3, .timeline-item h3 {
    color: #1a1a2e;
}

.step-box p, .timeline-item p {
    color: #666;
    line-height: 1.7;
}

/* Promo Section */
.promo-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 60px 20px;
}

.promo-highlight h2 {
    color: #1a1a2e;
}

.highlight-banner {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a2e;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.highlight-content h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.highlight-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-highlight {
    background: #ffd700;
    color: #1a1a2e;
}

.promo-list {
    background: #f8f9fa;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.promo-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 15px 0;
}

.promo-tag {
    display: inline-block;
    background: #0f3460;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 15px;
}

.promo-details, .promo-terms, .promo-calendar {
    background: #fff;
}

.details-content, .terms-list, .calendar-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-block, .term-item, .event-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.detail-block ul, .term-item ul {
    margin-top: 15px;
    padding-left: 20px;
}

.detail-block li, .term-item li {
    list-style: disc;
    margin-bottom: 8px;
    color: #666;
}

/* Contact Section */
.contact-channels {
    background: #f8f9fa;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.channel-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-5px);
}

.channel-card p {
    color: #666;
    margin-bottom: 15px;
}

.availability {
    display: inline-block;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.contact-form-section {
    background: #fff;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.support-channels, .contact-locations {
    background: #f8f9fa;
}

.support-channels .container > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3, .footer-nav h3, .footer-contact h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-brand p, .footer-contact p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav-list a:hover {
    opacity: 1;
    color: #ffd700;
}

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

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.seo-text {
    font-size: 0.9rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .primary-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .login-wrapper, .register-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .highlight-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary, .btn-cta {
        width: 100%;
        max-width: 280px;
    }
    
    section {
        padding: 40px 20px;
    }
    
    .login-form-container, .register-form-container, .contact-form {
        padding: 25px;
    }
}

/* Image Styles */
.intro-image,
.features-image,
.games-image,
.why-image,
.cta-image,
.faq-image,
.showcase-images,
.hero-image,
.highlight-image,
.details-image,
.guide-image,
.contact-image {
    margin: 30px 0;
    text-align: center;
}

.intro-image img,
.features-image img,
.games-image img,
.why-image img,
.cta-image img,
.faq-image img,
.hero-image img,
.highlight-image img,
.details-image img,
.guide-image img,
.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}

.showcase-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.showcase-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
