/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

:root {
    --primary-gold: #ffc107;
    --secondary-gold: #ffb300;
    --primary-dark: #1a1d29;
    --secondary-dark: #252836;
    --card-bg: #2d3142;
    --accent-grey: #4a5568;
    --accent-light-grey: #6b7280;
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --success-green: #00c74d;
    --danger-red: #ff4757;
    --border-color: #2d3142;
    --hover-gold: #ffb300;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: linear-gradient(180deg, #1a1d29 0%, #252836 50%, #1a1d29 100%);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 179, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

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

/* Header Styles */
.header {
    background: rgba(26, 29, 41, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.3));
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-gold);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-dark) 100%);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lang-btn:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, var(--card-bg) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: linear-gradient(135deg, rgba(45, 49, 66, 0.98) 0%, rgba(37, 40, 54, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 220px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    max-height: 450px;
    overflow-y: auto;
    z-index: 1001;
    padding: 10px;
}

.lang-dropdown.active {
    display: flex;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    padding: 14px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 5px;
    font-weight: 600;
}

.lang-option:last-child {
    margin-bottom: 0;
}

.lang-option:hover {
    background: rgba(255, 193, 7, 0.15);
    color: var(--primary-gold);
    transform: translateX(5px);
}

.lang-option.active {
    color: var(--primary-gold);
    background: rgba(255, 193, 7, 0.12);
    border-left: 3px solid var(--primary-gold);
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

/* Hero Section */
.hero-section {
    padding: 70px 0 60px;
    background: radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 179, 0, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 32px;
    color: transparent;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 90%;
}

.promo-code-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, var(--card-bg) 100%);
    border: 2px solid var(--primary-gold);
    position: relative;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.25);
}

.promo-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.promo-code {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    cursor: pointer;
    user-select: all;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.promo-code:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.6));
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-dark);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

.cta-btn-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4);
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-top: -40px;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-image-link {
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.5s ease;
}

.hero-image-link::after {
    content: '🎁 Click to Claim Bonus';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5);
    pointer-events: none;
}

.hero-image-link:hover::after {
    opacity: 1;
    bottom: -60px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.hero-image-link:hover .hero-img {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.4);
    border-color: var(--primary-gold);
}

/* Main Content */
.main-content {
    padding: 60px 0;
    padding-bottom: 120px;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
    clear: both;
    padding-right: 20px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
}

.content-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.content-section h4 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.content-section p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content-section p:first-of-type {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
}

.content-section strong {
    color: var(--primary-gold);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.step-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-dark) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 179, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(255, 193, 7, 0.3);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--primary-dark);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Important Note Box */
.important-note {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12) 0%, var(--card-bg) 100%);
    border-left: 4px solid var(--primary-gold);
    padding: 25px 30px;
    margin: 35px 0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.important-note::before {
    content: '⚠️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    opacity: 0.2;
}

.important-note h4 {
    color: var(--primary-gold);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.important-note p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.game-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-dark) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(255, 193, 7, 0.35);
}

.game-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(255, 193, 7, 0.3));
    transition: all 0.3s ease;
}

.game-card:hover .game-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(255, 193, 7, 0.6));
}

.game-card h3 {
    font-size: 19px;
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.game-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    margin-top: 80px;
}

.faq-item {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-dark) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 35px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.5s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.25);
}

.faq-item h3 {
    font-size: 22px;
    background: linear-gradient(135deg, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0;
    margin-bottom: 18px;
    font-weight: 700;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(45, 49, 66, 0.8) 100%);
    border: 2px solid var(--primary-gold);
    position: relative;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.1), transparent);
    opacity: 0.5;
}

.final-cta h3 {
    font-size: 36px;
    background: linear-gradient(135deg, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 35px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 15px;
    margin-top: 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), var(--accent-cyan), var(--accent-purple), transparent);
}

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

