/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #d4ff00;
    --secondary-color: #0a0a0a;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --border-color: #2a2a2a;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-light);
    overflow-x: hidden;
}

section {
    padding: 80px 0;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 300;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-fairplay {
    color: var(--text-light);
}

.brand-global {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 400;
    padding: 8px 15px !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-signup:hover {
    background-color: #bfe600;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.hero-buttons .btn-primary:hover {
    background-color: #bfe600;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.3);
}

.hero-buttons .btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.hero-buttons .btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--secondary-color);
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Why Section */
.why-section {
    background-color: var(--dark-bg);
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 35px;
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 255, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 255, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Trending Games Section */
.trending-section {
    background-color: var(--secondary-color);
}

.game-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.game-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.game-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 255, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.game-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.game-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.btn-game {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-game:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Sports Section */
.sports-section {
    background-color: var(--dark-bg);
}

.sport-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 35px;
    transition: all 0.3s;
    height: 100%;
}

.sport-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.sport-card.highlight-card {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.05) 0%, var(--card-bg) 100%);
}

.sport-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 255, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sport-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.sport-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.sport-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-sport {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-sport:hover {
    background-color: #bfe600;
    transform: translateY(-2px);
}

/* Casino Section */
.casino-section {
    background-color: var(--secondary-color);
}

.casino-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 35px;
    transition: all 0.3s;
    height: 100%;
}

.casino-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.casino-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.casino-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-casino {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-casino:hover {
    background-color: #bfe600;
    transform: translateY(-2px);
}

/* Bonuses Section */
.bonuses-section {
    background-color: var(--dark-bg);
}

.bonus-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.bonus-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.bonus-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 255, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.bonus-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.bonus-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.bonus-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--secondary-color);
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 35px;
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stars i {
    color: var(--primary-color);
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.author-location {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--dark-bg);
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--card-bg);
    color: var(--text-light);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--card-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: var(--card-bg);
    color: var(--text-gray);
    padding: 20px 25px;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
    padding: 100px 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 18px 45px;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background-color: #bfe600;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 255, 0, 0.3);
}

.cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    color: var(--text-light);
    font-weight: 500;
}

.cta-feature i {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-license {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    section {
        padding: 60px 0;
    }
}



/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #d4ff00;
    --secondary-color: #0a0a0a;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --border-color: #2a2a2a;
    --success-color: #00ff88;
    --error-color: #ff4444;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.08) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-fairplay {
    color: var(--text-light);
}

.brand-global {
    color: var(--primary-color);
}

