/* Sweet & Sour Promo Code Hub - Hardcore Gaming Theme */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Particles Container */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: transparent;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-links a.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.15);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #667eea;
    color: #667eea;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #667eea;
    color: white;
}

/* Main Content */
main {
    margin-top: 90px;
    padding: 2rem;
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem 4rem;
    position: relative;
    color: white;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    border-radius: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    color: #e0e6ff;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(45deg, #764ba2, #667eea);
}

/* Game Cards */
.games-section {
    padding: 2.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Backspin Theme */
.backspin-theme {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.backspin-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.backspin-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.backspin-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: white;
}

.backspin-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    color: #e0e6ff;
}

/* Triumph Theme (Triumph page only) */
.triumph-theme {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ff8c42 100%);
}

.triumph-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.triumph-hero {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ff8c42 100%);
    color: white;
    padding: 5rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.triumph-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: white;
}

.triumph-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    color: #ffe6d9;
}

/* About Section */
.about-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.about-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #555;
    font-weight: 500;
    line-height: 1.8;
}

/* Additional Content Sections */
.about-intro,
.gaming-stats,
.sponsorship-details,
.gaming-philosophy,
.blog-section,
.recent-updates,
.youtube-section,
.sponsor-info,
.terms-section,
.gaming-strategy,
.verification-section,
.hero-banner,
.backspin-showcase {
        padding: 0 1rem;
    margin: 1.5rem 0;
}

.intro-card,
.sponsorship-card,
.philosophy-card,
.youtube-card,
.sponsor-card,
.terms-card,
.strategy-card,
.verification-card,
.blog-card,
.status-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: #333;
}



/* About Page Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.stat-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stat-details {
    display: grid;
    gap: 1rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
}

.triumph-stat .stat-number {
    color: #ff4500;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: rgba(102, 126, 234, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.benefit-item h4 {
    color: #333;
    margin: 0.75rem 0;
    font-weight: 700;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.philosophy-text h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.philosophy-stats {
    display: grid;
    gap: 1rem;
}

.philosophy-stat {
    background: rgba(102, 126, 234, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.philosophy-stat .stat-number {
    color: #667eea;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    color: #333;
    margin-bottom: 0.75rem;
}

.blog-card p {
    color: #555;
}

/* Status Section */
.status-card {
    text-align: center;
}

.status-card h3 {
    color: #333;
    margin-bottom: 0.75rem;
}

.status-pill {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}


/* YouTube Section */
.youtube-content {
    display: grid;
    align-items: center;
}

.youtube-card {
    padding: 3.5rem;
}

.youtube-text h2 {
    margin-bottom: 1.25rem;
}

.youtube-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.youtube-text ul {
    margin-top: 1rem;
    padding-left: 0;
    list-style: none;
}

.youtube-text li {
    margin-bottom: 0.75rem;
}

.youtube-cta {
    margin-top: 1.5rem;
}

.youtube-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.75rem;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.youtube-stats,
.verification-stats,
.elite-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Strategy Section */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.strategy-item {
    background: rgba(255, 69, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 69, 0, 0.2);
}

/* Download Badges */
.store-badge-link {
    display: inline-flex;
    align-items: center;
}

.store-badge {
    height: 56px;
    width: auto;
    display: block;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(26, 26, 26, 0.95));
    padding: 3.5rem 0 2rem;
    backdrop-filter: blur(10px);
    color: white;
}

.footer-grid {
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-column a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 600;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column p {
    margin: 0;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-weight: 500;
    opacity: 0.85;
}

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .promo-section {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .hero-banner .banner-card,
    .backspin-showcase .showcase-grid,
    .iphone-under {
        grid-template-columns: 1fr;
    }

    .iphone-frame {
        width: 200px;
        height: 400px;
    }
    
    main {
        padding: 1rem;
    }
    
    .about-section {
        padding: 2rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Particle improvements */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 70%, transparent 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus indicators */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

/* High contrast support */
@media (prefers-contrast: high) {
    body {
        background: #fff !important;
        color: #000 !important;
    }
    
    .nav-links a {
        color: #000 !important;
    }
    
    .nav-links a:hover {
        color: #0066cc !important;
        background: #f0f0f0 !important;
    }
}

/* Coupon Design Styles */
.promo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
    align-items: stretch;
}

.coupon-container {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.coupon-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
}

.coupon-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.coupon-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.promo-code-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1.5rem;
    margin: 0 1.5rem;
    border-radius: 8px;
    border: 2px dashed #ccc;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    text-align: center;
}

.promo-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1;
}

.partner-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.partner-inline .backspin-logo {
    max-height: 70px;
}

.partner-text {
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin: 0.75rem 1.5rem 0;
    color: #555;
    font-weight: 600;
}

.partner-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.backspin-logo {
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
}

.hero-banner .banner-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.banner-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.banner-media {
    display: flex;
    justify-content: center;
}

.backspin-banner {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    object-fit: cover;
}