.footer-column h4 {
    background: linear-gradient(135deg, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 15px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    display: inline-block;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-promo {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-promo strong {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 19px;
    font-weight: 800;
}

.footer-bonus {
    color: var(--success-green);
    font-weight: 700;
    font-size: 16px;
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 6px;
}

.disclaimer {
    font-size: 11px;
    color: #888;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Sticky Popup */
.sticky-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 20, 30, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 193, 7, 0.4);
    padding: 14px 18px;
    z-index: 9999;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.6), 0 -1px 0 rgba(255, 193, 7, 0.15);
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.popup-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.popup-promo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.popup-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.popup-code {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-gold);
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    cursor: pointer;
    padding: 8px 18px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
    user-select: all;
    border: 1px solid var(--primary-gold);
}

.popup-code:hover {
    background: rgba(255, 193, 7, 0.25);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.4);
}

.popup-bonus-text {
    font-size: 16px;
    color: var(--success-green);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.popup-cta-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-dark);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
}

.popup-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
    
    .header,
    .sticky-popup,
    .lang-btn,
    .lang-dropdown {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .header {
        padding: 12px 0;
        background: rgba(26, 29, 41, 0.98) !important;
    }
    
    .sticky-popup {
        background: rgba(26, 29, 41, 0.98) !important;
    }
    
    .hero-section::before,
    body::before {
        display: none !important;
    }
    
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .main-nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .main-nav ul {
        flex-direction: row;
        gap: 12px;
        font-size: 13px;
    }
    
    .main-nav a {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .header-actions {
        flex-shrink: 0;
    }
    
    .language-switcher {
        display: block !important;
    }
    
    .lang-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }
    
    .lang-dropdown {
        position: fixed;
        top: 70px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: 280px;
        max-width: 90vw;
        width: 280px;
        z-index: 9999;
    }
    
    .lang-dropdown.active {
        animation: dropdownSlideMobile 0.3s ease;
    }
    
    @keyframes dropdownSlideMobile {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }
    
    .hero-section {
        padding: 60px 0 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 36px;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .promo-code-box {
        padding: 20px 18px;
    }
    
    .promo-code {
        font-size: 28px;
    }
    
    .copy-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .game-card {
        padding: 28px 15px;
    }
    
    .game-icon {
        font-size: 48px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-card {
        padding: 35px 25px;
    }
    
    .sticky-popup {
        padding: 12px 15px;
    }
    
    .popup-content {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        font-size: 13px;
    }
    
    .popup-left {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .popup-label {
        font-size: 11px;
    }
    
    .popup-code {
        font-size: 18px;
        padding: 4px 12px;
    }
    
    .popup-bonus-text {
        font-size: 12px;
    }
    
    .popup-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .content-section h2 {
        font-size: 32px;
    }
    
    .content-section h3 {
        font-size: 22px;
    }
    
    .final-cta {
        padding: 50px 25px;
        border-radius: 24px;
    }
    
    .final-cta h3 {
        font-size: 32px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .faq-item {
        padding: 28px 25px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .promo-code {
        font-size: 30px;
    }
    
    .promo-code-box {
        padding: 25px 20px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .popup-code {
        font-size: 22px;
    }
    
    .main-nav ul {
        gap: 10px;
        font-size: 14px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .content-section h3 {
        font-size: 20px;
    }
    
    .final-cta h3 {
        font-size: 24px;
    }
    
    .step-card {
        padding: 20px 15px;
    }
    
    .step-number {
        font-size: 28px;
    }
    
    .step-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .step-card p {
        font-size: 14px;
    }
    
    .game-card {
        padding: 20px 15px;
    }
    
    .game-card h3 {
        font-size: 18px;
    }
    
    .game-card p {
        font-size: 13px;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
        line-height: 1.3;
        padding-right: 0;
    }
    
    .content-section h3 {
        font-size: 20px;
    }
    
    .content-section p {
        font-size: 15px;
    }
    
    .popular-skins {
        padding: 30px 20px;
    }
    
    .skins-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .skin-item {
        padding: 15px;
    }
    
    .skin-image {
        height: 80px;
    }
    
    .skin-name {
        font-size: 14px;
    }
    
    .skin-price {
        font-size: 16px;
    }

    .csgoempire-screens {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .recent-redemptions {
        padding: 30px 20px;
    }
    
    .redemptions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .redemption-card {
        padding: 15px;
    }
    
    .redemption-amount {
        font-size: 16px;
        text-align: left;
        margin-top: 4px;
    }
    
    .footer {
        padding: 30px 0 10px;
        margin-top: 30px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 20px;
    }
    
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-column li {
        margin-bottom: 10px;
    }
    
    .footer-bottom {
        padding-top: 15px;
        padding-bottom: 5px;
    }
}

/* Popular Skins Section */
.popular-skins {
    background: linear-gradient(135deg, rgba(45, 49, 66, 0.4) 0%, rgba(37, 40, 54, 0.2) 100%);
    border-radius: 16px;
    padding: 50px;
    margin: 60px 0;
}

.popular-skins .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.skins-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.skin-item {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-dark) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.skin-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.3);
}

.skin-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.skin-image img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 4px 10px rgba(255, 193, 7, 0.3));
    transition: all 0.3s ease;
}

.skin-item:hover .skin-image img {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 15px rgba(255, 193, 7, 0.5));
}

.skin-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.skin-rarity {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skin-rarity.covert {
    background: rgba(235, 75, 75, 0.2);
    color: #eb4b4b;
    border: 1px solid rgba(235, 75, 75, 0.3);
}

.skin-rarity.classified {
    background: rgba(211, 44, 230, 0.2);
    color: #d32ce6;
    border: 1px solid rgba(211, 44, 230, 0.3);
}

.skin-rarity.contraband {
    background: rgba(228, 174, 57, 0.2);
    color: #e4ae39;
    border: 1px solid rgba(228, 174, 57, 0.3);
}

.skin-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-gold);
}

/* CSGOEmpire Screens Gallery */
.csgoempire-screens {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.csgoempire-screen {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.csgoempire-screen img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.csgoempire-screen:hover img {
    transform: translateY(-4px);
    border-color: var(--primary-gold);
    box-shadow: 0 14px 40px rgba(255, 193, 7, 0.35);
}

.csgoempire-caption {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Recent Redemptions Section */
.recent-redemptions {
    background: linear-gradient(135deg, rgba(45, 49, 66, 0.5) 0%, rgba(37, 40, 54, 0.3) 100%);
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
}

.recent-redemptions .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.redemption-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-dark) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.redemption-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
    border-color: var(--primary-gold);
}

.redemption-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.redemption-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.redemption-info {
    flex: 1;
}

.redemption-user {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
}

.redemption-time {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.redemption-game {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding: 6px 12px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 6px;
    display: inline-block;
}

.redemption-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-gold);
    text-align: right;
}

/* Bonus Details Section */
.bonus-details {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.1), transparent 50%);
    pointer-events: none;
}

