/**
 * 123B Theme Styles
 */

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

html {
    font-size: 16px;
}

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

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

/* Site Wrapper */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content-area {
    flex: 1;
}

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

.top-bar-section .container-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.hamburger-icon {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    border-radius: 2px;
}

.main-navigation-block .navigation-list-items {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation-block .navigation-list-items a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: capitalize;
}

.main-navigation-block .navigation-list-items a:hover {
    color: #ffd700;
}

.auth-buttons-group {
    display: flex;
    gap: 15px;
}

.action-btn-primary,
.action-btn-secondary {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.action-btn-primary:hover {
    background: linear-gradient(135deg, #ffaa00 0%, #ffd700 100%);
    transform: translateY(-2px);
}

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

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

/* Mobile Navigation */
.mobile-navigation-panel {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #1a1a2e;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1001;
}

.mobile-navigation-panel.active {
    left: 0;
}

.mobile-nav-close {
    text-align: right;
    margin-bottom: 20px;
}

.close-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

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

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

.mobile-nav-container .mobile-menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-auth-section {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-action-btn,
.mobile-action-btn-highlight {
    padding: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

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

.mobile-action-btn-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
}

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

.hero-main-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
    text-transform: capitalize;
}

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

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

.hero-primary-action,
.hero-secondary-action {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.hero-primary-action {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
}

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

.hero-primary-action:hover,
.hero-secondary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Section Styles */
.brand-intro-section,
.games-showcase-section,
.promotions-highlight-section,
.steps-guide-section,
.features-highlight-section,
.benefits-section,
.registration-steps-section,
.guide-categories-section,
.game-guides-section,
.current-promotions-section,
.vip-program-section,
.contact-methods-section,
.support-topics-section {
    padding: 60px 0;
    background: #fff;
}

.section-title-heading {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
    text-transform: capitalize;
}

.section-intro-text,
.intro-paragraph {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
}

/* Grids */
.brand-features-grid,
.games-grid-layout,
.promotions-grid-layout,
.features-grid,
.benefits-grid,
.guide-categories-grid,
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Cards */
.feature-item-box,
.game-card-item,
.promotion-card-item,
.feature-card,
.benefit-card,
.guide-category-card,
.contact-method-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

/* Images */
.feature-image,
.game-image,
.promo-image,
.benefit-image,
.guide-image,
.contact-image,
.step-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.feature-image,
.game-image,
.benefit-image,
.guide-image,
.contact-image {
    max-height: 200px;
}

.promo-image {
    max-height: 180px;
}

.step-image {
    max-height: 150px;
}

.feature-item-box:hover,
.game-card-item:hover,
.promotion-card-item:hover,
.feature-card:hover,
.benefit-card:hover,
.guide-category-card:hover,
.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-item-title,
.game-card-title,
.promotion-card-title,
.feature-card-title,
.benefit-title,
.guide-category-title,
.contact-method-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a2e;
    text-transform: capitalize;
}

.feature-item-desc,
.game-card-desc,
.promotion-card-desc,
.feature-card-text,
.benefit-desc,
.guide-category-desc,
.contact-method-desc {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.call-to-action-section,
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.cta-content-wrapper,
.cta-box,
.cta-box-highlight,
.cta-promo-box,
.cta-contact-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-heading,
.cta-title {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.cta-description-text,
.cta-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-main-button,
.cta-button,
.cta-button-primary {
    display: inline-block;
    padding: 15px 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

/* FAQ Section */
.faq-section,
.guide-faq-section,
.contact-faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-list-container,
.faq-list,
.faq-contact-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-box,
.faq-item,
.faq-contact-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question-title,
.faq-question,
.faq-contact-question {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.faq-answer-text,
.faq-answer,
.faq-contact-answer {
    color: #666;
    line-height: 1.6;
}

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

.page-hero-title {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

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

/* Steps Timeline */
.steps-timeline,
.registration-flow {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step-item,
.reg-step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number,
.reg-step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title,
.reg-step-title {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.step-desc,
.reg-step-desc {
    color: #666;
    line-height: 1.6;
}

/* Tips Section */
.tips-section,
.playing-tips-section {
    padding: 60px 0;
    background: #fff;
}

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

.tip-item,
.tip-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.tip-title,
.tip-card-title {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.tip-text,
.tip-card-text {
    color: #666;
    line-height: 1.6;
}

/* Game Guides */
.game-guides-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.game-guide-item {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.game-guide-title {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.game-guide-text {
    color: #666;
    line-height: 1.8;
}

/* Promotions Cards */
.promotions-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.promo-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.promo-card.featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.promo-card-title {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.promo-card-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.promo-condition {
    color: #666;
}

.promo-status {
    color: #28a745;
    font-weight: 600;
}

/* VIP Levels */
.vip-levels-timeline {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.vip-level-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 200px;
}

.vip-level-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.vip-level-title {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.vip-level-benefit {
    color: #666;
    font-size: 0.95rem;
}

/* Terms Section */
.promotion-terms-section,
.requirements-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.terms-list,
.requirements-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.term-item,
.requirement-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.term-title,
.requirement-title {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.term-text,
.requirement-text {
    color: #666;
    line-height: 1.6;
}

/* Support Topics */
.support-topics-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.support-topic-item {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.support-topic-title {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.support-topic-desc {
    color: #666;
    line-height: 1.8;
}

/* Working Hours */
.working-hours-section {
    padding: 60px 0;
    background: #fff;
}

.hours-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hours-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.hours-title {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.hours-schedule {
    color: #666;
    line-height: 1.6;
}

/* Contact Availability */
.contact-availability {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 15px;
    background: #28a745;
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Footer */
.bottom-section {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section-title {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-brand-text,
.support-info-text {
    color: #ccc;
    line-height: 1.8;
}

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

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

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

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

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

.copyright-text {
    color: #999;
    font-size: 0.9rem;
}

.footer-seo-text {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-seo-text p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Page Content */
.page-content-section {
    padding: 60px 0;
    background: #fff;
}

.page-main-title {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
    text-transform: capitalize;
}

.page-body-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Default Index */
.default-index-section {
    padding: 100px 0;
    text-align: center;
    background: #fff;
}

.index-page-title {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.index-page-intro {
    color: #666;
    font-size: 1.1rem;
}

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

    .main-navigation-block {
        display: none;
    }

    .mobile-navigation-panel {
        display: block;
    }

    .auth-buttons-group {
        display: none;
    }

    .hero-main-title,
    .page-hero-title {
        font-size: 1.8rem;
    }

    .hero-description-text,
    .page-hero-desc {
        font-size: 1rem;
    }

    .section-title-heading,
    .cta-title-heading,
    .cta-title {
        font-size: 1.6rem;
    }

    .steps-timeline,
    .registration-flow,
    .vip-levels-timeline {
        flex-direction: column;
    }

    .step-item,
    .reg-step-item,
    .vip-level-item {
        min-width: 100%;
    }

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

    .hero-primary-action,
    .hero-secondary-action {
        width: 100%;
        max-width: 300px;
    }

    .brand-features-grid,
    .games-grid-layout,
    .promotions-grid-layout,
    .features-grid,
    .benefits-grid,
    .guide-categories-grid,
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .brand-intro-section,
    .games-showcase-section,
    .promotions-highlight-section {
        padding: 40px 0;
    }

    .feature-item-box,
    .game-card-item,
    .promotion-card-item,
    .feature-card,
    .benefit-card {
        padding: 20px;
    }
}