.backspin-showcase .showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.iphone-under {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.iphone-under.full-width {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1rem 0;
    max-width: 100%;
}

.redeem-details {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.redeem-details h2 {
    margin: 0.5rem 0 1rem;
}

.redeem-details p {
    color: #555;
}

.iphone-under.full-width .iphone-frame {
    width: 300px;
    height: 600px;
    padding: 8px;
}

.iphone-container {
    display: flex;
    justify-content: center;
}

.iphone-frame {
    width: 240px;
    height: 480px;
    background: #0f1115;
    border-radius: 36px;
    padding: 16px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.iphone-notch {
    width: 120px;
    height: 18px;
    background: #000;
    border-radius: 0 0 12px 12px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.game-animation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: phoneCycle 16s infinite;
}

.game-animation.anim-1 { animation-delay: 0s; }
.game-animation.anim-2 { animation-delay: 4s; }
.game-animation.anim-3 { animation-delay: 8s; }
.game-animation.anim-4 { animation-delay: 12s; }

@keyframes phoneCycle {
    0%, 20% { opacity: 1; }
    25%, 100% { opacity: 0; }
}

.download-buttons {
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.store-badge {
    height: 60px;
}

.youtube-subscribe-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1.1rem 2rem;
}

.youtube-promo .copy-button.youtube-btn,
.youtube-promo .open-app-button.youtube-open {
    width: 100%;
}

.youtube-promo .promo-code-display {
    padding: 1.25rem;
    margin: 0 1rem;
}

.promo-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin: 0.75rem 1.5rem 0;
    color: #555;
    font-weight: 600;
}

.partner-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.backspin-logo {
    height: 64px;
    width: auto;
    margin-bottom: 1rem;
}

.hero-banner .banner-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.banner-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.banner-media {
    display: flex;
    justify-content: center;
}

.backspin-banner {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    object-fit: cover;
}

.backspin-showcase .showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.iphone-container {
    display: flex;
    justify-content: center;
}

.iphone-frame {
    width: 260px;
    height: 520px;
    background: #0f1115;
    border-radius: 30px;
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.iphone-notch {
    width: 100px;
    height: 14px;
    background: #000;
    border-radius: 0 0 10px 10px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.game-animation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: phoneCycle 16s infinite;
}

.game-animation.anim-1 { animation-delay: 0s; }
.game-animation.anim-2 { animation-delay: 4s; }
.game-animation.anim-3 { animation-delay: 8s; }
.game-animation.anim-4 { animation-delay: 12s; }

@keyframes phoneCycle {
    0%, 30% { opacity: 1; }
    40%, 100% { opacity: 0; }
}

.download-buttons {
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.store-badge {
    height: 60px;
}

.google-badge {
    height: 86px;
}

.youtube-subscribe-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1.1rem 2rem;
}

.youtube-promo .copy-button.youtube-btn,
.youtube-promo .open-app-button.youtube-open {
    width: 100%;
}

.youtube-promo .promo-code-display {
    padding: 1.25rem;
    margin: 0 1rem;
}


.code-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    color: #fff;
}

.copy-button {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.copy-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copy-button.copied {
    background: #4caf50;
    color: white;
}

.open-app-button {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.open-app-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.open-app-buttons.single {
    grid-template-columns: 1fr;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(15, 17, 21, 0.95);
    color: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    z-index: 2000;
}

.cookie-consent__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent__content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f0f0f0;
    flex: 1 1 280px;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.cookie-consent__btn {
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-consent__accept {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
}

.cookie-consent__decline {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.cookie-consent__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
    .cookie-consent {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .cookie-consent__actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .cookie-consent__btn {
        flex: 1 1 120px;
        text-align: center;
    }
}

.open-app-button.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.open-app-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bonus-info {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.bonus-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.bonus-details {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.case-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    color: #856404;
    padding: 0.8rem;
    margin: 1rem 1.5rem;
    border-radius: 5px;
    font-size: 0.85rem;
    text-align: center;
}

/* How to Redeem Section */
.redeem-section {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.redeem-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.redeem-steps {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.redeem-steps li {
    padding: 1.2rem 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.redeem-steps li:last-child {
    border-bottom: none;
}

.step-number {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Download Section in Redeem */
.download-links {
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.download-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.download-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    color: #856404;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
}

/* Triumph Theme Adjustments */
.triumph-page .promo-code-display {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ff8c42 100%);
    color: #fff;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.triumph-page .code-value {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.triumph-page .copy-button {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.triumph-page .copy-button:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.triumph-page .open-app-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.triumph-page .open-app-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.triumph-page .step-number {
    background: linear-gradient(45deg, #ff4500, #ff6b35);
}

.triumph-page .bonus-amount {
    color: #ff4500;
}

.triumph-page .download-btn {
    background: linear-gradient(45deg, #ff4500, #ff6b35);
}

.triumph-page .download-btn:hover {
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

/* Homepage YouTube Promo */
.youtube-promo .promo-code-display {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.youtube-promo .code-value {
    color: #fff;
}

.youtube-promo .copy-button.youtube-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #c00;
    font-weight: 700;
}

.youtube-promo .open-app-button.youtube-open {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.youtube-bonus {
    color: #c00;
}

/* Mobile Responsiveness for Promo Section */
@media (max-width: 768px) {
    .promo-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .code-value {
        font-size: 1.5rem;
    }
    
    .coupon-container {
        min-height: 250px;
    }
}