/* Content Lists */
.content-section ul,
.content-section ol {
    margin: 25px 0;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
}

.content-section ul li::marker {
    color: var(--primary-gold);
    font-size: 1.2em;
}

.content-section ol li::marker {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-gold), var(--accent-cyan));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
}

/* Links */
a {
    transition: all 0.3s ease;
}

/* Content Section Enhancements */
.content-section a:not(.cta-btn):not(.cta-btn-large) {
    color: var(--primary-gold);
    text-decoration: none;
    position: relative;
    font-weight: 600;
}

.content-section a:not(.cta-btn):not(.cta-btn-large)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.content-section a:not(.cta-btn):not(.cta-btn-large):hover::after {
    transform: scaleX(1);
}

/* Blockquote Styling */
blockquote {
    border-left: 4px solid var(--primary-gold);
    padding: 25px 35px;
    margin: 35px 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), var(--card-bg));
    border-radius: 12px;
    font-style: italic;
    color: var(--text-secondary);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    position: relative;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: var(--primary-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

th {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-dark);
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: rgba(255, 193, 7, 0.08);
}

/* Button Hover Effects */
button,
.cta-btn,
.cta-btn-large,
.copy-btn {
    position: relative;
    z-index: 1;
}

/* Glow Effect on Hover */
.promo-code-box:hover {
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.3);
}

