/**
 * ALTINBET Premium Casino Landing Page
 * Design matching Untitled-1-fixed.html
 */

:root {
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-light: #ef4444;
    --white: #ffffff;
    --white-soft: #f9fafb;
    --gold: #ffd700;
    --gold-deep: #fbbf24;
    --gold-soft: #fde68a;
    --night: #1a1a1a;
    --dark: #0f0f0f;
    --ink: #262626;
    --ice: #ffffff;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0118;
    background-image: radial-gradient(circle at 15% 20%, rgba(255, 215, 0, 0.28), transparent 55%), 
                      radial-gradient(circle at 80% 10%, rgba(108, 62, 255, 0.25), transparent 60%), 
                      radial-gradient(circle at 60% 80%, rgba(255, 0, 255, 0.22), transparent 65%), 
                      radial-gradient(circle at 40% 50%, rgba(0, 255, 255, 0.15), transparent 70%);
    color: #f4f5ff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    font-feature-settings: "salt" on, "liga" off;
}

.font-body {
    font-family: 'Inter', sans-serif;
}

.font-display {
    font-family: 'Space Grotesk', sans-serif;
}

.font-mono {
    font-family: monospace;
}

/* Hero Background Effects */
.hero-texture {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.hero-texture::before,
.hero-texture::after {
    content: "";
    position: absolute;
    inset: -35% -15%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="2"/></svg>');
    background-size: 40%;
    opacity: 0.08;
    animation: spinReel 24s linear infinite;
}

.hero-texture::after {
    opacity: 0.06;
    animation-direction: reverse;
}

@keyframes spinReel {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

/* Particles */
#particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6), rgba(255, 0, 255, 0.3), transparent 70%);
    opacity: 0.4;
    animation: floatSlow linear infinite;
    pointer-events: none;
    filter: blur(1px);
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 0, 255, 0.4);
    }
}

/* Header */
.header {
    position: relative;
    z-index: 100;
    padding: 0.75rem 1.25rem 1rem;
    background: transparent;
    border-bottom: none;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-surface {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0;
    padding: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 36px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    animation: fadeIn 0.8s ease-out, rotateIn 0.6s ease-out;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    display: none !important;
}

.logo-text .brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.02em;
}

.logo-text .brand-tagline {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-deep);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    gap: 0;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
    background: transparent;
}

.lang-toggle a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.35rem 0.65rem;
    font-size: 0.6875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    background: transparent;
    min-width: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    animation: fadeIn 0.6s ease-out both;
}

.lang-toggle a:nth-child(1) {
    animation-delay: 0.2s;
}

.lang-toggle a:nth-child(2) {
    animation-delay: 0.3s;
}

.lang-toggle a:first-child {
    border-right: 1px solid rgba(255, 215, 0, 0.3);
}

.lang-toggle a:hover {
    background: rgba(220, 38, 38, 0.2);
    color: #ffd700;
    transform: scale(1.1);
    border-color: rgba(255, 215, 0, 0.5);
}

.lang-toggle a.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 0, 255, 0.2));
    color: #ffd700;
    font-weight: 700;
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    color: rgba(255, 215, 0, 0.7);
    font-weight: 600;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.7), 0 0 60px rgba(255, 0, 255, 0.4);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto 2rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.7;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c, #dc2626);
    background-size: 200% 200%;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.375rem;
    font-weight: 900;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6), 0 0 40px rgba(255, 215, 0, 0.3), inset 0 2px 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 1s both, pulseGlow 2s ease-in-out 2.5s infinite, gradientShift 3s ease infinite;
    border: 2px solid rgba(255, 215, 0, 0.5);
    cursor: pointer;
    z-index: 10;
    min-width: 320px;
}

.cta-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ef4444, #dc2626, #ef4444);
    opacity: 0;
    transition: opacity 200ms ease;
    z-index: -1;
}

.cta-button::after {
    content: "→";
    margin-left: 0.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.8), 0 0 60px rgba(255, 215, 0, 0.5), inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 215, 0, 0.8);
}

