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

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

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

.bet12-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Topbar */
.bet12-topbar {
    background-color: #1a1a2e;
    padding: 8px 0;
}

.bet12-topbar .bet12-container {
    display: flex;
    justify-content: flex-end;
}

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

/* Header */
.bet12-masthead {
    background-color: #16213e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bet12-masthead .bet12-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.bet12-primary-nav {
    flex: 1;
}

.bet12-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

.bet12-nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

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

/* Buttons */
.bet12-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

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

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

.bet12-btn-register:hover,
.bet12-btn-primary:hover {
    background-color: #c73e54;
}

.bet12-btn-secondary {
    background-color: #0f3460;
    color: #fff;
}

.bet12-btn-secondary:hover {
    background-color: #1a4a7a;
}

.bet12-btn-cta {
    background-color: #e94560;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

/* Mobile Menu */
.bet12-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 33, 62, 0.98);
    z-index: 99;
    padding: 80px 20px 20px;
}

.bet12-mobile-menu.active {
    display: block;
}

.bet12-mobile-nav-list {
    list-style: none;
    text-align: center;
}

.bet12-mobile-nav-list li {
    margin: 20px 0;
}

.bet12-mobile-nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 15px;
}

.bet12-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    text-align: center;
}

.bet12-mobile-actions .bet12-btn {
    display: block;
}

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

.bet12-hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

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

.bet12-page-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.bet12-page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.bet12-section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a2e;
}

/* Intro Section */
.bet12-intro,
.bet12-login-intro,
.bet12-register-intro,
.bet12-promo-intro,
.bet12-guide-intro,
.bet12-contact-intro {
    background-color: #fff;
}

.bet12-intro-content,
.bet12-intro-text,
.bet12-tips-content,
.bet12-security-content,
.bet12-requirements-content,
.bet12-services-content,
.bet12-calendar-content,
.bet12-why-content {
    max-width: 900px;
    margin: 0 auto;
}

.bet12-intro-content p,
.bet12-intro-text p,
.bet12-tips-content p,
.bet12-security-content p,
.bet12-requirements-content p,
.bet12-services-content p,
.bet12-calendar-content p,
.bet12-why-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

/* Image Wrappers */
.bet12-intro-wrapper,
.bet12-why-wrapper,
.bet12-faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bet12-intro-image,
.bet12-why-image,
.bet12-faq-image,
.bet12-features-image,
.bet12-game-image,
.bet12-promo-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.bet12-intro-image img,
.bet12-why-image img,
.bet12-faq-image img,
.bet12-features-image img,
.bet12-game-image img,
.bet12-promo-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bet12-features-image {
    max-width: 800px;
    margin: 0 auto 40px;
}

.bet12-game-image {
    margin-bottom: 15px;
}

.bet12-promo-banner {
    background-color: #fff;
    padding: 40px 0;
}

.bet12-promo-image {
    max-width: 900px;
    margin: 0 auto;
}

/* Features Grid */
.bet12-features-grid,
.bet12-games-grid,
.bet12-channels-grid,
.bet12-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.bet12-feature-card:hover,
.bet12-game-card:hover,
.bet12-channel-card:hover,
.bet12-guide-card:hover {
    transform: translateY(-5px);
}

.bet12-feature-card h3,
.bet12-game-card h3,
.bet12-channel-card h3,
.bet12-guide-card h3 {
    color: #e94560;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.bet12-game-card p,
.bet12-feature-card p,
.bet12-channel-card p {
    color: #666;
    line-height: 1.8;
}

.bet12-guide-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.bet12-guide-card li {
    margin-bottom: 8px;
    color: #555;
}

/* Steps Section */
.bet12-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.bet12-step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.bet12-step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #e94560;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.bet12-step-card h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

/* Timeline */
.bet12-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.bet12-timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.bet12-timeline-marker {
    width: 40px;
    height: 40px;
    background-color: #e94560;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 20px;
}

.bet12-timeline-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.bet12-timeline-content h3 {
    color: #e94560;
    margin-bottom: 10px;
}

/* Bonus Cards */
.bet12-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bet12-bonus-card {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.bet12-bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bet12-bonus-value {
    font-size: 3rem;
    font-weight: bold;
    color: #e94560;
    margin: 20px 0;
}

/* Promo Cards */
.bet12-promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.bet12-promo-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.bet12-promo-highlight {
    border: 2px solid #e94560;
}

.bet12-promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #e94560;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.bet12-promo-card h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.bet12-promo-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e94560;
    margin: 15px 0;
}

.bet12-promo-terms {
    margin-top: 20px;
    padding-left: 20px;
    color: #666;
}

.bet12-promo-terms li {
    margin-bottom: 5px;
}

/* Features List */
.bet12-features-list,
.bet12-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bet12-feature-item,
.bet12-tip-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.bet12-feature-item h3,
.bet12-tip-card h3 {
    color: #e94560;
    margin-bottom: 10px;
}

/* FAQ Section */
.bet12-faq {
    background-color: #f9f9f9;
}

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

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

.bet12-faq-item h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

/* CTA Section */
.bet12-cta {
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.bet12-cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.bet12-cta-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.bet12-site-footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: auto;
}

.bet12-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.bet12-footer-content h3 {
    color: #e94560;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.bet12-footer-content p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

.bet12-footer-menu a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.bet12-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.bet12-copyright {
    color: #fff;
    margin-bottom: 15px;
}

.bet12-seo-text {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .bet12-menu-toggle {
        display: flex;
    }
    
    .bet12-primary-nav,
    .bet12-header-actions {
        display: none;
    }
    
    .bet12-topbar {
        display: none;
    }
    
    .bet12-hero {
        padding: 60px 0;
    }
    
    .bet12-hero-title {
        font-size: 1.8rem;
    }
    
    .bet12-hero-desc {
        font-size: 1rem;
    }
    
    .bet12-page-title {
        font-size: 1.6rem;
    }
    
    .bet12-section-title {
        font-size: 1.5rem;
    }
    
    .bet12-promo-cards,
    .bet12-features-grid,
    .bet12-games-grid {
        grid-template-columns: 1fr;
    }
    
    .bet12-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .bet12-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .bet12-timeline-item {
        flex-direction: column;
    }
    
    .bet12-timeline-marker {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .bet12-intro-wrapper,
    .bet12-why-wrapper,
    .bet12-faq-wrapper {
        grid-template-columns: 1fr;
    }
    
    .bet12-intro-image,
    .bet12-why-image,
    .bet12-faq-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .bet12-container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .bet12-hero-title {
        font-size: 1.5rem;
    }
    
    .bet12-page-hero {
        padding: 50px 0;
    }
}