/* Smooth Image Loading */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img:hover {
    opacity: 0.95;
}

/* Focus Styles */
button:focus,
a:focus,
input:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    background-size: 1000px 100%;
}

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-img {
    animation: float 6s ease-in-out infinite;
}

/* Card Hover Glow Effect */
.step-card,
.game-card,
.faq-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Underline */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-cyan), var(--accent-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.animated-underline:hover::after {
    transform: scaleX(1);
}

/* Gradient Animation for Backgrounds */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Selection Color */
::selection {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: linear-gradient(135deg, var(--success-green), #059669);
    color: white;
    padding: 18px 30px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1), slideOutRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 2.6s;
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}
/* =====================================================
   NEW ELEMENTS — 2026 REDESIGN
   ===================================================== */

/* --- Scroll Animation Base --- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* --- Hero Enhancements --- */
.hero-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.35);
    color: var(--primary-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.code-highlight {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: -24px;
    margin-bottom: 0;
    opacity: 0.75;
}

/* --- Hero Particles --- */
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hero-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFly var(--duration, 8s) var(--delay, 0s) ease-in infinite;
}
@keyframes particleFly {
    0%   { opacity: 0; transform: translateY(100px) scale(0); }
    10%  { opacity: 0.6; }
    80%  { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-400px) scale(1.5); }
}

/* --- Stats Bar --- */
.stats-bar {
    background: rgba(45, 49, 66, 0.6);
    border-top: 1px solid rgba(255, 193, 7, 0.15);
    border-bottom: 1px solid rgba(255, 193, 7, 0.15);
    padding: 28px 0;
    backdrop-filter: blur(10px);
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat-item.is-visible { opacity: 1; transform: translateY(0); }
.stat-number {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-suffix, .stat-prefix {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* --- Verdict Table --- */
.verdict-table-wrap {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.verdict-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}
.verdict-table th {
    background: linear-gradient(135deg, rgba(255,193,7,0.15), rgba(45,49,66,0.9));
    color: var(--primary-gold);
    padding: 16px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.verdict-table td {
    padding: 14px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.5;
}
.verdict-table tr:last-child td { border-bottom: none; }
.verdict-table tr:hover td { background: rgba(255,193,7,0.04); }

/* --- Rating Bars --- */
.rating-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
    padding: 24px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.rating-item {
    display: grid;
    grid-template-columns: 160px 1fr 40px;
    align-items: center;
    gap: 16px;
}
.rating-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}
.rating-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}
.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 4px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.rating-fill.animated { }
.rating-score {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-gold);
    text-align: right;
}

/* --- Bonus Grid --- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.bonus-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.bonus-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.bonus-card:hover { border-color: var(--primary-gold); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(255,193,7,0.2); }
.bonus-card:hover::after { transform: scaleX(1); }
.bonus-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.bonus-card h3 { font-size: 17px; margin: 0 0 10px; color: var(--text-primary); font-weight: 700; }
.bonus-card p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.bonus-terms-note {
    background: rgba(255,193,7,0.06);
    border: 1px dashed rgba(255,193,7,0.3);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 10px;
}

/* --- Game SVG Icons --- */
.game-icon-wrap {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.game-svg { width: 100%; height: 100%; }
.game-card:hover .game-svg {
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
    transform: scale(1.1) rotate(3deg);
    transition: all 0.3s ease;
}

/* --- Banking Table --- */
.table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    margin: 28px 0;
}
.banking-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    white-space: nowrap;
}
.banking-table th {
    background: rgba(255,193,7,0.12);
    color: var(--primary-gold);
    padding: 14px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.banking-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.banking-table tr:last-child td { border-bottom: none; }
.banking-table tr:hover td { background: rgba(255,193,7,0.04); }
.table-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: -10px;
    opacity: 0.8;
    line-height: 1.6;
}

