/* Modern Casino Landing Page Styles */
:root {
    /* Color Palette */
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-bg: #2a2a2a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.1);
    
    /* Gradient Colors - ORIGINAL */
    --gradient-primary: linear-gradient(135deg, #ff007f, #ff8c00);
    --gradient-secondary: linear-gradient(135deg, #00d4ff, #7c3aed);
    --gradient-accent: linear-gradient(135deg, #ff6b6b, #ffd93d);
    --gradient-success: linear-gradient(135deg, #00ff88, #00b4d8);
    --gradient-glow: linear-gradient(135deg, #ff007f, #00d4ff, #7c3aed, #ff8c00);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --text-accent: #ff007f;
    
    /* Spacing */
    --container-padding: clamp(1.5rem, 4vw, 2.5rem);
    --section-padding: clamp(4rem, 8vw, 8rem);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Orbitron', monospace;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-neon: 0 0 20px rgba(255, 0, 127, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.3);
    
    /* Borders */
    --border-glass: 1px solid rgba(255, 255, 255, 0.1);
    --border-glow: 1px solid rgba(255, 0, 127, 0.3);
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Global smooth rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: smooth;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background: 
        /* Noise pattern for dithering */
        repeating-linear-gradient(0deg, 
            transparent 0px, 
            rgba(255, 255, 255, 0.002) 1px, 
            transparent 2px, 
            rgba(0, 0, 0, 0.002) 3px, 
            transparent 4px),
        radial-gradient(ellipse at 25% 25%, 
            rgba(255, 0, 127, 0.15) 0%, 
            rgba(255, 0, 127, 0.12) 15%, 
            rgba(255, 0, 127, 0.09) 25%, 
            rgba(255, 0, 127, 0.06) 35%, 
            rgba(255, 0, 127, 0.04) 40%, 
            rgba(255, 0, 127, 0.02) 45%, 
            transparent 50%),
        radial-gradient(ellipse at 75% 75%, 
            rgba(0, 212, 255, 0.15) 0%, 
            rgba(0, 212, 255, 0.12) 15%, 
            rgba(0, 212, 255, 0.09) 25%, 
            rgba(0, 212, 255, 0.06) 35%, 
            rgba(0, 212, 255, 0.04) 40%, 
            rgba(0, 212, 255, 0.02) 45%, 
            transparent 50%),
        radial-gradient(ellipse at 50% 50%, 
            rgba(124, 58, 237, 0.10) 0%, 
            rgba(124, 58, 237, 0.08) 20%, 
            rgba(124, 58, 237, 0.06) 30%, 
            rgba(124, 58, 237, 0.04) 40%, 
            rgba(124, 58, 237, 0.02) 45%, 
            rgba(124, 58, 237, 0.01) 48%, 
            transparent 50%),
        var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    /* Ultra-smooth rendering with dithering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    filter: contrast(1.01) saturate(1.02);
}

/* Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-glass);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--container-padding);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 127, 0.5));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.6);
}

.btn-mega {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: white;
    border-radius: 60px;
    box-shadow: 
        0 0 30px rgba(255, 0, 127, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

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

.btn-mega:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 50px rgba(255, 0, 127, 0.8),
        0 30px 60px rgba(0, 0, 0, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: var(--transition-normal);
    border-radius: inherit;
}

.btn-mega:hover .btn-glow {
    opacity: 0.2;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(255, 0, 127, 0.35) 0%, 
        rgba(255, 0, 127, 0.25) 25%, 
        rgba(255, 0, 127, 0.15) 45%, 
        rgba(255, 0, 127, 0.05) 65%, 
        transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    filter: blur(0.5px);
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(0, 212, 255, 0.35) 0%, 
        rgba(0, 212, 255, 0.25) 25%, 
        rgba(0, 212, 255, 0.15) 45%, 
        rgba(0, 212, 255, 0.05) 65%, 
        transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
    filter: blur(0.5px);
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, 
        rgba(124, 58, 237, 0.35) 0%, 
        rgba(124, 58, 237, 0.25) 25%, 
        rgba(124, 58, 237, 0.15) 45%, 
        rgba(124, 58, 237, 0.05) 65%, 
        transparent 70%);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
    filter: blur(0.5px);
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    justify-items: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid rgba(255, 0, 127, 0.3);
    border-radius: 50px;
    color: var(--text-accent);
    font-weight: 600;
    font-size: 0.8rem;
    margin: 0 auto 1.5rem auto;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 10;
    width: fit-content;
    text-align: center;
    align-self: center;
    justify-self: center;
}

.badge-icon {
    font-size: 1rem;
    animation: bounce 1s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-small {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 500;
}

.title-main {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 0, 127, 0.5);
}

.title-sub {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bonus-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.bonus-features .feature-icon,
.feature-card .feature-icon {
    font-size: 1.2rem;
}

/* Typewriter Effect */
.typewriter {
    display: inline-block;
    opacity: 1;
    overflow: visible;
    white-space: nowrap;
}

.typewriter.typing {
    opacity: 1;
}

.typewriter.typing-complete {
    opacity: 1;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.hero-character {
    position: relative;
    width: clamp(450px, 52.5vw, 750px);
    height: clamp(450px, 52.5vw, 750px);
    max-width: 750px;
    max-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.zeus-character {
    width: 100%;
    height: 100%;
    position: relative;
    background: transparent;
    border-radius: 0;
}

.zeus-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    /* Ultra-smooth container */
    filter: blur(0.1px) contrast(1.03);
    transform: translateZ(0) scale(1.0001);
    will-change: transform;
}

.zeus-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)) 
            drop-shadow(0 0 15px rgba(255, 215, 0, 0.4))
            drop-shadow(0 0 5px rgba(255, 215, 0, 0.8))
            blur(0.3px)
            contrast(1.05)
            saturate(1.1);
    animation: zeusGlow 3s ease-in-out infinite;
    
    /* Ultra-smooth rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: smooth;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform: translateZ(0) scale(1.001);
    will-change: transform, filter;
    
    /* Anti-aliasing tricks */
    border-radius: 0.1px;
    outline: 1px solid transparent;
}

.zeus-lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.lightning {
    position: absolute;
    font-size: 2rem;
    color: #00d4ff;
    text-shadow: 0 0 20px #00d4ff;
    animation: lightningStrike 2s ease-in-out infinite;
}

.lightning-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.lightning-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.7s;
}

.lightning-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1.4s;
}



.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    animation: floatCoin 4s ease-in-out infinite;
}

.coin-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.coin-2 {
    top: 30%;
    right: 10%;
    animation-delay: 1s;
}

.coin-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.coin-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
}