.cta-button:hover::after {
    transform: translateX(5px);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.7);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6), 0 0 40px rgba(255, 215, 0, 0.3), inset 0 2px 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 8px 35px rgba(220, 38, 38, 0.8), 0 0 50px rgba(255, 215, 0, 0.5), inset 0 2px 10px rgba(255, 255, 255, 0.2);
    }
}

.cta-note {
    max-width: 100%;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 600;
    background: rgba(220, 38, 38, 0.15);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease-out 1.2s both;
    transition: all 0.3s ease;
}

.cta-note:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.02);
}

.bonus-highlight {
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.bonus-badge {
    min-width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: scaleIn 0.6s ease-out both;
}

.bonus-badge:nth-child(1) {
    animation-delay: 1s;
}

.bonus-badge:nth-child(2) {
    animation-delay: 1.2s;
}

.bonus-badge:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    backdrop-filter: blur(24px) saturate(150%);
    background: linear-gradient(120deg, rgba(255, 215, 0, 0.08), rgba(108, 62, 255, 0.12), rgba(255, 0, 255, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
    box-shadow: 0 25px 70px rgba(10, 1, 24, 0.6);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(10, 1, 24, 0.8);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* Countdown Bar */
.countdown-bar-wrapper {
    position: relative;
    z-index: 10;
    margin: 1rem auto;
    max-width: 600px;
    padding: 0 1rem;
}

.countdown-bar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(10px);
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.countdown-bar:hover {
    background: rgba(220, 38, 38, 0.25);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.countdown-bar .countdown-label {
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-bar .countdown-label::before {
    content: '🎰';
    font-size: 1rem;
}

.countdown-bar #countdown {
    font-family: 'Space Grotesk', monospace;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #ffd700;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

/* Main Content */
.main {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background: transparent;
}

/* Trust Badges Marquee */
.trust-section {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 1, 24, 0.4);
    padding: 1.5rem;
    box-shadow: 0 25px 70px rgba(10, 1, 24, 0.6);
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 215, 0, 0.12), rgba(108, 62, 255, 0.12), rgba(255, 0, 255, 0.08));
    opacity: 0.7;
    filter: blur(3rem);
}

.trust-marquee {
    position: relative;
    overflow: hidden;
}

.trust-marquee-content {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-marquee-content span {
    display: inline-block;
}

/* Testimonials Section */
.testimonials-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonials-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease-out both;
}

.testimonials-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.testimonial-track {
    display: flex;
    width: 200%;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 1, 24, 0.6);
    box-shadow: 0 25px 70px rgba(10, 1, 24, 0.6);
    animation: fadeIn 0.8s ease-out;
}

.testimonial-track[data-carousel] {
    animation: slideTestimonials 20s linear infinite;
}

.testimonial-item {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: scale(1.02);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.testimonial-info .name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    color: #ffd700;
}

.testimonial-info .badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(148, 163, 184, 1);
}

.testimonial-quote {
    color: rgba(226, 232, 240, 1);
}

/* Banking Section */
.banking-section {
    backdrop-filter: blur(24px) saturate(150%);
    background: linear-gradient(120deg, rgba(255, 215, 0, 0.08), rgba(108, 62, 255, 0.12), rgba(255, 0, 255, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 320ms ease, box-shadow 320ms ease;
    box-shadow: 0 25px 70px rgba(10, 1, 24, 0.6);
    animation: slideInRight 0.8s ease-out both;
}

.banking-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(10, 1, 24, 0.8);
}

.banking-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 700;
}

.banking-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.banking-section li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.banking-section li span:first-child {
    margin-top: 0.25rem;
    color: #ffd700;
    font-size: 1.25rem;
}

.banking-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: max-content;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--red);
    background: var(--red);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
}

.banking-link:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateX(4px) scale(1.05);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* Pricing Tiers */
.pricing-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.pricing-header .tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    color: rgba(255, 215, 0, 0.7);
    font-weight: 600;
}

