/* ===== LISC - ULTRA MODERN FULL WIDTH DESIGN ===== */

/* Reset ve Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    width: 100vw;
}

/* Container Override - GERÇEK FULL WIDTH */
.container,
.container-fluid {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Override all section containers for full width */
section > .container,
section > .container-fluid,
.hero-content,
.gallery-container,
.video-wrapper,
.about-wrapper,
.features-section > div {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 3% !important;
    margin: 0 !important;
}

/* Special override for animations container */
.animations-showcase .container-fluid {
    padding: 0 !important;
}

/* Ensure full width for animations section */
.animations-showcase .animations-header,
.animations-showcase .animations-content {
    width: 100% !important;
    max-width: 100% !important;
}

/* Page Transitions */
* {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

main {
    width: 100vw;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    background: #0f0f0f;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Header'ı full width yap */
header {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
}

/* ===== HERO SECTION - EPIC MODERN DESIGN ===== */
.hero-banner {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f0f0f;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Background Overlay for better text visibility */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(1px);
    z-index: 1;
}

/* Remove old animation styles */
.hero-bg-animation,
.bg-layer-1,
.bg-layer-2,
.bg-layer-3 {
    display: none !important;
}

/* Initial Animation */
@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main-content > * {
    animation: heroFadeIn 1s ease-out;
    animation-fill-mode: both;
}

.logo-container-epic { animation-delay: 0.2s; }
.hero-title-epic { animation-delay: 0.4s; }
.hero-tagline-epic { animation-delay: 0.6s; }
.platform-badges-epic { animation-delay: 0.8s; }
.hero-actions { animation-delay: 1s; }
.age-warning-epic { animation-delay: 1.2s; }

/* Epic Animated Background */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 25%, #462374 50%, #693c7d 75%, #e94a7a 100%);
    background-size: 400% 400%;
    animation: epicGradient 20s ease infinite;
}

.bg-layer-1, .bg-layer-2, .bg-layer-3 {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
}

.bg-layer-1 {
    background: radial-gradient(circle at 20% 50%, rgba(233, 74, 122, 0.3) 0%, transparent 50%);
    animation: float1 15s ease-in-out infinite;
}

.bg-layer-2 {
    background: radial-gradient(circle at 80% 50%, rgba(105, 60, 125, 0.3) 0%, transparent 50%);
    animation: float2 20s ease-in-out infinite;
}

.bg-layer-3 {
    background: radial-gradient(circle at 50% 50%, rgba(70, 35, 116, 0.2) 0%, transparent 70%);
    animation: float3 25s ease-in-out infinite;
}

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

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 50px) scale(1.1); }
    66% { transform: translate(50px, -50px) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(0, 100px) scale(1.2); }
}

/* Additional Background Effects */
.hero-bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-bg-animation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.8), transparent);
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-main-content {
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

/* Epic Logo Container - Keep as is */
.logo-container-epic {
    position: relative;
    margin-bottom: 15px;  /* Reduced even more */
    display: inline-block;
}

.main-logo-epic {
    width: 450px;
    max-width: 85vw;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 50px rgba(233, 74, 122, 0.8))
            drop-shadow(0 0 100px rgba(105, 60, 125, 0.5));
    animation: epicLogoFloat 6s ease-in-out infinite;
}

@keyframes epicLogoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.logo-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(233, 74, 122, 0.5) 0%, rgba(105, 60, 125, 0.3) 40%, transparent 70%);
    filter: blur(60px);
    animation: epicGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes epicGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Logo Particles */
.logo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.logo-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: particle 10s linear infinite;
}

.logo-particles span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.logo-particles span:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; }
.logo-particles span:nth-child(3) { top: 60%; left: 10%; animation-delay: 2s; }
.logo-particles span:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.logo-particles span:nth-child(5) { top: 90%; left: 30%; animation-delay: 4s; }
.logo-particles span:nth-child(6) { top: 30%; left: 50%; animation-delay: 5s; }

