/*
 * Theme 12BET Styles
 */

/* 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;
}

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

/* Header & Navigation */
.topbar-wrap {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 10px 0;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
}

.topbar-actions {
    display: flex;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.btn-login:hover {
    background: #e94560;
}

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

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

.main-nav {
    background: #0f0f23;
    padding: 15px 0;
    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: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.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;
}

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

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.nav-list a:hover {
    color: #e94560;
}

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

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

.hero-desc {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.8;
}

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

.btn-primary,
.btn-secondary,
.btn-cta {
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

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

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

.btn-cta {
    background: #e94560;
    color: #fff;
    margin-top: 20px;
}

.btn-cta:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
}

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

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

/* Sections */
section {
    padding: 60px 0;
}

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

section h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

section h3 {
    font-size: 1.3rem;
    color: #16213e;
    margin-bottom: 15px;
    font-weight: 600;
}

section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

/* Features Grid */
.features-grid,
.values-grid,
.sports-grid,
.games-grid,
.types-grid,
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.feature-card:hover,
.value-card:hover,
.sport-card:hover,
.game-card:hover,
.type-card:hover,
.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Services */
.services-list,
.betting-list,
.services-list,
.dealer-features,
.dream-categories,
.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item,
.betting-item,
.service-detail,
.dealer-item,
.dream-item,
.tip-item,
.tip-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e94560;
}

/* Timeline */
.steps-timeline,
.timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.step-item,
.milestone-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.step-number,
.year {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #e94560;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.year {
    width: auto;
    padding: 0 20px;
    border-radius: 25px;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

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

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

.cta-section p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 20px;
}

/* Footer */
.site-footer {
    background: #0f0f23;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-container h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-container p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-menu {
    list-style: none;
}

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

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #e94560;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-seo {
    font-size: 12px !important;
    max-width: 900px;
    margin: 10px auto 0 !important;
}

/* Image Styles */
.intro-content,
.licenses-content,
.tips-content,
.results-content,
.channels-wrapper,
.steps-wrapper,
.faq-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-text,
.licenses-text,
.tips-text,
.results-text {
    flex: 1;
}

.intro-image,
.licenses-image,
.tips-image,
.channels-image,
.steps-image,
.faq-image {
    flex: 0 0 400px;
}

.intro-image img,
.licenses-image img,
.tips-image img,
.channels-image img,
.steps-image img,
.faq-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.services-image {
    margin-top: 40px;
    text-align: center;
}

.services-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.game-card img {
    width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
}

.results-images {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f0f23;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-list.active {
        display: flex;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .features-grid,
    .values-grid,
    .sports-grid,
    .games-grid,
    .types-grid,
    .channels-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline,
    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .step-item,
    .milestone-item {
        max-width: 100%;
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cta {
        width: 100%;
        max-width: 300px;
    }

    .topbar-actions {
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-content,
    .licenses-content,
    .tips-content,
    .results-content,
    .channels-wrapper,
    .steps-wrapper,
    .faq-wrapper {
        flex-direction: column;
    }

    .intro-image,
    .licenses-image,
    .tips-image,
    .channels-image,
    .steps-image,
    .faq-image,
    .results-images {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    section {
        padding: 40px 0;
    }

    .feature-card,
    .value-card,
    .sport-card,
    .game-card,
    .type-card,
    .channel-card {
        padding: 20px;
    }
}