.btn-outline-light {
    border: 1px solid var(--border-color);
    color: var(--text-light);
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Login Section */
.login-section {
    min-height: 100vh;
    padding: 100px 0 50px;
}

.login-container {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

/* Left Side - Branding */
.login-left {
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.login-branding {
    position: relative;
    z-index: 2;
}

.brand-logo {
    margin-bottom: 40px;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.welcome-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.stats-mini {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-mini {
    text-align: center;
}

.stat-mini h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-mini p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Right Side - Login Form */
.login-right {
    padding: 60px 50px;
    background-color: var(--card-bg);
}

.login-form-container {
    max-width: 450px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Form Styles */
.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary-color);
}

.form-control {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    background-color: var(--dark-bg);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 255, 0, 0.15);
}

.form-control::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

/* Password Toggle */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--primary-color);
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.form-check-input {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 255, 0, 0.15);
}

.form-check-label {
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #bfe600;
    text-decoration: underline;
}

/* Login Button */
.btn-login {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-login:hover {
    background-color: #bfe600;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.3);
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.divider span {
    position: relative;
    background-color: var(--card-bg);
    padding: 0 15px;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-social {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.btn-google {
    background-color: transparent;
    color: var(--text-light);
}

.btn-google:hover {
    background-color: #ea4335;
    border-color: #ea4335;
    color: var(--text-light);
}

.btn-facebook {
    background-color: transparent;
    color: var(--text-light);
}

.btn-facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: var(--text-light);
}

/* Sign Up Link */
.signup-link {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.signup-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.signup-link a:hover {
    color: #bfe600;
    text-decoration: underline;
}

/* Security Badge */
.security-badge {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.85rem;
}

.security-badge i {
    color: var(--primary-color);
}

/* Invalid Feedback */
.invalid-feedback {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-control.is-invalid {
    border-color: var(--error-color);
}

.form-control.is-valid {
    border-color: var(--success-color);
}

/* Toast Notification */
.toast {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.toast-header {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.btn-close {
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .login-left {
        padding: 40px 30px;
    }

    .login-right {
        padding: 40px 30px;
    }

    .brand-title {
        font-size: 2rem;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .stats-mini {
        gap: 20px;
    }

    .stat-mini h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .login-section {
        padding: 80px 0 30px;
    }

    .login-left {
        display: none;
    }

    .login-right {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stats-mini {
        flex-direction: column;
        gap: 15px;
    }
}

/* Loading Animation */
.btn-login.loading {
    position: relative;
    color: transparent;
}

.btn-login.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #d4ff00;
    --secondary-color: #0a0a0a;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --border-color: #2a2a2a;
    --success-color: #00ff88;
    --error-color: #ff4444;
    --warning-color: #ffa500;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.06) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-fairplay {
    color: var(--text-light);
}

.brand-global {
    color: var(--primary-color);
}

.btn-outline-light {
    border: 1px solid var(--border-color);
    color: var(--text-light);
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Signup Section */
.signup-section {
    min-height: 100vh;
    padding: 100px 0 50px;
}

.signup-container {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

/* Left Side - Branding */
.signup-left {
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.12) 0%, rgba(10, 10, 10, 0.5) 100%);
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.signup-left::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.15) 0%, transparent 60%);
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.signup-branding {
    position: relative;
    z-index: 2;
}

.brand-logo {
    margin-bottom: 30px;
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0;
}

.welcome-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.welcome-text {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(212, 255, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.benefit-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.badge-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Right Side - Signup Form */
.signup-right {
    padding: 50px 40px;
    background-color: var(--card-bg);
}

.signup-form-container {
    max-width: 550px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 35px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--dark-bg);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.step.active .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.step.completed .step-number {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: var(--secondary-color);
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary-color);
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 10px;
    position: relative;
    top: -15px;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
.signup-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 0.9rem;
}

.form-label i {
    color: var(--primary-color);
}

.form-control {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    background-color: var(--dark-bg);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 255, 0, 0.15);
}

.form-control::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

.input-group-text {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.form-text {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

/* Password Toggle */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--primary-color);
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-bar::before {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    transition: all 0.3s;
}

.password-strength.weak .strength-bar::before {
    width: 33%;
    background-color: var(--error-color);
}

.password-strength.medium .strength-bar::before {
    width: 66%;
    background-color: var(--warning-color);
}

.password-strength.strong .strength-bar::before {
    width: 100%;
    background-color: var(--success-color);
}

.strength-text {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.password-strength.weak .strength-text {
    color: var(--error-color);
}

.password-strength.medium .strength-text {
    color: var(--warning-color);
}

.password-strength.strong .strength-text {
    color: var(--success-color);
}

/* Checkboxes */
.custom-checkbox {
    padding-left: 0;
}

.form-check-input {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 255, 0, 0.15);
}

.form-check-label {
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.6;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Verification Info */
.verification-info {
    margin-bottom: 30px;
}

.info-card {
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.1) 0%, rgba(10, 10, 10, 0.3) 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.info-card p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Buttons */
.btn-next,
.btn-signup {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-next:hover,
.btn-signup:hover {
    background-color: #bfe600;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.3);
}

.btn-back {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-back:hover {
    background-color: var(--dark-bg);
    border-color: var(--primary-color);
}

.step-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.step-buttons .btn-back,
.step-buttons .btn-next {
    flex: 1;
    margin-top: 0;
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.divider span {
    position: relative;
    background-color: var(--card-bg);
    padding: 0 15px;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Social Signup */
.social-signup {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-social {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.btn-google {
    background-color: transparent;
    color: var(--text-light);
}

.btn-google:hover {
    background-color: #ea4335;
    border-color: #ea4335;
    color: var(--text-light);
}

.btn-facebook {
    background-color: transparent;
    color: var(--text-light);
}

.btn-facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: var(--text-light);
}

/* Login Link */
.login-link {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.login-link a:hover {
    color: #bfe600;
    text-decoration: underline;
}

/* Invalid Feedback */
.invalid-feedback {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 5px;
}

.form-control.is-invalid {
    border-color: var(--error-color);
}

.form-control.is-valid {
    border-color: var(--success-color);
}

.form-check-input.is-invalid {
    border-color: var(--error-color);
}

/* Toast Notification */
.toast {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.toast-header {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.btn-close {
    filter: invert(1);
}

/* Loading Animation */
.btn-next.loading,
.btn-signup.loading {
    position: relative;
    color: transparent;
}

.btn-next.loading::after,
.btn-signup.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .signup-left {
        padding: 40px 30px;
    }

    .signup-right {
        padding: 40px 30px;
    }

    .brand-title {
        font-size: 2rem;
    }

    .welcome-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .signup-section {
        padding: 80px 0 30px;
    }

    .signup-left {
        display: none;
    }

    .signup-right {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .progress-steps {
        margin-bottom: 30px;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
    }

    .step-line {
        margin: 0 5px;
    }
}



/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #d4ff00;
    --secondary-color: #0a0a0a;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --border-color: #2a2a2a;
    --success-color: #00ff88;
    --vip-gold: #ffd700;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-fairplay {
    color: var(--text-light);
}

.brand-global {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 400;
    padding: 8px 15px !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-signup:hover {
    background-color: #bfe600;
    transform: translateY(-2px);
}

/* Bonus Section */
.bonus-section {
    min-height: 100vh;
    padding: 100px 0 50px;
}

.bonus-container {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

/* Left Side - Info */
.bonus-left {
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.12) 0%, rgba(10, 10, 10, 0.5) 100%);
    padding: 50px 40px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.bonus-left::-webkit-scrollbar {
    width: 6px;
}

.bonus-left::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

.bonus-left::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.bonus-left::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.1) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.bonus-info {
    position: relative;
    z-index: 2;
}

/* Info Header */
.info-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #bfe600 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.header-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.info-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-light);
}

.info-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Section Title */
.section-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* How to Use */
.how-to-use {
    margin-bottom: 40px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #bfe600 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-card {
    background: rgba(212, 255, 0, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* Important Notes */
.important-notes {
    background: rgba(212, 255, 0, 0.08);
    border: 1px solid rgba(212, 255, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.note-header i {
    font-size: 1.2rem;
}

.note-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-list li {
    color: var(--text-gray);
    font-size: 0.85rem;
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
}

.note-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 8px;
}

/* Right Side - Bonus Codes */
.bonus-right {
    padding: 50px 40px;
    background-color: var(--card-bg);
    max-height: 90vh;
    overflow-y: auto;
}

.bonus-right::-webkit-scrollbar {
    width: 8px;
}

.bonus-right::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

.bonus-right::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.bonus-codes-container {
    max-width: 700px;
}

.codes-header {
    margin-bottom: 35px;
}

.codes-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.codes-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Bonus Code Cards */
.bonus-codes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-code-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(15, 15, 15, 1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bonus-code-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #bfe600 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.bonus-code-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 255, 0, 0.15);
}

.bonus-code-card:hover::before {
    opacity: 1;
}

.bonus-code-card.featured {
    border: 2px solid var(--primary-color);
}

.bonus-code-card.featured::before {
    opacity: 1;
}

.bonus-code-card.vip-card {
    border: 2px solid var(--vip-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(15, 15, 15, 1) 100%);
}

.bonus-code-card.vip-card::before {
    background: linear-gradient(90deg, var(--vip-gold) 0%, #ffed4e 100%);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #bfe600 100%);
    color: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.card-badge.vip-badge {
    background: linear-gradient(135deg, var(--vip-gold) 0%, #ffed4e 100%);
}

/* Card Header */
.card-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.bonus-icon {
    width: 55px;
    height: 55px;
    background: rgba(212, 255, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bonus-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.vip-card .bonus-icon {
    background: rgba(255, 215, 0, 0.15);
}

.vip-card .bonus-icon i {
    color: var(--vip-gold);
}

.bonus-details {
    flex: 1;
}

.bonus-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.bonus-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Bonus Value */
.bonus-value {
    background: rgba(212, 255, 0, 0.08);
    border: 1px solid rgba(212, 255, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vip-card .bonus-value {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.2);
}

.value-label {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.value-amount {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 800;
}

.vip-card .value-amount {
    color: var(--vip-gold);
}

/* Code Section */
.code-section {
    margin-bottom: 20px;
}

.code-display {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.code-label {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.code-box {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: var(--dark-bg);
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
}

.code-text {
    flex: 1;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.vip-card .code-text {
    color: var(--vip-gold);
}

.btn-copy {
    background: linear-gradient(135deg, var(--primary-color) 0%, #bfe600 100%);
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.vip-card .btn-copy {
    background: linear-gradient(135deg, var(--vip-gold) 0%, #ffed4e 100%);
}

.btn-copy:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 255, 0, 0.4);
}

.btn-copy.copied {
    background: linear-gradient(135deg, var(--success-color) 0%, #00cc6a 100%);
}

.btn-copy.copied i {
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.validity {
    color: var(--text-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.btn-claim {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-claim:hover {
    background-color: #bfe600;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 255, 0, 0.3);
}

.vip-card .btn-claim {
    background-color: var(--vip-gold);
}

/* Toast Notification */
.toast {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.toast-header {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.btn-close {
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .bonus-left,
    .bonus-right {
        padding: 40px 30px;
        max-height: none;
    }

    .info-title {
        font-size: 1.8rem;
    }

    .codes-title {
        font-size: 1.75rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .bonus-section {
        padding: 80px 0 30px;
    }

    .bonus-left,
    .bonus-right {
        padding: 30px 20px;
    }

    .info-title {
        font-size: 1.6rem;
    }

    .codes-title {
        font-size: 1.5rem;
    }

    .header-icon {
        width: 70px;
        height: 70px;
    }

    .header-icon i {
        font-size: 2rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .bonus-code-card {
        padding: 20px;
    }

    .bonus-name {
        font-size: 1.1rem;
    }

    .code-text {
        font-size: 1.1rem;
    }

    .code-box {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-copy {
        width: 100%;
        justify-content: center;
    }

    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .btn-claim {
        width: 100%;
        text-align: center;
    }
}