@keyframes particle {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    10% { transform: translateY(-20px) scale(1); opacity: 1; }
    90% { transform: translateY(-300px) scale(1); opacity: 1; }
    100% { transform: translateY(-400px) scale(0); opacity: 0; }
}

/* SEASON 1 - 3D Bubble Gum Style */
.season-title-3d {
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 900;
    margin: -10px 0 50px;  /* Negative margin to move up closer to logo */
    line-height: 1;
    position: relative;
    text-align: center;
    font-family: 'Arial Black', 'Impact', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.season-text {
    display: inline-block;
    color: #FF69B4;  /* Direct bubble gum pink color */
    position: relative;
    /* 3D effect with bubble gum pink shadows */
    text-shadow: 
        2px 2px 0px #FF1493,
        4px 4px 0px #FFB6C1,
        6px 6px 0px #FFC0CB,
        8px 8px 0px #FFDDEE,
        10px 10px 20px rgba(255, 105, 180, 0.3),
        0 0 40px rgba(255, 105, 180, 0.2);
    /* Subtle 3D transform */
    transform: perspective(800px) rotateY(-10deg) rotateX(3deg);
    letter-spacing: 0.08em;
    animation: float 8s ease-in-out infinite;
    -webkit-text-stroke: 1px rgba(255, 20, 147, 0.3);
}

/* Remove stroke effect - we'll use direct color instead */
.season-text::before {
    display: none;
}

/* Soft glow layer */
.season-text::after {
    content: 'SEASON 1';
    position: absolute;
    top: 0;
    left: 0;
    color: #FF69B4;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.4;
}

/* Remove bubbleShine animation since we're not using gradient */
@keyframes float {
    0%, 100% { 
        transform: perspective(800px) rotateY(-10deg) rotateX(3deg) translateY(0);
    }
    25% { 
        transform: perspective(800px) rotateY(-8deg) rotateX(2deg) translateY(-5px);
    }
    75% { 
        transform: perspective(800px) rotateY(-12deg) rotateX(4deg) translateY(3px);
    }
}

/* Epic Tagline */
.hero-tagline-epic {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #FFD700;
    margin: 0 0 50px;
    font-weight: 600;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    letter-spacing: 1px;
}

.fire-emoji {
    display: inline-block;
    font-size: 1.5em;
    animation: fireWobble 1s ease-in-out infinite;
}

@keyframes fireWobble {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

/* Modern Platform Badges - Premium Design */
.platform-badges-modern {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.modern-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    border: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

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

.btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 6px;
}

.btn-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-text {
    position: relative;
    z-index: 2;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

/* Patreon Modern Button - Premium Style */
.patreon-modern {
    background: linear-gradient(135deg, #FF424D 0%, #F96854 50%, #FF6B6B 100%);
    box-shadow: 0 10px 30px rgba(249, 104, 84, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.patreon-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 104, 84, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

.patreon-modern .btn-hover-effect {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.patreon-modern:hover .btn-hover-effect {
    width: 400px;
    height: 400px;
}

/* Steam Modern Button - Premium Style */
.steam-modern {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 50%, #66c0f4 100%);
    box-shadow: 0 10px 30px rgba(102, 192, 244, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.steam-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 192, 244, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

.steam-modern .btn-hover-effect {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.steam-modern:hover .btn-hover-effect {
    width: 400px;
    height: 400px;
}

/* Remove unwanted elements */
.platform-badges-epic,
.platform-btn,
.hero-tagline-epic,
.hero-actions,
.age-warning-epic,
.hero-title-epic {
    display: none !important;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.action-btn {
    position: relative;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    overflow: hidden;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

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

.action-btn:hover .btn-shine {
    left: 100%;
}

.play-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FF1493 100%);
    color: #fff;
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.4);
}

.play-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(255, 20, 147, 0.6),
        0 0 100px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.gallery-btn {
    background: transparent;
    color: #FF1493;
    border: 3px solid #FF1493;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
}

.gallery-btn:hover {
    background: #FF1493;
    color: #fff;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(255, 20, 147, 0.6),
        0 0 100px rgba(255, 20, 147, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: transparent;
}

.btn-icon {
    font-size: 1.5rem;
}

/* Age Warning Epic */
.age-warning-epic {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: rgba(255, 0, 0, 0.2);
    border: 3px solid #ff0000;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: warningPulse 2s ease-in-out infinite;
}

.warning-badge {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.warning-text {
    font-weight: 600;
    color: #FFD700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes warningPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
    }
}

/* ===== ABOUT SECTION - TAMAMEN YENİ SPLIT DESIGN ===== */
.about-section {
    width: 100vw;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #0a0a0a 100%);
    overflow: hidden;
    padding: 120px 0;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 20, 147, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 20, 147, 0.1) 25%, transparent 25%);
    background-size: 50px 50px;
    opacity: 0.3;
}

.about-wrapper {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.about-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 3%;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.gradient-text {
    background: linear-gradient(45deg, #FF1493, #FFD700, #FF1493);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s linear infinite;
}

.title-icon {
    font-size: 1.2em;
    vertical-align: middle;
}

/* About Grid - Farklı Boyutlarda Kartlar */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    width: 100%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 2px solid rgba(255, 20, 147, 0.4);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF1493, #FFD700, #FF1493);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

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

.about-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconBounce 3s ease-in-out infinite;
}

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

.about-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFD700;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.story-card {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2) 0%, rgba(255, 105, 180, 0.1) 100%);
}

.gameplay-card {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.2) 0%, rgba(138, 43, 226, 0.1) 100%);
}

.features-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 20, 147, 0.1) 100%);
}

.premium-features {
    list-style: none;
    margin-top: 20px;
}

.premium-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature-icon {
    color: #FFD700;
    font-size: 1.2em;
}

/* ===== FEATURES SECTION - MASONRY GRID DESIGN ===== */
.features-section {
    width: 100vw;
    padding: 100px 0;
    background: linear-gradient(to bottom, #0a0a0a, #1a0033);
    position: relative;
}

.center-title {
    text-align: center;
}

.neon-text {
    color: #FF1493;
    text-shadow: 
        0 0 10px #FF1493,
        0 0 20px #FF1493,
        0 0 30px #FF1493,
        0 0 40px #FF1493;
    animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Features Masonry Grid */
.features-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.3) 0%, transparent 70%);
    transition: all 0.5s;
    transform: translate(-50%, -50%);
}

.feature-card:hover::after {
    width: 300px;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 20, 147, 0.1);
    border-color: #FF1493;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px currentColor);
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFD700;
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Kinks/Tags Section */
.kinks-section {
    text-align: center;
    margin-top: 80px;
}

.kinks-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #FF1493;
}