/* Bonus Selection Section */
.bonus-selection {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.title-glow {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.bonus-card {
    background: var(--card-bg);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(20px);
}

.bonus-card::before,
.bonus-card::after {
    display: none !important;
    content: none !important;
    background: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.bonus-card:hover::before {
    opacity: 0.1;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 127, 0.5);
}

.bonus-card.featured {
    border-color: rgba(255, 0, 127, 0.5);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.2);
    transform: scale(1.05);
}

.bonus-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bonus-badge {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4), 0 0 30px rgba(255, 0, 127, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    margin: 0 auto 18px auto;
}

.bonus-card.featured .bonus-badge {
    background: var(--gradient-success);
    animation: pulse 2s infinite;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.6), 0 0 40px rgba(0, 255, 136, 0.3);
}

.bonus-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.bonus-icon span {
    font-size: 56px;
    line-height: 1;
    display: block;
    position: relative;
    z-index: 1;
}

.bonus-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, #5eeaff55 0%, #0000 80%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}

.bonus-card.featured .bonus-icon::before {
    background: radial-gradient(circle, #ffe06655 0%, #0000 80%);
}

.bonus-card:last-child .bonus-icon::before {
    background: radial-gradient(circle, #ffd70055 0%, #0000 80%);
}

.bonus-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-display);
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.plus {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.freespins {
    font-size: 1.5rem;
    color: var(--text-accent);
    font-weight: 700;
}

.bonus-features {
    margin-bottom: 2rem;
    text-align: left;
}

.bonus-features .feature {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.bonus-features .feature:last-child {
    border-bottom: none;
}

.bonus-features .feature.popular {
    color: var(--text-accent);
}

.bonus-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

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

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

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.4);
}

/* Features Section */
.features-section {
    padding: var(--section-padding) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: var(--border-glass);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
}

.feature-card .feature-icon {
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.3;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    padding-bottom: calc(var(--section-padding) + 2rem);
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-gradient {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, 
            rgba(255, 0, 127, 0.12) 0%, 
            rgba(255, 0, 127, 0.08) 35%, 
            rgba(255, 0, 127, 0.04) 55%, 
            transparent 70%),
        radial-gradient(ellipse at 30% 70%, 
            rgba(0, 212, 255, 0.12) 0%, 
            rgba(0, 212, 255, 0.08) 35%, 
            rgba(0, 212, 255, 0.04) 55%, 
            transparent 70%);
    /* Smooth gradient rendering */
    filter: blur(0.3px);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    width: 100%;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.badge-icon {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    position: relative;
    background: var(--primary-bg);
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-bg) 100%);
    z-index: -1;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 25% 25%, 
            rgba(255, 0, 127, 0.08) 0%, 
            rgba(255, 0, 127, 0.04) 30%, 
            transparent 50%),
        radial-gradient(ellipse at 75% 75%, 
            rgba(0, 212, 255, 0.08) 0%, 
            rgba(0, 212, 255, 0.04) 30%, 
            transparent 50%),
        radial-gradient(ellipse at 50% 50%, 
            rgba(124, 58, 237, 0.06) 0%, 
            rgba(124, 58, 237, 0.03) 30%, 
            transparent 50%);
    z-index: -1;
    /* Smooth gradient rendering */
    filter: blur(0.2px);
}

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

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.footer-section a:hover {
    color: var(--text-accent);
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

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

.security-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.security-badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.security-badge:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

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

@keyframes floatCoin {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 127, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 127, 0.8); }
}