/* --- Mobile Compatibility --- */
.mobile-compat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.compat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}
.compat-icon { font-size: 22px; flex-shrink: 0; }

/* --- Security Grid --- */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 28px 0;
}
.security-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 22px;
    transition: all 0.3s ease;
}
.security-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255,193,7,0.15);
}
.security-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.security-item h3 { font-size: 17px; margin: 0 0 10px; color: var(--text-primary); font-weight: 700; }
.security-item p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* --- FAQ Accordion --- */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}
.faq-question:hover { color: var(--primary-gold); }
.faq-arrow {
    font-size: 13px;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 16px;
}
.faq-answer p { font-size: 15px; color: var(--text-secondary); margin: 0; line-height: 1.7; }

/* --- Final CTA Section --- */
.final-cta-section { margin-top: 20px; }
.final-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255,193,7,0.1) 0%, var(--card-bg) 50%, rgba(255,179,0,0.08) 100%);
    border: 1px solid rgba(255,193,7,0.3);
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(255,193,7,0.15);
}
.final-cta h2 {
    font-size: 36px;
    background: linear-gradient(135deg, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.final-cta h2::after { display: none; }
.final-cta p { font-size: 16px; color: var(--text-secondary); margin-bottom: 24px; }
.final-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}
.final-code {
    font-size: 32px;
    font-weight: 900;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: promoPulse 2.5s ease-in-out infinite;
}
@keyframes promoPulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(255,193,7,0.4)); }
    50%       { filter: drop-shadow(0 0 18px rgba(255,193,7,0.8)); }
}
.copy-btn-sm {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.copy-btn-sm:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}
.disclaimer-small {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.65;
    margin-top: 20px;
    margin-bottom: 0;
}

/* --- Promo code box pulse animation --- */
@keyframes promoBoxPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(255,193,7,0.25); border-color: var(--primary-gold); }
    50%       { box-shadow: 0 8px 50px rgba(255,193,7,0.55); border-color: var(--secondary-gold); }
}
.promo-code-box { animation: promoBoxPulse 3s ease-in-out infinite; }

/* =====================================================
   RESPONSIVE — NEW ELEMENTS
   ===================================================== */
@media (max-width: 768px) {
    .stats-grid { gap: 24px 16px; }
    .stat-number { font-size: 28px; }
    .rating-item { grid-template-columns: 130px 1fr 36px; }
    .banking-table { font-size: 13px; }
    .banking-table th, .banking-table td { padding: 10px 14px; }
    .verdict-table th, .verdict-table td { padding: 12px 16px; font-size: 14px; }
    .final-cta { padding: 36px 20px; }
    .final-code { font-size: 24px; }
    .security-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .bonus-grid { grid-template-columns: 1fr; }
    .rating-item { grid-template-columns: 110px 1fr 32px; gap: 10px; }
}

/* =====================================================
   MODERN DESIGN OVERRIDES — 2026
   Refined palette · Glass cards · Premium feel
   ===================================================== */

/* ── Design tokens ─────────────────────────────────── */
:root {
    --surface-1: rgba(255,255,255,0.03);
    --surface-2: rgba(255,255,255,0.055);
    --border-subtle: rgba(255,255,255,0.07);
    --border-gold: rgba(255,193,7,0.35);
    --shadow-card: 0 2px 16px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.04) inset;
    --shadow-glow: 0 0 40px rgba(255,193,7,0.12);
    --radius-card: 16px;
    --radius-btn: 10px;
    --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Body & background ─────────────────────────────── */