.kinks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.kink-tag {
    padding: 12px 25px;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.8), rgba(255, 215, 0, 0.8));
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.kink-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.kink-tag:hover::before {
    width: 100%;
    height: 100%;
}

.kink-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

/* ===== GALLERY SECTION - PINTEREST STYLE ===== */
.gallery-showcase {
    width: 100vw;
    padding: 100px 0;
    background: #000;
    position: relative;
}

.fire-text {
    color: #FF4500;
    font-weight: 900;
    text-shadow: 
        0 0 10px #FF4500,
        0 0 20px #FF4500,
        0 0 30px #FFD700;
    animation: fireFlicker 1.5s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
    0% { text-shadow: 0 0 10px #FF4500, 0 0 20px #FF4500, 0 0 30px #FFD700; }
    100% { text-shadow: 0 0 20px #FF4500, 0 0 30px #FF4500, 0 0 40px #FFD700; }
}

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

.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gallery-item-new {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 16/9;
    background: #1a1a1a;
}

.gallery-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-item-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item-new:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 20, 147, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item-new:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.gallery-item-new:hover .overlay-content {
    transform: translateY(0);
}

.view-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.view-text {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.save-btn-new {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #FF1493;
    border-radius: 50%;
    color: #FF1493;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.save-btn-new:hover {
    background: #FF1493;
    color: #fff;
    transform: scale(1.1);
}

.save-btn-new.saved {
    background: #FF1493;
    color: #fff;
}

.save-btn-new svg {
    width: 20px;
    height: 20px;
}

/* ===== ANIMATIONS SECTION - PREMIUM REDESIGN ===== */
.animations-showcase {
    width: 100vw;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding-bottom: 0 !important;
}

/* Animated Background */
.animations-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.05) 0%, transparent 60%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.animations-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Header Styling */
.animations-header {
    text-align: center;
    margin-bottom: 80px;
}

.animations-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-gradient {
    background: linear-gradient(90deg, #FFD700, #FF69B4, #FF1493, #FF69B4, #FFD700);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientSlide 4s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.4));
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.title-underline {
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FF1493, transparent);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

/* Content Layout */
.animations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0;
    width: 100%;
}

/* Video Section */
.video-showcase-wrapper {
    position: relative;
}

.video-container-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px rgba(255, 20, 147, 0.3);
    border: 3px solid rgba(255, 20, 147, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container-premium:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    border-color: rgba(255, 20, 147, 0.5);
    box-shadow: 0 40px 100px rgba(255, 20, 147, 0.4);
}

.animation-video {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 20, 147, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Play button and character name removed - keeping styles for potential future use
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 20, 147, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
}

.play-button-overlay:hover {
    background: #FF1493;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.7);
}

.play-button-overlay svg {
    width: 30px;
    height: 30px;
    color: #fff;
    margin-left: 5px;
}

.character-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 2;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
*/

.video-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

/* Text Content */
.animations-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.video-showcase-wrapper {
    position: relative;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.highlight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #FFD700;
    font-weight: 600;
    padding-left: 20px;
    border-left: 4px solid #FFD700;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.passion-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF69B4;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
    margin: 20px 0;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 2px solid #FF1493;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.3), transparent);
    transition: left 0.6s;
}

.feature-highlight:hover::before {
    left: 100%;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
}

.star-icon {
    font-size: 3rem;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.feature-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

/* Stats Section */
.animations-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s;
    min-width: 150px;
}

.stat-item:hover {
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-5px);
    border-color: #FF1493;
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #FF1493;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FINAL CTA - EXPLOSIVE DESIGN ===== */
.final-cta {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.4) 0%, transparent 40%);
    animation: ctaPulse 3s ease-in-out infinite;
}

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

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFD700, #FF1493, #FFD700);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite;
}