@keyframes zeusGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 60px rgba(0, 212, 255, 0.4));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(255, 215, 0, 1)) drop-shadow(0 0 80px rgba(0, 212, 255, 0.6));
        transform: scale(1.05);
    }
}

@keyframes lightningStrike {
    0%, 90%, 100% { 
        opacity: 0;
        transform: scale(1);
    }
    5%, 85% { 
        opacity: 1;
        transform: scale(1.2);
        text-shadow: 0 0 30px #00d4ff, 0 0 60px #00d4ff;
    }
}

/* Responsive Design */

/* Large Screens */
@media (min-width: 1440px) {
    .section-container {
        max-width: 1400px;
        padding: 0 4rem;
    }
    
    .hero-container {
        gap: 3rem;
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .hero-content {
        max-width: 800px;
    }
}

/* Medium Large Screens */
@media (min-width: 1200px) and (max-width: 1439px) {
    .section-container {
        max-width: 1200px;
        padding: 0 3rem;
    }
    
    .hero-container {
        gap: 2.5rem;
    }
    
    .hero-content {
        max-width: 750px;
    }
}

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .section-container {
        max-width: 1000px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-character {
        width: clamp(350px, 35vw, 450px);
        height: clamp(350px, 35vw, 450px);
    }
}

/* Tablets Portrait */
@media (max-width: 1024px) {
    .section-container {
        padding: 0 3rem;
    }
    
    /* CTA section'ı bu padding'den muaf tut */
    .cta-section .section-container {
        padding: 0 !important;
        margin: 0 auto !important;
    }
    
    .cta-section {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .cta-content {
        margin: 0 auto !important;
        text-align: center !important;
        max-width: 600px !important;
        width: 100% !important;
    }
    
    .hero-container {
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-character {
        width: clamp(350px, 45vw, 450px);
        height: clamp(350px, 45vw, 450px);
    }
    
    .hero-content {
        padding-left: 3rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .bonus-card {
        max-width: 100%;
    }
    
    .bonus-card.featured {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
        transform: none;
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Performance Optimizations */
.hero-character,
.gradient-orb,
.floating-coins {
    will-change: transform;
}

.btn-mega,
.bonus-card,
.game-card,
.feature-card {
    will-change: transform, box-shadow;
}

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

/* Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--text-accent);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .hero-visual,
    .floating-coins,
    .gradient-orb {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Tablet Responsive - TAMAMEN YENİ */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 2rem;
        max-width: 100%;
    }
    
    .hero-content {
        padding: 0;
        max-width: 100%;
    }
    
    .hero-character {
        width: clamp(350px, 40vw, 450px);
        height: clamp(350px, 40vw, 450px);
    }
    
    .section-container {
        padding: 0 2rem;
    }
}

/* iPad Air Özel Düzeltme - YENİ */
@media (min-width: 800px) and (max-width: 850px) and (min-height: 1150px) and (max-height: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        max-width: 90%;
        margin: 0 auto;
        justify-items: center;
        align-items: center;
    }
    
    .hero-visual {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-character {
        width: clamp(480px, 67.5vw, 600px);
        height: clamp(480px, 67.5vw, 600px);
    }
    
    .zeus-container {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        overflow: visible;
        filter: blur(0.1px) contrast(1.03);
        transform: translateZ(0) scale(1.0001);
        will-change: transform;
    }
    
    .zeus-gif {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: smooth;
        -webkit-font-smoothing: antialiased;
        transform: translateZ(0) scale(1.001);
        filter: blur(0.3px) contrast(1.05) saturate(1.1);
        border-radius: 0.1px;
        outline: 1px solid transparent;
        will-change: transform, filter;
    }
}

/* Mobile ve Küçük Tablet Responsive - DÜZELTİLDİ */
@media (max-width: 768px) {
    .section-container {
        padding: 0 1rem;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .cta-section {
        padding: 4rem 0 !important;
        width: 100vw !important;
        margin: 0 !important;
        position: relative;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        display: grid !important;
        place-items: center !important;
        min-height: auto !important;
    }
    
    .cta-section .section-container {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        place-items: center !important;
    }
    
    .hero {
        padding: 1rem 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
        justify-items: center;
        align-items: center;
        min-height: auto;
    }
    
    .hero-content {
        order: 2;
        padding: 0;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-visual {
        order: 1;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .hero-character {
        width: clamp(420px, 75vw, 525px);
        height: clamp(420px, 75vw, 525px);
        margin: 0 auto;
    }
    
    .zeus-container {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        overflow: visible;
        filter: blur(0.1px) contrast(1.03);
        transform: translateZ(0) scale(1.0001);
        will-change: transform;
    }
    
    .zeus-gif {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: smooth;
        -webkit-font-smoothing: antialiased;
        transform: translateZ(0) scale(1.001);
        filter: blur(0.3px) contrast(1.05) saturate(1.1);
        border-radius: 0.1px;
        outline: 1px solid transparent;
        will-change: transform, filter;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .title-small {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }
    
    .title-main {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .title-sub {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .btn-mega {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        justify-self: center !important;
        place-self: center !important;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .bonus-card {
        padding: 1.5rem;
        margin: 0;
        max-width: 100%;
    }
    
    .bonus-card.featured {
        grid-column: auto;
        order: 1;
        transform: none;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin: 0;
        max-width: 100%;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .cta-content {
        width: 100% !important;
        max-width: 90% !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 0 1rem !important;
        display: grid !important;
        gap: 1rem !important;
        place-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    
    .cta-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem) !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: block !important;
        justify-self: center !important;
    }
    
    .cta-description {
        font-size: 1.1rem !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: block !important;
        justify-self: center !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }
}

/* Çok Küçük Mobil Cihazlar - DÜZELTİLDİ */
@media (max-width: 480px) {
    .section-container {
        padding: 0 0.75rem;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .hero {
        padding: 0.5rem 0;
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .hero-character {
        width: clamp(375px, 90vw, 450px);
        height: clamp(375px, 90vw, 450px);
    }
    
    .title-small {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }
    
    .title-main {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }
    
    .title-sub {
        font-size: clamp(1rem, 3vw, 1.6rem);
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .btn-mega {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .bonus-card {
        padding: 1.25rem;
        max-width: 100%;
        min-height: 150px;
    }
    
    .feature-card {
        padding: 1.25rem;
        max-width: 100%;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .bonus-amount {
        margin: 1rem 0;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .freespins {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    }
    
    .cta-description {
        font-size: 1rem !important;
    }
    
    .cta-content {
        width: 100% !important;
        max-width: 95% !important;
        margin: 0 auto !important;
        padding: 0 0.75rem !important;
    }
}

/* Zeus container - overflow kaldırıldı, gif kare görünme sorunu çözüldü */

/* Global Anti-Aliasing Rules - ULTRA SMOOTH */
img, 
.zeus-gif, 
canvas, 
video {
    image-rendering: -moz-crisp-edges !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    image-rendering: smooth !important;
    image-rendering: auto !important;
    -ms-interpolation-mode: bicubic !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    filter: blur(0.1px) !important;
}

/* Zeus Ultra-Smooth Override */
.zeus-gif {
    /* Extreme anti-aliasing */
    filter: blur(0.3px) contrast(1.05) saturate(1.1) !important;
    image-rendering: smooth !important;
    transform: translateZ(0) scale(1.001) !important;
    border-radius: 0.05px !important;
    outline: 0.5px solid transparent !important;
    box-shadow: inset 0 0 0 0.1px rgba(255,255,255,0.01) !important;
    will-change: transform, filter !important;
} 