.pricing-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffd700;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-card {
    backdrop-filter: blur(24px) saturate(150%);
    background: linear-gradient(120deg, rgba(255, 215, 0, 0.08), rgba(108, 62, 255, 0.12), rgba(255, 0, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
    box-shadow: 0 25px 70px rgba(10, 1, 24, 0.6);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 80px rgba(10, 1, 24, 0.8);
    border-color: rgba(255, 215, 0, 0.3);
}

.pricing-card.featured {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 0, 255, 0.3);
    position: relative;
    animation: glow 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.pricing-card.featured::before {
    content: '🔥 Most Popular';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #090114;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
}

.pricing-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 700;
}

.pricing-card > p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card button {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: var(--red);
    color: var(--white);
}

.pricing-card:not(.featured) button {
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: transparent;
    color: #ffd700;
}

.pricing-card:not(.featured) button:hover {
    border-color: rgba(255, 215, 0, 0.5);
    color: rgba(255, 229, 92, 1);
}

.pricing-card.featured button {
    background: linear-gradient(135deg, #ffd700, rgba(255, 229, 92, 1));
    color: #090114;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 0, 255, 0.3);
}

.pricing-card.featured button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    position: relative;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    background: linear-gradient(180deg, rgba(10, 1, 24, 0.95), rgba(10, 1, 24, 0.98));
    padding: 3rem 1.25rem;
    z-index: 100;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-main h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    color: var(--red);
    font-weight: 900;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    margin: 0;
}

.footer-main p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.footer-payments {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-payments p {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffd700;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-payments-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}

@media (min-width: 480px) {
    .footer-payments-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-payments-icons {
        grid-template-columns: repeat(4, 1fr);
    }
}

.payment-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffd700;
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out both;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 80px;
}

.payment-badge svg {
    width: 40px;
    height: 24px;
    flex-shrink: 0;
}

.payment-badge span:not(:first-child) {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.payment-badge:nth-child(1) { animation-delay: 0.1s; }
.payment-badge:nth-child(2) { animation-delay: 0.2s; }
.payment-badge:nth-child(3) { animation-delay: 0.3s; }
.payment-badge:nth-child(4) { animation-delay: 0.4s; }
.payment-badge:nth-child(5) { animation-delay: 0.5s; }
.payment-badge:nth-child(6) { animation-delay: 0.6s; }

.payment-badge:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 38, 38, 0.15));
    border-color: #ffd700;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #ffffff;
}

.footer-support {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(255, 215, 0, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    animation: fadeInUp 0.8s ease-out both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}

.footer-support:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
}

.footer-support h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.375rem;
    color: #ffd700;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.footer-support .support-phone {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 700;
}

.footer-support .support-phone a {
    color: var(--red);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 800;
}

.footer-support .support-phone a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-support .support-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.7;
}

/* Live Chat Button */
.live-chat-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--red-dark);
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite, fadeIn 1s ease-out 1.5s both;
    z-index: 9999;
    pointer-events: auto;
}

.live-chat-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.live-chat-button:active {
    transform: scale(1.05) translateY(-1px);
}

/* Confetti */
.confetti-piece {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--auric), var(--magenta), var(--cyan));
    pointer-events: none;
    z-index: 60;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}

.exit-popup {
    text-align: center;
}

.exit-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--red);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.exit-content p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: var(--dark);
}