.cta-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mega-cta-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #DC143C, #FF1493, #FFD700);
    background-size: 300% 300%;
    animation: btnGradientMove 3s ease infinite;
    border-radius: 60px;
}

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

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 60px;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.btn-icon {
    font-size: 1.8rem;
}

.mega-cta-btn:hover .btn-bg {
    animation-duration: 1s;
}

.mega-cta-btn:hover {
    transform: scale(1.05);
}

.platform-links {
    display: flex;
    gap: 20px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.platform-link svg {
    width: 24px;
    height: 24px;
}

.platform-link.patreon:hover {
    background: #f96854;
    border-color: #f96854;
}

.platform-link.steam:hover {
    background: #66c0f4;
    border-color: #66c0f4;
}

/* ===== ANIMATIONS ===== */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for Animations Section */
@media (max-width: 1200px) {
    .animations-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .video-container-premium {
        transform: none;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .animations-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 1 calc(33.33% - 20px);
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .animations-showcase {
        padding: 60px 0;
    }
    
    .animations-header {
        margin-bottom: 50px;
    }
    
    .animations-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .animations-content {
        padding: 0;
    }
    
    .character-name {
        font-size: 2rem;
    }
    
    .lead-text,
    .highlight-text {
        font-size: 1.1rem;
    }
    
    .passion-text {
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-highlight {
        padding: 20px;
        gap: 15px;
    }
    
    .star-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .animations-content {
        gap: 40px;
    }
    
    .play-button-overlay {
        width: 60px;
        height: 60px;
    }
    
    .play-button-overlay svg {
        width: 24px;
        height: 24px;
    }
    
    .animations-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        width: 100%;
        padding: 20px 30px;
    }
    
    .title-underline {
        width: 200px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card {
        grid-column: span 1;
    }
    
    .features-masonry {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .gallery-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item-new.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .platform-badges {
        position: relative;
        top: 0;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-content,
    .gallery-container,
    .video-wrapper {
        padding: 0 20px;
    }
    
    .features-masonry {
        gap: 15px;
        padding: 0 20px;
    }
    
    .kinks-grid {
        gap: 10px;
    }
    
    .kink-tag {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-banner {
        min-height: 100vh;
    }
    
    .main-logo-epic {
        width: 200px;
        margin-bottom: 10px;
    }
    
    /* Season 1 Extra Small */
    .season-title-3d {
        font-size: clamp(3rem, 14vw, 5rem);
        margin: -5px 0 25px;  /* Keep it close to logo on small screens */
    }
    
    .season-text {
        color: #FF69B4;
        letter-spacing: 0.05em;
        text-shadow: 
            1px 1px 0px #FF1493,
            2px 2px 0px #FFB6C1,
            3px 3px 0px #FFC0CB,
            4px 4px 10px rgba(255, 105, 180, 0.2);
        transform: perspective(500px) rotateY(-6deg) rotateX(2deg);
        -webkit-text-stroke: none;
    }
    
    .season-text::before {
        display: none;
    }
    
    .season-text::after {
        filter: blur(12px);
        opacity: 0.3;
    }
    
    .platform-badges-modern {
        gap: 15px;
        margin-top: 30px;
    }
    
    .modern-btn {
        padding: 14px 28px;
        font-size: 15px;
        max-width: 260px;
        gap: 12px;
    }
    
    .btn-icon-wrapper {
        width: 24px;
        height: 24px;
        padding: 5px;
    }
    
    .btn-text {
        font-size: 14px;
    }
}

/* Removed old platform badges styles - using new epic design */

/* ===== ABOUT & FEATURES SECTION - ORİJİNAL TASARIM ===== */
.about-features-section {
    width: 100vw;
    padding: 100px 0;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    position: relative;
}

.hero-logo-divider {
    text-align: center;
    margin-bottom: 30px;
}

.section-logo {
    width: 200px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.5));
}

.divider {
    width: 100%;
    max-width: 800px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF1493, transparent);
    margin: 0 auto 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

/* About Card Original */
.content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.about-card-original {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05) 0%, rgba(138, 43, 226, 0.03) 100%);
}

.features-card-original {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.card-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #FF1493;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title.blue {
    color: #4682B4;
}

.card-content {
    margin-bottom: 40px;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

.patreon-btn {
    background: linear-gradient(45deg, #f96854, #ff6b6b);
    color: #fff;
    box-shadow: 0 5px 20px rgba(249, 104, 84, 0.3);
}

.patreon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249, 104, 84, 0.5);
}

.steam-btn {
    background: linear-gradient(45deg, #66c0f4, #4a9fd9);
    color: #fff;
    box-shadow: 0 5px 20px rgba(102, 192, 244, 0.3);
}

.steam-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 192, 244, 0.5);
}

/* Features Grid Original */
.features-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.features-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(70, 130, 180, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(70, 130, 180, 0.2);
    transform: translateX(5px);
}

.feature-check {
    color: #4682B4;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Download CTA */
.download-cta {
    margin-top: 40px;
    text-align: center;
}

.download-btn-big {
    position: relative;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 50px;
}

.btn-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #FFD700, #FF1493, #FFD700);
    background-size: 200% 100%;
    animation: bgSlide 3s linear infinite;
    z-index: 1;
}

@keyframes bgSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.download-btn-big .btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn-big:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.download-btn-big:hover .btn-arrow {
    transform: translateX(5px);
}

/* ===== MOBILE HEADER FIXES ===== */
@media (max-width: 768px) {
    /* Header Logo Fix */
    .header {
        position: fixed !important;
        top: 0 !important;
        background: rgba(0, 0, 0, 0.95) !important;
        z-index: 9999 !important;
    }
    
    .header-content {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
        gap: 0 !important;
    }
    
    .header-left {
        flex: 0 0 auto;
        margin-bottom: 0 !important;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .header-logo {
        height: 35px !important;
        width: auto !important;
    }
    
    .logo-link {
        display: flex;
        align-items: center;
        margin-right: 0 !important;
    }
    
    .social-links {
        display: none !important; /* Hide social links on mobile to save space */
    }
    
    .header-right {
        flex: 0 0 auto;
        width: auto !important;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .header-nav {
        display: flex;
        gap: 5px;
        flex-wrap: nowrap;
        justify-content: flex-end;
        margin-right: 0 !important;
        width: auto !important;
    }
    
    .header-nav .btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    
    .header-nav .btn-icon {
        width: 14px !important;
        height: 14px !important;
        margin-right: 5px !important;
    }
    
    /* Keep button icons visible on mobile */
    .header-nav .btn-news,
    .header-nav .btn-patreon,
    .header-nav .btn-download {
        min-width: auto !important;
    }
    
    .header-auth-section {
        border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding-left: 10px !important;
        margin-left: 10px !important;
        border-top: none !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
        width: auto !important;
        justify-content: flex-end !important;
    }
    
    /* Main content padding adjustment */
    main {
        padding-top: 60px !important;
    }
    
    .hero-banner {
        padding-top: 20px !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Hero Section Mobile Fixes */
    .hero-content-wrapper {
        padding: 0 15px;
        margin-top: 20px;
    }
    
    .hero-main-content {
        padding: 0;
    }
    
    .logo-container,
    .logo-container-epic {
        margin-bottom: 5px;  /* Even closer */
    }
    
    .main-logo {
        width: 250px;
        max-width: 70vw;
    }
    
    /* Epic Mobile Styles */
    .main-logo-epic {
        width: 300px;
        max-width: 80vw;
        margin-bottom: 0;
    }
    
    /* Season 1 Mobile */
    .season-title-3d {
        font-size: clamp(3.5rem, 10vw, 6rem);
        margin: -5px 0 30px;  /* Negative margin for mobile too */
    }
    
    .season-text {
        color: #FF69B4;
        text-shadow: 
            1px 1px 0px #FF1493,
            2px 2px 0px #FFB6C1,
            3px 3px 0px #FFC0CB,
            4px 4px 0px #FFDDEE,
            5px 5px 15px rgba(255, 105, 180, 0.25);
        transform: perspective(600px) rotateY(-8deg) rotateX(2deg);
        -webkit-text-stroke: 0.5px rgba(255, 20, 147, 0.2);
    }
    
    .season-text::before {
        display: none;
    }
    
    .season-text::after {
        filter: blur(15px);
        opacity: 0.35;
    }
    
    /* Modern Buttons Mobile */
    .platform-badges-modern {
        gap: 20px;
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .modern-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 35px;
        font-size: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    
    /* Remove old mobile styles */
    .hero-title-epic,
    .hero-tagline-epic,
    .platform-badges-epic,
    .hero-actions,
    .age-warning-epic {
        display: none !important;
    }
    
    .content-grid {
        padding: 0 20px;
    }
    
    .content-card {
        padding: 30px;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Homepage Editor için Özel Stiller */
.homepage-section {
    width: 100%;
    position: relative;
}

.hero-content,
.gallery,
.video-section {
    width: 100%;
}

/* Editor'da preview için container override */
.preview-container .container,
.preview-container .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}