body {
    background: #0f1117;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255,193,7,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 110%, rgba(255,179,0,0.04) 0%, transparent 55%);
    background-attachment: fixed;
}
body::before {
    background:
        radial-gradient(circle at 15% 25%, rgba(255,193,7,0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(255,179,0,0.03) 0%, transparent 40%);
}

/* ── Header ────────────────────────────────────────── */
.header {
    background: rgba(10,11,17,0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 20px rgba(0,0,0,0.4);
    padding: 14px 0;
}

/* ── Hero ──────────────────────────────────────────── */
.hero-section {
    padding: 60px 0 50px;
    background:
        radial-gradient(ellipse 70% 60% at 20% 50%, rgba(255,193,7,0.09) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(255,179,0,0.05) 0%, transparent 50%),
        linear-gradient(160deg, #0f1117 0%, #161925 60%, #0f1117 100%);
}
.hero-text h1 {
    font-size: clamp(36px, 5vw, 60px);
    background: linear-gradient(135deg, #ffd54f 0%, #ffffff 55%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1.15;
}
.hero-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    background: none;
    -webkit-text-fill-color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* ── Hero badge ────────────────────────────────────── */
.hero-badge {
    background: rgba(255,193,7,0.1);
    border: 1px solid rgba(255,193,7,0.3);
    color: #ffc107;
    font-size: 11px;
    letter-spacing: 2.5px;
    padding: 5px 14px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

/* ── Promo code box ────────────────────────────────── */
.promo-code-box {
    background: rgba(255,193,7,0.07);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    padding: 24px 28px;
    gap: 16px;
    box-shadow: var(--shadow-glow), var(--shadow-card);
}
.promo-code {
    font-size: 38px;
    letter-spacing: 3px;
}

/* ── Buttons ───────────────────────────────────────── */
.copy-btn,
.cta-btn,
.cta-btn-large {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #0f1117;
    border: none;
    border-radius: var(--radius-btn);
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: none;
    box-shadow: 0 4px 20px rgba(255,193,7,0.25), 0 1px 0 rgba(255,255,255,0.2) inset;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.copy-btn::before,
.cta-btn::before,
.cta-btn-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}
.copy-btn:hover::before,
.cta-btn:hover::before,
.cta-btn-large:hover::before { opacity: 1; }
.copy-btn:hover,
.cta-btn:hover,
.cta-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,193,7,0.4), 0 1px 0 rgba(255,255,255,0.2) inset;
}

/* ── Content sections as glass cards ──────────────── */
.content-section {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 36px 40px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(4px);
}
.content-section:hover {
    border-color: rgba(255,255,255,0.1);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.content-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.5px;
    padding-bottom: 16px;
    margin-bottom: 20px;
}
.content-section h2::after {
    width: 48px;
    height: 3px;
    border-radius: 2px;
}
.content-section p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(180,180,180,0.9);
}
.content-section p:first-of-type {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
}

/* ── Step cards ────────────────────────────────────── */
.step-card {
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}
.step-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.step-number {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(255,193,7,0.3);
}
.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ── Game cards ────────────────────────────────────── */
.game-card {
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 28px 18px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}
.game-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

/* ── FAQ ───────────────────────────────────────────── */
.faq-item {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 22px 28px;
    margin-bottom: 10px;
    transition: all var(--transition);
}
.faq-item:hover,
.faq-item.open {
    border-color: var(--border-gold);
    background: var(--surface-2);
}
.faq-question {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding-top: 14px;
}
.faq-answer p { font-size: 14.5px; line-height: 1.7; }

/* ── Verdict table ─────────────────────────────────── */
.verdict-table-wrap {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.verdict-table { background: #181c26; }
.verdict-table th {
    background: rgba(255,193,7,0.1);
    color: #ffc107;
    font-size: 14px;
    padding: 14px 22px;
    letter-spacing: 0.5px;
}
.verdict-table td {
    padding: 13px 22px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.verdict-table tr:hover td { background: rgba(255,193,7,0.035); }

/* ── Banking table ─────────────────────────────────── */
.table-wrap {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin: 20px 0;
}
.banking-table { background: #181c26; }
.banking-table th {
    background: rgba(255,193,7,0.09);
    color: rgba(255,193,7,0.9);
    font-size: 12px;
    padding: 12px 18px;
    letter-spacing: 1px;
}
.banking-table td {
    padding: 13px 18px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ── Security grid ─────────────────────────────────── */
.security-item {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 24px 20px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}
.security-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.security-item h3 { font-size: 16px; margin-bottom: 8px; }
.security-item p { font-size: 13.5px; }

/* ── Bonus cards ───────────────────────────────────── */
.bonus-card {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 24px 20px;
    box-shadow: var(--shadow-card);
}
.bonus-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.bonus-card h3 { font-size: 16px; }
.bonus-card p { font-size: 13.5px; }

/* ── Important note ────────────────────────────────── */
.important-note {
    background: rgba(255,193,7,0.07);
    border-left: 3px solid #ffc107;
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    padding: 20px 24px;
    box-shadow: var(--shadow-card);
}
.important-note::before { display: none; }
.important-note h4 { font-size: 15px; margin-bottom: 8px; }
.important-note p { font-size: 14px; margin: 0; }

/* ── Mobile compat ─────────────────────────────────── */
.mobile-compat {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 16px 20px;
    gap: 10px;
}
.compat-item { font-size: 14px; }

/* ── Final CTA ─────────────────────────────────────── */
.final-cta {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,193,7,0.1) 0%, transparent 60%),
        rgba(20,22,32,0.9);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 52px 40px;
    box-shadow: 0 0 60px rgba(255,193,7,0.1), var(--shadow-card);
}
.final-cta h2 { font-size: clamp(24px, 3vw, 34px); padding-bottom: 0; }
.cta-btn-large {
    font-size: 17px;
    padding: 16px 36px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 4px;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
    background: rgba(8,9,14,0.95);
    border-top: 1px solid var(--border-subtle);
    padding: 48px 0 20px;
}
.footer::before { background: linear-gradient(90deg, transparent, rgba(255,193,7,0.3), transparent); }

/* ── Rating bars ───────────────────────────────────── */
.rating-row {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 20px 24px;
    gap: 12px;
    box-shadow: var(--shadow-card);
}
.rating-bar {
    background: rgba(255,255,255,0.07);
    height: 7px;
    border-radius: 4px;
}
.rating-fill {
    background: linear-gradient(90deg, #ffc107, #ffe082);
    height: 100%;
    border-radius: 4px;
}

/* ── Stats bar ─────────────────────────────────────── */
.stats-bar {
    background: rgba(12,13,20,0.9);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px 0;
}
.stat-number {
    font-size: 34px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd54f, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 11px;
    letter-spacing: 1.8px;
    color: rgba(180,180,180,0.6);
}

/* ── Sticky popup (with the display fix applied above) */
.popup-content { gap: 20px; }
.popup-code {
    font-size: 22px;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,193,7,0.5);
    background: rgba(255,193,7,0.1);
}
.popup-cta-btn {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #0f1117;
    border-radius: 8px;
    font-weight: 800;
    padding: 10px 22px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(255,193,7,0.3);
}

/* ── Copy notification ─────────────────────────────── */
.copy-notification {
    position: fixed;
    top: 80px;
    right: 24px;
    background: rgba(16,185,129,0.95);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(16,185,129,0.4);
    z-index: 10000;
    animation: slideInRight 0.35s cubic-bezier(0.4,0,0.2,1), slideOutRight 0.35s cubic-bezier(0.4,0,0.2,1) 2.65s forwards;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0f1117; }
::-webkit-scrollbar-thumb { background: rgba(255,193,7,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,193,7,0.65); }

/* ── Mobile overrides ──────────────────────────────── */
@media (max-width: 768px) {
    .content-section { padding: 24px 20px; }
    .step-card, .game-card, .faq-item { border-radius: 12px; }
    .final-cta { padding: 36px 20px; border-radius: 14px; }
    .stats-bar { padding: 18px 0; }
    .stat-number { font-size: 26px; }
}
@media (max-width: 480px) {
    .content-section { padding: 20px 16px; }
    .promo-code-box { padding: 18px 16px; }
    .promo-code { font-size: 30px; }
}