/* Banner Styles */
.banner-top {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    background: var(--white);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.banner-top-img,
.banner-bottom-img,
.banner-hero-img,
.banner-side-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.banner-link {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.banner-link:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.banner-hero {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

.banner-bottom {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    background: var(--white);
    border-top: 1px solid rgba(220, 38, 38, 0.1);
}

.banner-side {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero-texture::before,
    .hero-texture::after {
        background-size: 70%;
    }
    
    /* Header */
    .header {
        padding: 0.5rem 1rem 0.75rem;
    }
    
    .header-nav {
        gap: 0.5rem;
        margin-bottom: 0;
    }
    
    .logo-image {
        height: 32px;
        max-width: 130px;
    }
    
    .logo-text {
        display: none;
    }
    
    .lang-toggle a {
        padding: 0.3rem 0.55rem;
        font-size: 0.625rem;
        min-width: 28px;
    }
    
    /* Hero Section */
    .hero-section {
        gap: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.6875rem;
        letter-spacing: 0.3em;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-cta-wrapper {
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .cta-button {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
        gap: 0.5rem;
        min-width: 280px;
    }
    
    .cta-note {
        font-size: 0.8125rem;
        max-width: 100%;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-card p {
        font-size: 0.875rem;
    }
    
    /* Countdown Bar */
    .countdown-bar {
        padding: 1rem 1rem;
        font-size: 0.8125rem;
        gap: 0.75rem;
    }
    
    .countdown-bar .countdown-label {
        font-size: 0.875rem;
    }
    
    .countdown-bar #countdown {
        font-size: 1.25rem;
        min-width: 120px;
        padding: 0.4rem 0.75rem;
    }
    
    /* Main Content */
    .main {
        padding: 2.5rem 1rem;
        gap: 3rem;
    }
    
    /* Trust Section */
    .trust-section {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .trust-marquee-content {
        font-size: 0.75rem;
        gap: 2rem;
        letter-spacing: 0.4em;
    }
    
    /* Testimonials */
    .testimonials-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonials-content p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-track {
        width: 100%;
        flex-direction: column;
    }
    
    .testimonial-item {
        width: 100% !important;
        padding: 1.25rem 1.5rem;
    }
    
    .testimonial-header {
        gap: 0.75rem;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-info .name {
        font-size: 1rem;
    }
    
    .testimonial-info .badge {
        font-size: 0.6875rem;
    }
    
    .testimonial-quote {
        font-size: 0.9375rem;
    }
    
    /* Banking Section */
    .banking-section {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .banking-section h3 {
        font-size: 1.25rem;
    }
    
    .banking-section ul {
        gap: 0.75rem;
        font-size: 0.9375rem;
    }
    
    .banking-link {
        padding: 0.4375rem 1rem;
        font-size: 0.8125rem;
    }
    
    /* Pricing Section */
    .pricing-section {
        gap: 2rem;
    }
    
    .pricing-header {
        gap: 0.75rem;
        text-align: center;
    }
    
    .pricing-header .tagline {
        font-size: 0.75rem;
    }
    
    .pricing-header h2 {
        font-size: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .pricing-card > p {
        font-size: 1rem;
    }
    
    .pricing-card ul {
        gap: 0.75rem;
        font-size: 0.9375rem;
    }
    
    .pricing-card button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .footer-payments-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-support {
        padding: 1.5rem;
    }
    
    .footer-support h4 {
        font-size: 1.125rem;
    }
    
    .payment-badge {
        padding: 0.75rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .footer-main h3 {
        font-size: 1.5rem;
    }
    
    .footer-main p {
        font-size: 0.875rem;
    }
    
    .footer-links {
        gap: 1rem;
        font-size: 0.8125rem;
    }
    
    .footer-payments p {
        font-size: 0.8125rem;
    }
    
    /* Live Chat Button */
    .live-chat-button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    /* Banners */
    .banner-top,
    .banner-bottom {
        padding: 0.5rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-section {
        grid-template-columns: 1fr;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .footer-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .banner-side {
        display: block;
        min-width: 300px;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .feature-card:hover,
    .banking-section:hover,
    .pricing-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold, #ffd700), var(--red, #dc2626));
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Live Visitor Notification */
.live-visitor-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(10, 1, 24, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    font-size: 0.875rem;
    color: var(--gold-soft, #fde68a);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.3s ease-out;
}

.live-indicator {
    color: var(--red, #dc2626);
    font-size: 0.75rem;
    animation: pulse 2s ease-in-out infinite;
}

#live-visitor-count {
    font-weight: 700;
    color: var(--gold, #ffd700);
}

/* Activity Ticker */
.activity-ticker {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: rgba(10, 1, 24, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1000;
    font-size: 0.875rem;
    color: var(--gold-soft, #fde68a);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease-out;
    max-width: 500px;
    margin: 0 auto;
}

.ticker-icon {
    font-size: 1rem;
}

/* Social Proof Popups */
#social-proof-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 0 1rem;
}

.social-proof-popup {
    background: rgba(10, 1, 24, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    color: var(--gold-soft, #fde68a);
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    max-width: 100%;
    width: 100%;
    text-align: center;
    pointer-events: auto;
}

.social-proof-popup.show {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section */
.faq-section {
    margin: 4rem auto;
    max-width: 800px;
    padding: 0 1.25rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold, #ffd700);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(10, 1, 24, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: none;
    color: var(--gold-soft, #fde68a);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--gold, #ffd700);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold, #ffd700);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.faq-answer p {
    margin: 0;
}

/* Social Media Links in Footer */
.footer-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social h4 {
    color: var(--gold, #ffd700);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.05em;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: var(--gold-soft, #fde68a);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 90px;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--gold, #ffd700);
    color: var(--gold, #ffd700);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.social-link span:first-child {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link span:first-child i {
    font-size: 2rem;
    color: var(--gold-soft, #fde68a);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover span:first-child {
    transform: scale(1.2) rotate(5deg);
}

.social-link:hover span:first-child i.fa-facebook-f {
    color: #1877F2;
}

.social-link:hover span:first-child i.fa-twitter {
    color: #1DA1F2;
}

.social-link:hover span:first-child i.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-link:hover span:first-child i.fa-telegram-plane {
    color: #0088cc;
}

.social-link:hover span:first-child i.fa-youtube {
    color: #FF0000;
}

.social-link span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .live-visitor-notification {
        top: 60px;
        right: 10px;
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .activity-ticker {
        bottom: 60px;
        left: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    #social-proof-container {
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100vw - 2rem);
        padding: 0 1rem;
    }
    
    .social-proof-popup {
        max-width: 100%;
        width: 100%;
    }
    
    .faq-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9375rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .social-link {
        min-height: 80px;
        padding: 1rem 0.75rem;
    }
    
    .social-link span:first-child {
        font-size: 1.75rem;
    }
    
    /* Bonus Badges Mobile */
    .bonus-highlight {
        margin: 1.5rem 0;
        gap: 0.75rem !important;
    }
    
    .bonus-badge {
        min-width: 140px !important;
        padding: 0.875rem 1.25rem !important;
        flex: 1 1 calc(50% - 0.375rem);
        max-width: 100%;
    }
    
    .bonus-badge > div:first-child {
        font-size: 0.75rem !important;
    }
    
    .bonus-badge > div:nth-child(2) {
        font-size: 1.5rem !important;
    }
    
    .bonus-badge > div:last-child {
        font-size: 0.6875rem !important;
    }
    
    /* Countdown Bar Mobile */
    .countdown-bar-wrapper {
        padding: 0 0.75rem;
    }
    
    .countdown-bar {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.625rem 0.75rem;
    }
    
    .countdown-bar .countdown-label {
        font-size: 0.75rem;
    }
    
    .countdown-bar #countdown {
        font-size: 0.9375rem;
        min-width: 90px;
    }
    
    /* Pricing Grid Mobile */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .pricing-card {
        width: 100%;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-payments-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .payment-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Live Chat Button Mobile */
    .live-chat-button {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .live-chat-button span:first-child {
        font-size: 1rem;
    }
}

/* ============================================
   TURKISH LANDING PAGE - MOBILE-FIRST DESIGN
   ============================================ */

.landing-turkish {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    color: #1a1a1a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 100px; /* Space for sticky CTA */
    position: relative;
}

/* Subtle Casino Pattern Background */
.landing-turkish::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px
        );
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Additional depth layer */
.landing-turkish::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.landing-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

/* Header / Logo */
.landing-header {
    padding: 1rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.landing-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Hero Section with Banner Image */
.landing-hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: #ffffff;
    padding: 2.5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.85) 0%, rgba(185, 28, 28, 0.9) 100%);
    z-index: 1;
}

/* Winner Visual - Turkish user celebrating */
.winner-visual {
    position: absolute;
    top: 10%;
    left: 3%;
    z-index: 0;
    opacity: 0.35;
    animation: winnerCelebrate 4s ease-in-out infinite;
}

.winner-phone {
    font-size: 5rem;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    animation: phoneShake 2s ease-in-out infinite;
    position: relative;
}

.winner-phone::before {
    content: '💰';
    position: absolute;
    top: -15px;
    right: -20px;
    font-size: 2rem;
    animation: moneyPop 1.5s ease-in-out infinite;
}

@keyframes moneyPop {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(15deg); }
}

.winner-celebration {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 2.5rem;
    animation: celebrationPop 1.5s ease-in-out infinite;
}

.winner-coins {
    position: absolute;
    top: 60px;
    left: 20px;
    display: flex;
    gap: 0.5rem;
}

.coin-large {
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    animation: coinSpin 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
}

@keyframes winnerCelebrate {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes celebrationPop {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes coinSpin {
    0%, 100% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.2); }
}

/* Bright Lights Effect */
.bright-lights {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.light {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: lightPulse 3s ease-in-out infinite;
}

.light-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.light-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.light-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes lightPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.slot-reels-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1rem;
    z-index: 0;
    opacity: 0.15;
}

.slot-reels-visual .reel {
    font-size: 4rem;
    animation: spinReel 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

@keyframes spinReel {
    0%, 100% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.1); }
}

.gold-coins-animation {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 0;
    opacity: 0.2;
}

.gold-coins-animation .coin {
    display: block;
    font-size: 2rem;
    color: #ffd700;
    animation: floatCoin 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.5s);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes floatCoin {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.landing-hero .landing-container {
    position: relative;
    z-index: 2;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite, badgeGlow 2s ease-in-out infinite;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 
            0 4px 15px rgba(255, 215, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        box-shadow: 
            0 6px 20px rgba(255, 215, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

.hero-headline {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 1rem;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3);
    animation: headlineGlow 3s ease-in-out infinite;
}

@keyframes headlineGlow {
    0%, 100% { 
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(255, 215, 0, 0.3);
    }
    50% { 
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(255, 215, 0, 0.5);
    }
}

.hero-subtext {
    font-size: 1rem;
    margin: 0 0 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #fbbf24 50%, #ffd700 100%);
    background-size: 200% 100%;
    color: #1a1a1a;
    padding: 1.25rem 2.5rem;
    border-radius: 14px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 
        0 6px 25px rgba(255, 215, 0, 0.5),
        0 3px 10px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    min-width: 300px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: ctaPulse 2s ease-in-out infinite, ctaShimmer 3s linear infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 6px 25px rgba(255, 215, 0, 0.5),
            0 3px 10px rgba(0, 0, 0, 0.15);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 
            0 8px 30px rgba(255, 215, 0, 0.6),
            0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

@keyframes ctaShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-cta-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.countdown-wrapper {
    margin-top: 1.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.countdown-timer {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    color: #ffd700;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.7),
        0 0 30px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    animation: timerGlow 2s ease-in-out infinite;
}

@keyframes timerGlow {
    0%, 100% { 
        text-shadow: 
            0 0 15px rgba(255, 215, 0, 0.7),
            0 0 30px rgba(255, 215, 0, 0.4);
    }
    50% { 
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.9),
            0 0 40px rgba(255, 215, 0, 0.6);
    }
}

.countdown-digit {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    min-width: 3rem;
    display: inline-block;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    animation: countdownPulse 1s ease-in-out infinite;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes countdownPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
        transform: scale(1.05);
    }
}

/* Emotional Motivation Section */
.landing-motivation {
    padding: 2rem 0;
    background: linear-gradient(135deg, #fff7e6 0%, #fffbf0 100%);
    position: relative;
    z-index: 1;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.motivation-box {
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.motivation-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: motivationGlow 4s ease-in-out infinite;
}

@keyframes motivationGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.motivation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: motivationIconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.4));
}

@keyframes motivationIconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

.motivation-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Benefits Section */
.landing-benefits {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.benefit-item {
    padding: 1rem 0.5rem;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.benefit-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
}

/* Trust Section */
.landing-trust {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.trust-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.payment-logos-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.payment-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 10px;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease;
    min-width: 70px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-logo-item:active {
    transform: scale(0.95);
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.payment-logo {
    background: #f3f4f6;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: #10b981;
    color: #ffffff;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Testimonial */
.landing-testimonial {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.testimonial-box {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(220, 38, 38, 0.1);
    border-left: 5px solid #dc2626;
    max-width: 650px;
    margin: 0 auto 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.testimonial-box-second {
    border-left-color: #ffd700;
    margin-bottom: 0;
}

.testimonial-box:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.15),
        0 6px 16px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

.testimonial-avatar {
    flex-shrink: 0;
    position: relative;
}

.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #ffd700;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.2);
    object-fit: cover;
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { 
        box-shadow: 
            0 6px 20px rgba(255, 215, 0, 0.4),
            0 0 0 2px rgba(255, 215, 0, 0.2);
    }
    50% { 
        box-shadow: 
            0 8px 25px rgba(255, 215, 0, 0.6),
            0 0 0 3px rgba(255, 215, 0, 0.3);
    }
}

.avatar-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ffd700 0%, #fbbf24 100%);
    color: #1a1a1a;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.testimonial-content {
    flex: 1;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: #dc2626;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-size: 1rem;
    color: #dc2626;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Secondary CTA */
.landing-cta-secondary {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.cta-secondary-button {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 
        0 4px 15px rgba(220, 38, 38, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    min-width: 240px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-secondary-button:active {
    transform: scale(0.98);
}

.cta-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Games Section */
.landing-games {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.games-title {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #ffd700;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.2);
    animation: gamesTitleGlow 3s ease-in-out infinite;
}

@keyframes gamesTitleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.4),
            0 2px 10px rgba(0, 0, 0, 0.2);
    }
    50% { 
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.6),
            0 2px 15px rgba(0, 0, 0, 0.3);
    }
}

.games-caption {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 0 2rem;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.game-icon-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.game-icon-item:active {
    transform: scale(0.95);
    border-color: rgba(255, 215, 0, 0.5);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: gameIconPulse 2s ease-in-out infinite;
}

@keyframes gameIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.game-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.jackpot-visual {
    background: linear-gradient(135deg, #ffd700 0%, #fbbf24 50%, #ffd700 100%);
    background-size: 200% 100%;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    max-width: 450px;
    margin: 0 auto;
    animation: jackpotGlow 2s ease-in-out infinite, jackpotShimmer 3s linear infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.jackpot-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: jackpotRotate 4s linear infinite;
}

@keyframes jackpotRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes jackpotShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes jackpotGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    }
    50% { 
        box-shadow: 0 4px 30px rgba(255, 215, 0, 0.7);
    }
}

.jackpot-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jackpot-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.5);
    animation: jackpotAmountPulse 1.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes jackpotAmountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: block;
}

.sticky-cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #dc2626 100%);
    background-size: 200% 100%;
    color: #ffffff;
    padding: 1.25rem;
    border-radius: 14px;
    font-size: 1.125rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    box-shadow: 
        0 6px 25px rgba(220, 38, 38, 0.5),
        0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: stickyCtaPulse 2s ease-in-out infinite, stickyCtaShimmer 3s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes stickyCtaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 6px 25px rgba(220, 38, 38, 0.5),
            0 3px 10px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: scale(1.01);
        box-shadow: 
            0 8px 30px rgba(220, 38, 38, 0.6),
            0 4px 15px rgba(0, 0, 0, 0.25);
    }
}

@keyframes stickyCtaShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.sticky-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sticky-cta-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .landing-container {
        max-width: 720px;
        padding: 0 2rem;
    }
    
    .landing-logo {
        height: 50px;
    }
    
    .landing-hero {
        padding: 4rem 0 5rem;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-subtext {
        font-size: 1.25rem;
    }
    
    .hero-cta-button {
        font-size: 1.25rem;
        padding: 1.25rem 2.5rem;
        min-width: 320px;
    }
    
    .countdown-timer {
        font-size: 2.25rem;
    }
    
    .benefits-grid {
        gap: 2rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-label {
        font-size: 1rem;
    }
    
    .testimonial-box {
        padding: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1.125rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 800px;
    }
    
    .games-title {
        font-size: 2rem;
    }
    
    .jackpot-amount {
        font-size: 2.5rem;
    }
    
    .sticky-cta {
        display: none; /* Hide on desktop */
    }
    
    .landing-turkish {
        padding-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .landing-container {
        max-width: 960px;
    }
    
    .hero-headline {
        font-size: 3.5rem;
    }
}

/* Animation for bounce effect */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}


