/**
 * 123B Theme Styles
 */

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

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

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

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

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

.auth-section {
    display: flex;
    gap: 10px;
}

.btn-auth {
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation */
.primary-nav-wrapper {
    background-color: #16213e;
    padding: 15px 0;
    position: relative;
}

.primary-nav-wrapper .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.toggle-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

.primary-nav-list a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.primary-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e94560;
    transition: width 0.3s ease;
}

.primary-nav-list a:hover::after {
    width: 100%;
}

/* Main Content */
.site-main {
    min-height: 500px;
}

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

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

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #b8b8d1;
}

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

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

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

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

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

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

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

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

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

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

.page-hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #b8b8d1;
}

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

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

section:nth-child(odd) {
    background-color: #f8f9fa;
}

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

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

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

/* Brand Intro */
.brand-intro-section p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #e94560;
}

/* Steps */
.steps-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step-item {
    text-align: center;
    max-width: 300px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #e94560;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.cta-section p {
    color: #b8b8d1;
    max-width: 600px;
    margin: 0 auto 20px;
}

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

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

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

/* Forms */
.form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

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

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

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

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

.forgot-password {
    color: #e94560;
    font-size: 14px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #e94560;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #c73e54;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.form-footer a {
    color: #e94560;
    font-weight: 500;
}

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

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Tips List */
.tips-list {
    max-width: 800px;
    margin: 40px auto 0;
}

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

/* Timeline */
.benefits-timeline {
    margin-top: 40px;
}

.timeline-item {
    padding: 20px;
    margin-bottom: 30px;
    border-left: 3px solid #e94560;
    padding-left: 30px;
}

.timeline-number {
    display: inline-block;
    background-color: #e94560;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #1a1a2e;
    color: #fff;
    font-weight: 600;
}

.comparison-table td:first-child {
    font-weight: 500;
    text-align: left;
}

/* Promo Section */
.promo-highlight {
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: #fff;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
}

.promo-highlight h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.promo-highlight p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 25px;
}

.btn-promo {
    background-color: #fff;
    color: #e94560;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
}

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

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

.promo-tag {
    display: inline-block;
    background-color: #e94560;
    color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* VIP Program */
.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.vip-level {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.vip-level h3 {
    color: #e94560;
    margin-bottom: 15px;
}

/* Guide Steps */
.guide-steps {
    margin-top: 30px;
}

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

/* Method List */
.method-list {
    margin-top: 30px;
}

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

/* Betting Types */
.betting-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.betting-type {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.guide-list {
    margin-top: 20px;
    padding-left: 20px;
}

.guide-list li {
    margin-bottom: 10px;
    color: #555;
}

/* Withdrawal Steps */
.withdrawal-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.contact-card h3 {
    margin-bottom: 15px;
}

.contact-availability {
    display: inline-block;
    background-color: #e94560;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 15px;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Feature Box */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Issues List */
.issues-list {
    max-width: 800px;
    margin: 40px auto 0;
}

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

.issue-item h3 {
    color: #e94560;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Footer */
.site-footer-wrapper {
    background-color: #1a1a2e;
    color: #b8b8d1;
    padding: 60px 0 30px;
}

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

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

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

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

.footer-nav-list a {
    color: #b8b8d1;
    transition: color 0.3s ease;
}

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

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

.footer-copyright p {
    color: #b8b8d1;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-seo-text {
    color: #888;
    font-size: 13px;
    margin-top: 10px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #e94560;
    color: #fff;
    border-radius: 50%;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.tip-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Image Styles */
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-image,
.service-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image img,
.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-image img,
.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Promo Image Layout */
.promo-highlight {
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: #fff;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.promo-content {
    text-align: left;
}

.promo-highlight h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.promo-highlight p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 100%;
    margin: 0 0 25px;
}

.promo-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.promo-card-image {
    margin: -30px -30px 20px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.promo-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

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

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

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

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

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cta {
        padding: 12px 25px;
        font-size: 14px;
    }

    .page-hero-section h1 {
        font-size: 28px;
    }

    section h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .betting-types {
        grid-template-columns: 1fr;
    }

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

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

    .form-wrapper {
        padding: 25px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 14px;
    }

    .promo-highlight {
        padding: 30px 20px;
        grid-template-columns: 1fr;
    }

    .promo-highlight h2 {
        font-size: 28px;
    }

    .section-with-image {
        grid-template-columns: 1fr;
    }

    .image-content {
        order: -1;
    }

    .feature-image img,
    .service-image img {
        height: 150px;
    }

    .promo-card-image img {
        height: 140px;
    }
}
