/*
Theme Name: Dead Witness Studio
Version: 18.0.0
Author: Dead Witness Team
Description: Red Barrels Style Horror Game Studio Theme - FINAL
Last Updated: 2025-12-27 19:30:00
CACHE BUSTER: v171-SPECIFIC-SELECTORS-CUT-MARK-WORKING
*/

/* ============================================
   FONTS - 2 FONT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Rajdhani:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --red: #8b0000;
    --white: #ffffff;
    --gray: #999999;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* Mobile viewport fix */
@media (max-width: 768px) {
    html {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    body {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }
}

h1, h2, h3 {
    font-family: 'Orbitron', monospace;
}

/* ============================================
   HEADER - MINIMAL
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    padding: 0.1rem 2rem;
    z-index: 999;
    border-bottom: none;
    transition: transform 0.3s ease-in-out;
}

.site-header.hidden {
    transform: translateY(-100%);
}

body.admin-bar .site-header {
    top: 32px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: inline-block;
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.main-navigation {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    display: inline-block;
    padding: 0 5px;
    line-height: 1;
}

.main-navigation a span {
    display: inline-block;
    opacity: 0;
    animation: fadeInChar 0.1s forwards;
}

/* Hover Animasyonu - [ANA SAYFA] typing effect */
.main-navigation a::before {
    content: '[';
    position: absolute;
    left: -8px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: var(--red);
    font-weight: 900;
    font-size: 0.85rem;
    line-height: 1;
}

.main-navigation a::after {
    content: ']';
    position: absolute;
    right: -8px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: var(--red);
    font-weight: 900;
    font-size: 0.85rem;
    line-height: 1;
}

.main-navigation a:hover::before,
.main-navigation a:hover::after {
    opacity: 1;
    animation: bracketFlicker 0.8s ease-in-out infinite;
}

.main-navigation a:hover {
    color: var(--red);
}

/* Yanıp sönen bracket animasyonu */
@keyframes bracketFlicker {
    0%, 100% { 
        opacity: 1; 
    }
    25% { 
        opacity: 0.2; 
    }
    50% { 
        opacity: 1; 
    }
    75% { 
        opacity: 0.4; 
    }
}

/* Bracket darbe efekti */
@keyframes bracketPulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.15);
    }
}

/* Yazı hover - yanıp sönen kırmızı efekt */
.main-navigation a:hover {
    color: var(--red);
    animation: textFlicker 1.5s ease-in-out infinite, textGlitch 0.3s ease-in-out infinite;
    letter-spacing: 5px;
}

@keyframes textFlicker {
    0%, 100% { 
        opacity: 1;
        text-shadow: 0 0 10px rgba(139, 0, 0, 0.8), 0 0 20px rgba(139, 0, 0, 0.5);
    }
    50% { 
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(139, 0, 0, 1), 0 0 30px rgba(139, 0, 0, 0.8);
    }
}

@keyframes textGlitch {
    0%, 100% { 
        transform: translateX(0);
    }
    25% { 
        transform: translateX(-1px);
    }
    75% { 
        transform: translateX(1px);
    }
}

.sound-toggle,
.menu-open-toggle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s;
    font-family: 'Rajdhani', sans-serif;
}

.sound-toggle:hover,
.menu-open-toggle:hover {
    color: var(--red);
    animation: textFlicker 1.5s ease-in-out infinite;
}

.sound-toggle,
.menu-open-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.sound-icon {
    display: inline-block;
    margin-right: 0.3rem;
    font-size: 1.1em;
}

.bracket {
    color: var(--red);
}

/* MENU butonu - statik [... MENU] yok */
.menu-open-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

/* ============================================
   HERO - VIDEO BACKGROUND + WECREATE
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

body.admin-bar .hero-section {
    padding-top: 130px;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section {
        /* REMOVED - Inline style in HTML handles this */
    }
    
    .hero-video {
        /* REMOVED - Inline style in HTML handles this */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}

.hero-words {
    display: flex;
    gap: 6rem;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    flex-wrap: nowrap;
    position: relative;
    z-index: 3;
}

/* SCROLL yapınca az yaklaşma ve az küçülme */
.hero-words.scrolled {
    gap: 4rem;
    transform: scale(0.85);
}

.hero-word {
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: 'Orbitron', monospace;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    align-self: center;
}

/* Hero Links (Our Movies, Our Games) */
.hero-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.hero-link::before {
    content: '[';
    position: absolute;
    left: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.hero-link::after {
    content: ']';
    position: absolute;
    right: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.hero-link:hover {
    color: var(--red);
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

.hero-link:hover::before,
.hero-link:hover::after {
    opacity: 1;
    animation: bracketFlicker 0.8s ease-in-out infinite;
}

/* Kickstarter Link */
.kickstarter-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.kickstarter-link::before {
    content: '[';
    position: absolute;
    left: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.kickstarter-link::after {
    content: ']';
    position: absolute;
    right: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.kickstarter-link:hover {
    color: var(--red);
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

.kickstarter-link:hover::before,
.kickstarter-link:hover::after {
    opacity: 1;
    animation: bracketFlicker 0.8s ease-in-out infinite;
}

/* WECREATE sağa doğru az kayıyor */
.hero-word-left {
    transform-origin: right center;
}

.hero-words.scrolled .hero-word-left {
    transform: translateX(30px);
}

/* UNFORGETTABLE ortada kalıyor */
.hero-word-middle {
    transform-origin: center center;
}

/* EXPERIENCES sola doğru az kayıyor */
.hero-word-right {
    transform-origin: left center;
}

.hero-words.scrolled .hero-word-right {
    transform: translateX(-30px);
}

.hero-subtitle {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    z-index: 3;
}

/* ============================================
   ABOUT SECTION - TYPING ANİMASYON
   ============================================ */

.about-title {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text strong {
    color: var(--white);
    font-weight: 600;
}

.about-tagline {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    margin-top: 2rem;
}

.about-quote {
    font-size: 1.3rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-style: italic;
    margin-top: 3rem;
    text-align: center;
    line-height: 1.8;
}

.about-quote em {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-title.bracket-visible::before,
.about-title.bracket-visible::after {
    opacity: 1;
    animation: bracketFlicker 0.8s ease-in-out infinite;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
    font-family: 'Rajdhani', sans-serif;
    opacity: 1;
    transition: opacity 0.5s;
    text-align: left;
}

/* ============================================
   FULLSCREEN VIDEO SECTION
   ============================================ */
.fullscreen-video-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.fullscreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 768px) {
    .fullscreen-video-section {
        position: relative !important;
        width: 100% !important;
        height: 100vh !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        overflow: hidden !important;
    }
    
    .fullscreen-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
}

/* ============================================
   Y.VILLAGE PROMO SECTION
   ============================================ */
.yvillage-section {
    padding: 3rem 2rem;
    background: var(--black);
}

.yvillage-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.yvillage-image {
    width: 100%;
}

.yvillage-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.yvillage-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.yvillage-title {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    transition: opacity 0.5s;
}

.yvillage-title.visible {
    opacity: 1;
}

.yvillage-title span {
    display: inline-block;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.yvillage-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.5s;
    word-spacing: normal;
    white-space: normal;
}

.yvillage-text.visible {
    opacity: 1;
}

.yvillage-text span {
    display: inline;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.yvillage-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible !important;
    width: fit-content;
}

.yvillage-button:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* ============================================
   FULLWIDTH IMAGE SECTION
   ============================================ */
.fullwidth-image-section {
    width: 100%;
    background: var(--black);
    padding: 0;
}

.fullwidth-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   EILEAN MOR SECTION
   ============================================ */
.eilean-section {
    padding: 3rem 2rem;
    background: var(--black);
}

.eilean-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.eilean-image {
    width: 100%;
}

.eilean-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.eilean-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.eilean-title {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    transition: opacity 0.5s;
}

.eilean-title.visible {
    opacity: 1;
}

.eilean-title span {
    display: inline-block;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.eilean-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.5s;
    word-spacing: normal;
    white-space: normal;
}

.eilean-text.visible {
    opacity: 1;
}

.eilean-text span {
    display: inline;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.eilean-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    width: fit-content;
}

.eilean-button:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* ============================================
   ANTICHRIST SECTION
   ============================================ */
.antichrist-section {
    padding: 3rem 2rem;
    background: var(--black);
}

.antichrist-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.antichrist-image {
    width: 100%;
}

.antichrist-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.antichrist-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.antichrist-title {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    transition: opacity 0.5s;
}

.antichrist-title.visible {
    opacity: 1;
}

.antichrist-title span {
    display: inline;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.antichrist-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.5s;
    word-spacing: normal;
    white-space: normal;
}

.antichrist-text.visible {
    opacity: 1;
}

.antichrist-text span {
    display: inline;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.antichrist-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    width: fit-content;
}

.antichrist-button:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* ============================================
   Y.VILLAGE 02 SECTION
   ============================================ */
.yvillage02-section {
    padding: 3rem 2rem;
    background: var(--black);
}

.yvillage02-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.yvillage02-image {
    width: 100%;
}

.yvillage02-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.yvillage02-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.yvillage02-title {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    transition: opacity 0.5s;
}

.yvillage02-title.visible {
    opacity: 1;
}

.yvillage02-title span {
    display: inline;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.yvillage02-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.5s;
    word-spacing: normal;
    white-space: normal;
}

.yvillage02-text.visible {
    opacity: 1;
}

.yvillage02-text span {
    display: inline;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.yvillage02-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    width: fit-content;
}

.yvillage02-button:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* ============================================
   APARTMENT NO 129 SECTION
   ============================================ */
.apartment-section {
    padding: 3rem 2rem;
    background: var(--black);
}

.apartment-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.apartment-image {
    width: 100%;
}

.apartment-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.apartment-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.apartment-title {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    transition: opacity 0.5s;
}

.apartment-title.visible {
    opacity: 1;
}

.apartment-title span {
    display: inline;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.apartment-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.5s;
    word-spacing: normal;
    white-space: normal;
}

.apartment-text.visible {
    opacity: 1;
}

.apartment-text span {
    display: inline;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.apartment-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    width: fit-content;
}

.apartment-button:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* ============================================
   Y. KÖYÜ MOVIE SECTION
   ============================================ */
.ykoyu-movie-section {
    padding: 3rem 2rem;
    background: var(--black);
}

.ykoyu-movie-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.ykoyu-movie-image {
    width: 100%;
}

.ykoyu-movie-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.ykoyu-movie-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ykoyu-movie-title {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    transition: opacity 0.5s;
}

.ykoyu-movie-title.visible {
    opacity: 1;
}

.ykoyu-movie-title span {
    display: inline;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.ykoyu-movie-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.5s;
    word-spacing: normal;
    white-space: normal;
}

.ykoyu-movie-text.visible {
    opacity: 1;
}

.ykoyu-movie-text span {
    display: inline;
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

.ykoyu-movie-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    width: fit-content;
}

.ykoyu-movie-button:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 3rem 2rem;
    background: var(--black);
}

.newsletter-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.newsletter-logo img {
    width: 100%;
    height: auto;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.newsletter-title {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.newsletter-subscribe-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 10px;
}

.newsletter-subscribe-btn::before {
    content: '[';
    position: absolute;
    left: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.newsletter-subscribe-btn::after {
    content: ']';
    position: absolute;
    right: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.newsletter-subscribe-btn:hover {
    color: var(--red);
}

.newsletter-subscribe-btn:hover::before,
.newsletter-subscribe-btn:hover::after {
    opacity: 1;
    animation: bracketFlicker 0.8s ease-in-out infinite;
}

.newsletter-right {
    width: 100%;
}

.newsletter-form {
    width: 100%;
    margin-top: 2rem;
}

.newsletter-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-submit,
.newsletter-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 10px;
    display: inline-block;
    width: fit-content;
    margin-top: 0.5rem;
}

.newsletter-submit::before,
.newsletter-close::before {
    content: '[';
    position: absolute;
    left: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.newsletter-submit::after,
.newsletter-close::after {
    content: ']';
    position: absolute;
    right: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.newsletter-submit:hover,
.newsletter-close:hover {
    color: var(--red);
}

.newsletter-submit:hover::before,
.newsletter-submit:hover::after,
.newsletter-close:hover::before,
.newsletter-close:hover::after {
    opacity: 1;
    animation: bracketFlicker 0.8s ease-in-out infinite;
}

.newsletter-close {
    margin-left: 2rem;
}

.newsletter-image {
    width: 100%;
    transition: opacity 0.3s ease;
}

.newsletter-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* ============================================
   LATEST NEWS SECTION
   ============================================ */
.news-section {
    padding: 3rem 2rem;
    background: var(--black);
}

.news-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.news-controls {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.news-title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    font-family: 'Orbitron', monospace;
}

.news-see-all {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 10px;
}

.news-see-all::before {
    content: '[';
    position: absolute;
    left: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.news-see-all::after {
    content: ']';
    position: absolute;
    right: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.news-see-all:hover {
    color: var(--red);
}

.news-see-all:hover::before,
.news-see-all:hover::after {
    opacity: 1;
    animation: bracketFlicker 0.8s ease-in-out infinite;
}

.news-carousel-wrapper {
    position: relative;
}

.news-carousel-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.news-card.active {
    visibility: visible;
    height: auto;
    opacity: 1;
}

.news-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.news-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 2rem;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-date {
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
}

.news-category {
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
}

.news-card-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0;
}

.news-card-title a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    transition: color 0.3s;
}

.news-card-title a:hover {
    color: var(--red);
}

.news-nav-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news-nav-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.no-news {
    color: #999;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    grid-column: 1 / -1;
    padding: 4rem 0;
}

/* ============================================
   NEWS PAGE
   ============================================ */
.news-page-content {
    padding: 4rem 2rem;
    background: var(--black);
}

.news-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.news-post-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-post-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.news-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-post-card:hover .news-post-image img {
    transform: scale(1.05);
}

.news-post-content {
    padding: 2rem;
}

.news-post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-post-date,
.news-post-category {
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
}

.news-post-title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.news-post-title a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    transition: color 0.3s;
}

.news-post-title a:hover {
    color: var(--red);
}

.news-post-excerpt {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.news-post-button {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 10px;
    display: inline-block;
}

.news-post-button::before {
    content: '[';
    position: absolute;
    left: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.news-post-button::after {
    content: ']';
    position: absolute;
    right: -10px;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--red);
}

.news-post-button:hover {
    color: var(--red);
}

.news-post-button:hover::before,
.news-post-button:hover::after {
    opacity: 1;
    animation: bracketFlicker 0.8s ease-in-out infinite;
}

.news-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.news-pagination a,
.news-pagination span {
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.news-pagination a:hover {
    border-color: var(--red);
    color: var(--red);
}

.news-pagination .current {
    background: var(--red);
    border-color: var(--red);
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
}

.no-posts p {
    color: #999;
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
}

/* ============================================
   GAME PAGES - SIMPLE DESIGN
   ============================================ */
.game-page-section {
    padding: 6rem 2rem;
    background: var(--black);
    min-height: 80vh;
}

.game-page-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.game-page-image {
    position: sticky;
    top: 2rem;
}

.game-page-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.game-page-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-page-title {
    font-size: 2.5rem;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.game-page-status {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(139, 0, 0, 0.2);
    border: 2px solid var(--red);
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    width: fit-content;
    border-radius: 4px;
}

.game-page-status-available {
    background: rgba(0, 139, 0, 0.2);
    border-color: #00a000;
    color: #00ff00;
}

.game-page-description h2 {
    font-size: 1.8rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.game-page-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1rem;
}

.game-page-features h3 {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.game-page-features ul {
    list-style: none;
    padding: 0;
}

.game-page-features li {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    padding-left: 2rem;
    position: relative;
}

.game-page-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 1.2rem;
}

.game-page-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--red);
    border: none;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    width: fit-content;
    border-radius: 4px;
}

.game-page-button:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
}

.game-page-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Platform Icons */
.game-platforms {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    align-items: center;
}

.platform-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
}

.platform-steam { color: #171a21; }
.platform-steam:hover { color: #66c0f4; }
.platform-playstation { color: #003087; }
.platform-playstation:hover { color: #0070cc; }
.platform-xbox { color: #107c10; }
.platform-xbox:hover { color: #4bc41c; }
.platform-epic { color: #313131; }
.platform-epic:hover { color: #0078f2; }
.platform-nintendo { color: #e60012; }
.platform-nintendo:hover { color: #ff4554; }

/* Movie Video Section */
.movie-video-section {
    margin-bottom: 4rem;
}

.movie-video {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

/* Movie Thumbnail Video */
.movie-video-thumb {
    position: relative;
    overflow: hidden;
}

.movie-thumb-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(139, 0, 0, 0.9);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-video-thumb:hover .video-overlay {
    opacity: 1;
}

/* Services Page */
.services-content {
    padding: 4rem 2rem;
}

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

.service-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-item p {
    color: var(--gray);
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
}

.services-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 8px;
}

.services-cta h2 {
    font-size: 2rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Rajdhani', sans-serif;
}

.game-status-badge {
    color: var(--red);
    font-size: 0.9em;
}

.no-games {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    font-size: 1.2rem;
    padding: 4rem 0;
    font-family: 'Rajdhani', sans-serif;
}

/* ============================================
   MODERN GAME DETAIL PAGE
   ============================================ */
   
/* Hero Section */
.game-hero-modern {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.9));
    z-index: 1;
}

.game-hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.game-hero-title-modern {
    font-size: 4.5rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: capitalize;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.8), 0 0 60px rgba(139, 0, 0, 0.6);
}

.game-hero-status-modern {
    display: inline-block;
    padding: 1rem 3rem;
    background: rgba(139, 0, 0, 0.3);
    border: 3px solid var(--red);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

/* Content Section */
.game-content-modern {
    background: var(--black);
    padding: 6rem 2rem;
}

.game-section {
    margin-bottom: 6rem;
}

.section-title-modern {
    font-size: 2.5rem;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
}

.section-title-modern::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--red);
    margin: 1rem auto 0;
}

/* Trailer */
.trailer-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
}

.trailer-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.game-video-modern {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

/* Platform Section */
.platform-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 12px;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.platform-title {
    font-size: 1.8rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.platform-logos-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.platform-logo-item {
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.platform-logo-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.2), transparent);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-logo-item:hover::before {
    opacity: 1;
}

.platform-logo-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.platform-logo-item.disabled {
    opacity: 0.4;
    cursor: default;
}

.platform-logo-item.disabled:hover {
    transform: none;
}

.platform-logo-item.disabled::before {
    display: none;
}

.platform-logo-item img {
    height: 60px;
    width: auto;
    max-width: 180px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.platform-logo-item:hover img {
    filter: brightness(1.2);
}

/* Description */
.game-description-modern {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
}

.game-description-modern h2,
.game-description-modern h3 {
    color: var(--white);
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    margin: 3rem 0 1.5rem;
}

.game-description-modern h2 {
    font-size: 2rem;
    color: var(--red);
    letter-spacing: 0.1em;
}

.game-description-modern h3 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.game-description-modern p {
    margin-bottom: 1.5rem;
}

.game-description-modern strong {
    color: var(--white);
}

/* Screenshots Grid */
.screenshots-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.4);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .game-hero-title-modern {
        font-size: 3rem;
    }
    
    .platform-logos-modern {
        gap: 2rem;
    }
    
    .platform-logo-item img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    /* Header & Logo */
    .site-header {
        padding: 0.5rem 1rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .main-navigation ul {
        display: none;
    }
    
    .game-hero-modern {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .game-hero-title-modern {
        font-size: 2rem;
    }
    
    .game-hero-status-modern {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .platform-logos-modern {
        gap: 1.5rem;
    }
    
    .platform-logo-item img {
        height: 40px;
    }
    
    .screenshots-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .game-content-modern {
        padding: 3rem 1rem;
    }
    
    /* Homepage Sections - Mobile */
    .yvillage-section,
    .eilean-section,
    .antichrist-section,
    .yvillage02-section,
    .apartment-section {
        padding: 3rem 1rem;
    }
    
    .yvillage-container,
    .eilean-container,
    .antichrist-container,
    .yvillage02-container,
    .apartment-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .yvillage-title,
    .eilean-title,
    .antichrist-title,
    .yvillage02-title,
    .apartment-title {
        font-size: 1.3rem;
    }
    
    .yvillage-text,
    .eilean-text,
    .antichrist-text,
    .yvillage02-text,
    .apartment-text {
        font-size: 1rem;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), 
                url('/wp-content/uploads/2025/11/tekgoz.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-title {
    font-size: 4rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
}

.contact-subtitle {
    font-size: 1.5rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.1em;
}

.contact-content {
    padding: 6rem 2rem;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.contact-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.contact-card h2 {
    font-size: 2.5rem;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.contact-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.8rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(139, 0, 0, 0.2);
    border: 2px solid var(--red);
    border-radius: 8px;
    margin: 2rem 0;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.contact-email:hover {
    background: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

.contact-tagline {
    font-size: 1.1rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-style: italic;
    margin-top: 2rem;
}

.contact-social {
    margin-top: 4rem;
    text-align: center;
}

.contact-social h3 {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-social-links a {
    color: var(--gray);
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    color: var(--red);
    transform: translateY(-5px);
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(139, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-card {
        padding: 3rem 1.5rem;
    }
    
    .contact-card h2 {
        font-size: 1.8rem;
    }
    
    .contact-email {
        font-size: 1.2rem;
    }
    
    .contact-social-links {
        gap: 1.2rem;
        justify-content: center;
    }
    
    .contact-social-links a svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-image {
        order: -1;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.about-hero-title {
    font-size: 5rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(139, 0, 0, 0.9);
}

.about-hero-subtitle {
    font-size: 1.8rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.1em;
    font-style: italic;
}

.about-page-content {
    padding: 6rem 2rem;
    background: var(--black);
}

.about-story,
.about-projects,
.about-film,
.about-vision {
    max-width: 1000px;
    margin: 0 auto 6rem;
}

.about-section-title {
    font-size: 2.5rem;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--red);
    margin: 1rem auto 0;
}

.about-text-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1.5rem;
}

.about-text-content strong {
    color: var(--white);
    font-weight: 600;
}

.about-blockquote {
    font-size: 1.5rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-style: italic;
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    border-left: 4px solid var(--red);
    border-radius: 8px;
    line-height: 1.8;
}

.about-blockquote span {
    display: block;
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 1rem;
    font-style: normal;
}

.about-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta h2 {
    font-size: 2rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    margin-bottom: 2rem;
}

.about-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-button:hover {
    background: #a00000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-section-title {
        font-size: 1.8rem;
    }
    
    .about-text-content p {
        font-size: 1.05rem;
    }
    
    .about-blockquote {
        font-size: 1.2rem;
    }
}

/* ============================================
   SINGLE POST (BLOG/NEWS)
   ============================================ */
.single-post {
    padding: 4rem 2rem;
    background: var(--black);
    min-height: 70vh;
}

.post-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.post-date,
.post-category {
    color: var(--gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.post-category {
    color: var(--red);
}

.post-title {
    font-size: 3rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.post-featured-image {
    max-width: 1200px;
    margin: 0 auto 4rem;
    border-radius: 8px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
}

.post-content h2 {
    font-size: 2rem;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    margin: 3rem 0 1.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content a {
    color: var(--red);
    text-decoration: underline;
}

.post-content a:hover {
    color: #ff0000;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-previous,
.nav-next {
    font-family: 'Rajdhani', sans-serif;
}

.nav-previous a,
.nav-next a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--red);
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 1.05rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .game-page-grid {
        grid-template-columns: 400px 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .game-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .game-page-image {
        position: static;
    }
    
    .game-page-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   PAGE TEMPLATES - MOVIES & GAMES
   ============================================ */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    padding-top: 100px;
}

.page-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: 'Orbitron', monospace;
    color: var(--white);
}

.movies-content,
.games-content {
    padding: 3rem 2rem;
    background: var(--black);
}

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

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    margin-bottom: 5rem;
}

.movies-grid,
.games-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.movie-item,
.game-item {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.movie-item:hover,
.game-item:hover {
    transform: translateY(-10px);
}

.movie-poster img,
.game-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.movie-info,
.game-info {
    padding: 2rem;
}

.movie-info h3,
.game-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
}

.movie-info h3 a,
.game-info h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.movie-info h3 a:hover,
.game-info h3 a:hover {
    color: var(--red);
}

.movie-info p,
.game-info p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.watch-button,
.game-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.watch-button:hover,
.game-button:hover {
    background: var(--red);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* ============================================
   GAMES FULL PAGE
   ============================================ */
.game-full-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.game-full-reverse {
    direction: rtl;
}

.game-full-reverse > * {
    direction: ltr;
}

.game-full-media {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.game-full-video,
.game-full-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.game-full-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.game-full-title {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-full-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
}

.game-full-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.game-full-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--red);
    transition: left 0.3s ease;
    z-index: -1;
}

.game-full-button:hover::before {
    left: 0;
}

.game-full-button:hover {
    color: var(--white);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* Scroll yapınca görünür */
.about-text.visible {
    opacity: 1;
}

/* Typing efekti için span'lar */
.about-text span {
    opacity: 0;
    animation: fadeInChar 0.03s forwards;
}

@keyframes fadeInChar {
    to { opacity: 1; }
}

/* ============================================
   GAMES GRID
   ============================================ */
.games-section {
    padding: 3rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.games-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.game-card {
    background: #111;
    border: 1px solid #222;
    overflow: hidden;
    transition: all 0.3s;
}

.game-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.game-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card-content {
    padding: 2rem;
}

.game-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.game-card-title a {
    color: var(--white);
    text-decoration: none;
}

.game-card-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0a0a;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #222;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-main {
    max-width: 400px;
}

.footer-column h3 {
    color: var(--red);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-tagline {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Rajdhani', sans-serif;
}

.footer-social {
    margin-top: 2rem;
}

.social-title {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icons a {
    color: var(--white);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.social-icons a:nth-child(1):hover { color: #1877F2; } /* Facebook */
.social-icons a:nth-child(2):hover { color: #1DA1F2; } /* Twitter */
.social-icons a:nth-child(3):hover { color: #E4405F; } /* Instagram */
.social-icons a:nth-child(4):hover { color: #5865F2; } /* Discord */
.social-icons a:nth-child(5):hover { color: #0A66C2; } /* LinkedIn */
.social-icons a:nth-child(6):hover { color: #FF0000; } /* YouTube */
.social-icons a:nth-child(7):hover { color: #00F2EA; } /* TikTok */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Rajdhani', sans-serif;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.85rem;
    font-family: 'Rajdhani', sans-serif;
}

/* ============================================
   OVERLAY MENU
   ============================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.98);
    z-index: 9999;
    display: none;
}

.menu-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    z-index: 10000;
}

.menu-close:hover {
    color: var(--red);
}

.overlay-content {
    display: flex;
    gap: 6rem;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    padding: 0 4rem;
}

.overlay-menu-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.overlay-menu-list li {
    margin: 0.8rem 0;
}

.overlay-menu-list a {
    font-size: 2.5rem;
    color: var(--white);
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 400;
    font-family: 'Rajdhani', sans-serif;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
}

/* Bracket hover animasyonu - DÜZELTME */
.overlay-menu-list a::before {
    content: '[';
    position: relative;
    left: 0;
    opacity: 0;
    transition: all 0.3s;
    color: var(--red);
    font-size: 2.5rem;
    margin-right: 10px;
}

.overlay-menu-list a::after {
    content: ']';
    position: relative;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
    color: var(--red);
    font-size: 2.5rem;
    margin-left: 10px;
}

.overlay-menu-list a:hover {
    color: var(--red);
}

.overlay-menu-list a:hover::before,
.overlay-menu-list a:hover::after {
    opacity: 1;
    animation: bracketFlickerStrong 1s ease-in-out infinite;
}

@keyframes bracketFlickerStrong {
    0%, 100% { 
        opacity: 1;
        text-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
    }
    20% { 
        opacity: 0.3; 
    }
    40% { 
        opacity: 1;
        text-shadow: 0 0 15px rgba(139, 0, 0, 1);
    }
    60% { 
        opacity: 0.5; 
    }
    80% { 
        opacity: 1;
        text-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
    }
}

/* Overlay Images */
.overlay-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    flex: 1;
    max-width: 900px;
}

.overlay-image-box {
    height: 550px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.overlay-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.overlay-image-box:hover img {
    transform: translateY(-15px);
}

/* Neon Glow - Resmin ARKASINDA */
.overlay-image-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 80%;
    background: radial-gradient(ellipse at center bottom, rgba(139, 0, 0, 0.8) 0%, rgba(139, 0, 0, 0.4) 40%, transparent 70%);
    box-shadow: 
        0 20px 60px rgba(139, 0, 0, 0.9),
        0 30px 100px rgba(139, 0, 0, 0.7),
        0 40px 140px rgba(139, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(25px);
    z-index: 1;
}

.overlay-image-box:hover::before {
    opacity: 1;
}

/* Social Media Icons */
.overlay-social {
    display: flex;
    gap: 2rem;
    position: fixed;
    bottom: 4rem;
    left: 4rem;
    z-index: 10000;
}

.overlay-social a {
    color: var(--white);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Sosyal Medya Özel Renkleri */
.overlay-social .social-facebook:hover {
    color: #1877F2;
}

.overlay-social .social-twitter:hover {
    color: #1DA1F2;
}

.overlay-social .social-instagram:hover {
    color: #E4405F;
}

.overlay-social .social-discord:hover {
    color: #5865F2;
}

.overlay-social .social-linkedin:hover {
    color: #0A66C2;
}

.overlay-social .social-youtube:hover {
    color: #FF0000;
}

.overlay-social .social-tiktok:hover {
    color: #00F2EA;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .site-header {
        padding: 0.5rem 1rem;
    }
    
    .main-navigation ul {
        display: none;
    }
    
    .overlay-content {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }
    
    .overlay-menu-list a {
        font-size: 1.8rem;
    }
    
    .overlay-images {
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    
    .overlay-image-box {
        width: 100%;
        height: 250px;
    }
    
    .overlay-social {
        left: 2rem;
        bottom: 2rem;
        gap: 1.5rem;
    }
    
    .menu-close {
        right: 1rem;
    }
    
    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .yvillage-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .eilean-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .antichrist-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .yvillage02-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .apartment-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ykoyu-movie-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-logo {
        margin: 0 auto;
    }
    
    .newsletter-content {
        align-items: center;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .newsletter-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        max-width: 100%;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-header {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .news-navigation {
        position: static;
        justify-content: center;
        margin-top: 3rem;
    }
    
    .game-full-item,
    .game-full-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .news-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .news-carousel-track {
        grid-template-columns: 1fr;
    }
    
    /* Mobilde sadece bir kart göster */
    .news-card.active:nth-child(n+2) {
        display: none !important;
    }
    
    .news-header {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .news-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .game-detail-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .movies-grid,
    .games-grid-page {
        grid-template-columns: 1fr;
    }
    
    .hero-words {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-word {
        font-size: 1.5rem;
    }
    
    .hero-words.scrolled {
        gap: 1.5rem;
        transform: scale(0.9);
    }
    
    .hero-words.scrolled .hero-word-left,
    .hero-words.scrolled .hero-word-right {
        transform: translateX(0);
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BLOOD DRIP EFFECT - REALISTIC DROP
   ============================================ */
.blood-drip-link,
.blood-drip-button {
    position: relative;
    display: inline-block;
}

/* Main blood drop - realistic shape */
.blood-drip-link::after,
.blood-drip-button::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 8px;
    height: 0;
    background: radial-gradient(ellipse at center top, 
        #8b0000 0%,
        #8b0000 30%,
        #a00000 60%,
        rgba(139, 0, 0, 0.8) 80%,
        rgba(139, 0, 0, 0) 100%);
    opacity: 0;
    transform: translateX(-50%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: drop-shadow(0 0 4px rgba(139, 0, 0, 0.8));
}

.blood-drip-link:hover::after,
.blood-drip-button:hover::after {
    opacity: 1;
    animation: bloodDripRealistic 1.5s ease-in infinite;
}

@keyframes bloodDripRealistic {
    0% {
        height: 0;
        top: 100%;
        opacity: 0;
        border-radius: 50%;
    }
    5% {
        opacity: 1;
        height: 6px;
        width: 6px;
    }
    15% {
        height: 12px;
        width: 8px;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    }
    40% {
        height: 35px;
        width: 8px;
        top: 100%;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    }
    100% {
        height: 35px;
        width: 6px;
        top: calc(100% + 40px);
        opacity: 0;
        border-radius: 50% 50% 60% 60% / 40% 40% 60% 60%;
    }
}

/* Secondary smaller drop */
.blood-drip-link::before,
.blood-drip-button::before {
    content: '';
    position: absolute;
    left: 60%;
    top: 100%;
    width: 5px;
    height: 0;
    background: radial-gradient(ellipse at center top, 
        #8b0000 0%,
        rgba(139, 0, 0, 0.8) 50%,
        rgba(139, 0, 0, 0) 100%);
    opacity: 0;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: drop-shadow(0 0 3px rgba(139, 0, 0, 0.6));
}

.blood-drip-link:hover::before,
.blood-drip-button:hover::before {
    opacity: 1;
    animation: bloodDripSmall 1.8s ease-in 0.4s infinite;
}

@keyframes bloodDripSmall {
    0% {
        height: 0;
        top: 100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
        height: 5px;
    }
    40% {
        height: 20px;
        top: 100%;
    }
    100% {
        height: 20px;
        top: calc(100% + 25px);
        opacity: 0;
    }
}

/* Ana sayfa butonları için - ULTRA REALISTIC BLOOD DROPS */
.yvillage-button,
.eilean-button,
.antichrist-button,
.yvillage02-button,
.apartment-button,
.ykoyu-movie-button {
    position: relative;
    overflow: visible !important;
    z-index: 1;
}

/* Realistic blood drop container */
.realistic-blood-drop {
    position: absolute;
    pointer-events: none;
    z-index: 100;
}

/* Ultra realistic teardrop shape */
.realistic-blood-drop .drop-main {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at 50% 25%,
        rgba(180, 0, 0, 0.95) 0%,
        rgba(139, 0, 0, 1) 20%,
        rgba(120, 0, 0, 1) 40%,
        rgba(100, 0, 0, 0.98) 60%,
        rgba(80, 0, 0, 0.95) 80%,
        rgba(60, 0, 0, 0.9) 100%);
    border-radius: 50%;
    clip-path: polygon(
        50% 0%,
        45% 10%,
        40% 20%,
        35% 35%,
        32% 50%,
        30% 65%,
        29% 75%,
        28% 85%,
        30% 92%,
        35% 96%,
        50% 100%,
        65% 96%,
        70% 92%,
        72% 85%,
        71% 75%,
        70% 65%,
        68% 50%,
        65% 35%,
        60% 20%,
        55% 10%
    );
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)) 
            drop-shadow(0 1px 2px rgba(139, 0, 0, 0.3));
    animation: ultraWobble 0.4s ease-in-out infinite alternate;
}

/* Neck/tail connector */
.realistic-blood-drop .drop-neck {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom,
        rgba(139, 0, 0, 0) 0%,
        rgba(139, 0, 0, 0.2) 20%,
        rgba(139, 0, 0, 0.5) 50%,
        rgba(139, 0, 0, 0.8) 80%,
        rgba(139, 0, 0, 1) 100%);
    border-radius: 50%;
    filter: blur(0.5px);
}

/* Ultra realistic wobble */
@keyframes ultraWobble {
    0% {
        clip-path: polygon(
            50% 0%,
            45% 10%, 40% 20%, 35% 35%, 32% 50%,
            30% 65%, 29% 75%, 28% 85%, 30% 92%,
            35% 96%, 50% 100%, 65% 96%, 70% 92%,
            72% 85%, 71% 75%, 70% 65%, 68% 50%,
            65% 35%, 60% 20%, 55% 10%
        );
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        clip-path: polygon(
            50% 0%,
            44% 12%, 39% 22%, 34% 36%, 31% 51%,
            29% 66%, 28% 76%, 27% 86%, 29% 93%,
            34% 97%, 50% 100%, 66% 97%, 71% 93%,
            73% 86%, 72% 76%, 71% 66%, 69% 51%,
            66% 36%, 61% 22%, 56% 12%
        );
        transform: translateX(-50%) scaleX(0.98);
    }
    100% {
        clip-path: polygon(
            50% 0%,
            46% 9%, 41% 19%, 36% 34%, 33% 49%,
            31% 64%, 30% 74%, 29% 84%, 31% 91%,
            36% 95%, 50% 100%, 64% 95%, 69% 91%,
            71% 84%, 70% 74%, 69% 64%, 67% 49%,
            64% 34%, 59% 19%, 54% 9%
        );
        transform: translateX(-50%) scaleX(1.02);
    }
}

/* Falling animation with rotation */
@keyframes bloodFallRealistic {
    0% {
        top: 100%;
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    5% {
        transform: translateY(0) rotate(1deg);
    }
    15% {
        transform: translateY(0) rotate(-1deg);
    }
    25% {
        transform: translateY(0) rotate(2deg);
    }
    40% {
        transform: translateY(0) rotate(-1deg);
    }
    60% {
        transform: translateY(0) rotate(1deg);
    }
    80% {
        opacity: 1;
        transform: translateY(0) rotate(-2deg);
    }
    100% {
        top: calc(100% + 450px);
        opacity: 0.15;
        transform: translateY(0) rotate(1deg);
    }
}

/* ============================================
   MOUSE BLOOD SPRAY EFFECT
   ============================================ */
.blood-spray-container {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.blood-drop-cursor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

body.blood-cursor {
    cursor: none;
}

body.blood-cursor * {
    cursor: none;
}

/* ============================================
   GAMERS REACTIONS PAGE
   ============================================ */
.reactions-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), 
                url('/wp-content/uploads/2025/11/alien02.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reactions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.reactions-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.reactions-title {
    font-size: 4rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
}

.reactions-subtitle {
    font-size: 1.5rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.1em;
}

.reactions-content {
    padding: 6rem 2rem;
    background: var(--black);
}

.reactions-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.reactions-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
}

.reactions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
}

.reaction-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reaction-item:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.reaction-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.reaction-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reaction-info {
    padding: 2rem;
}

.reaction-info h3 {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 0.5rem;
}

.reaction-game {
    font-size: 1rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.reactions-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reactions-cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
}

.reactions-cta p {
    font-size: 1.3rem;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 2rem;
}

.reactions-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.reactions-button:hover {
    background: #a00000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .reactions-title {
        font-size: 2.5rem;
    }
    
    .reactions-subtitle {
        font-size: 1.1rem;
    }
    
    .reactions-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SLICE BUTTON EFFECT (Eilean Mor)
   ============================================ */
.eilean-slice-button {
    position: relative;
    overflow: visible !important;
    background: var(--red) !important;
}

.eilean-slice-button::before {
    display: none !important;
}

.eilean-slice-button .slice-text {
    position: relative;
    z-index: 2;
    display: block;
}

.eilean-slice-button .slice-line {
    position: absolute;
    top: 50%;
    left: -20%;
    width: 140%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffffff 20%, 
        #ffffff 80%, 
        transparent 100%);
    transform: translateY(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
    z-index: 3;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                0 0 20px rgba(255, 255, 255, 0.5);
}

.eilean-slice-button:hover .slice-line {
    animation: sliceEffect 0.8s ease-out forwards;
}

.eilean-slice-button:hover .slice-text {
}

@keyframes sliceEffect {
    0% {
        transform: translateY(-50%) translateX(-50%) scaleX(0) rotate(-5deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scaleX(1) rotate(-2deg);
    }
    40% {
        transform: translateY(-50%) translateX(0) scaleX(1) rotate(0deg);
    }
    60% {
        transform: translateY(-50%) translateX(10%) scaleX(1) rotate(2deg);
    }
    100% {
        transform: translateY(-50%) translateX(50%) scaleX(0) rotate(5deg);
        opacity: 0;
    }
}

@keyframes textShake {
    0%, 100% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-2px);
    }
    40% {
        transform: translateX(2px);
    }
    60% {
        transform: translateX(-1px);
    }
    80% {
        transform: translateX(1px);
    }
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-hero {
    height: 40vh;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.sitemap-title {
    font-size: 3.5rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

.sitemap-subtitle {
    font-size: 1.2rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    margin-top: 1rem;
}

.sitemap-content {
    padding: 6rem 2rem;
    background: var(--black);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-section h2 {
    font-size: 1.8rem;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(139, 0, 0, 0.3);
    padding-bottom: 0.5rem;
}

.sitemap-section ul {
    list-style: none;
    padding: 0;
}

.sitemap-section ul li {
    margin: 0.8rem 0;
}

.sitemap-section ul li a {
    color: var(--gray);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.sitemap-section ul li a:hover {
    color: var(--red);
    transform: translateX(5px);
}

/* ============================================
   EMAIL SIGNUP & KICKSTARTER CTA
   ============================================ */
.cta-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    border-top: 2px solid rgba(139, 0, 0, 0.3);
    border-bottom: 2px solid rgba(139, 0, 0, 0.3);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-box {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.2rem;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-form {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.email-form input[type="email"] {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(139, 0, 0, 0.3);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

.email-form button,
.kickstarter-button {
    padding: 1.2rem 2.5rem;
    background: var(--red);
    color: var(--white);
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.email-form button:hover,
.kickstarter-button:hover {
    background: #a00000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

.kickstarter-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid var(--red);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--red);
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .email-form {
        flex-direction: column;
    }
}

/* ============================================
   SUPPORT US BOUNCING TEXT
   ============================================ */
.support-bounce {
    font-size: 2.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--red);
    text-align: center;
    letter-spacing: 0.3em;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8),
                 0 0 40px rgba(139, 0, 0, 0.5);
    animation: bounce 1.5s ease-in-out infinite;
    margin-bottom: 1rem;
}

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

/* ============================================
   EILEAN MOR - SLICED BUTTON EFFECT (Enhanced)
   ============================================ */
.eilean-slice-button {
    position: relative;
    overflow: visible !important;
    background: var(--red) !important;
}

.eilean-slice-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.8) 10%,
        rgba(0, 0, 0, 0.8) 90%, 
        transparent 100%);
    transform: translateY(-50%);
    opacity: 0;
    z-index: 4;
}

.eilean-slice-button:hover::after {
    opacity: 1;
    animation: sliceLine 0.6s ease-out;
}

.eilean-slice-button .slice-text {
    position: relative;
    z-index: 2;
    display: block;
}

.eilean-slice-button:hover .slice-text {
    animation: splitShake 0.6s ease-out;
}

/* Kesme çizgisi animasyonu */
@keyframes sliceLine {
    0% {
        transform: translateY(-50%) scaleX(0);
    }
    30% {
        transform: translateY(-50%) scaleX(1);
    }
    100% {
        transform: translateY(-50%) scaleX(1);
    }
}

/* Text split efekti */
@keyframes splitShake {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-2px);
    }
    20% {
        transform: translateY(2px);
    }
    30% {
        transform: translateY(-1px);
    }
    40% {
        transform: translateY(1px);
    }
    50%, 100% {
        transform: translateY(0);
    }
}

/* Mobil responsive */
@media (max-width: 768px) {
    .support-bounce {
        font-size: 1.2rem;
    }
}

        height: 45px;
    }
}

/* ============================================
   MOBILE OPTIMIZATION & PERFORMANCE
   ============================================ */

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

/* Optimize animations for mobile */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU acceleration for animations */
.realistic-blood-drop,
.support-bounce,
.slice-line,
.social-links a {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Lazy load optimization */
img,
video {
    content-visibility: auto;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    /* Hero section */
    .hero-section {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: 100vh !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        min-height: 100vh !important;
        padding-top: 0 !important;
        overflow: hidden !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* About section */
    .about-section {
        padding: 4rem 1rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    /* Game sections */
    .yvillage-section,
    .eilean-section,
    .antichrist-section,
    .yvillage02-section,
    .apartment-section {
        padding: 4rem 1rem;
    }
    
    .yvillage-container,
    .eilean-container,
    .antichrist-container,
    .yvillage02-container,
    .apartment-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .yvillage-image,
    .eilean-image,
    .antichrist-image,
    .yvillage02-image,
    .apartment-image {
        order: 1;
    }
    
    .yvillage-content,
    .eilean-content,
    .antichrist-content,
    .yvillage02-content,
    .apartment-content {
        order: 2;
    }
    
    .yvillage-title,
    .eilean-title,
    .antichrist-title,
    .yvillage02-title,
    .apartment-title {
        font-size: 1.8rem;
    }
    
    /* CTA section */
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    /* Reactions grid */
    .reactions-grid {
        grid-template-columns: 1fr;
    }
    
    /* Sitemap */
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Overlay menu */
    .overlay-menu-list {
        font-size: 1.5rem;
    }
    
    /* Blood drops - reduce on mobile for performance */
    .realistic-blood-drop {
        animation-duration: 2.5s !important;
    }
}

/* Tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .yvillage-container,
    .eilean-container,
    .antichrist-container {
        gap: 3rem;
    }
    
    .reactions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Performance: Reduce animations on low-end devices */
@media (max-width: 768px) {
    .support-bounce {
        animation-duration: 2s;
    }
    
    .realistic-blood-drop .drop-main {
        animation-duration: 0.6s;
    }
}

/* Loading optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-hero {
    height: 50vh;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team-title {
    font-size: 4rem;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.5rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 300;
}

.team-content {
    padding: 6rem 2rem;
    background: var(--black);
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: rgba(139, 0, 0, 0.5);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
    transform: translateY(-5px);
}

.team-member.founder {
    border-color: rgba(139, 0, 0, 0.5);
    background: rgba(139, 0, 0, 0.05);
}

.member-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.member-image img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid rgba(139, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.member-name {
    font-size: 2.5rem;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    margin: 0;
}

.member-role {
    font-size: 1.3rem;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.member-bio {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.member-bio p {
    font-size: 1.1rem;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.8;
    margin: 0;
}

.member-bio strong {
    color: var(--red);
}

.member-social {
    margin-top: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(139, 0, 0, 0.1);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 4px;
    color: var(--gray);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: rgba(139, 0, 0, 0.2);
    border-color: var(--red);
    color: var(--red);
    transform: translateX(5px);
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .team-title {
        font-size: 2.5rem;
    }
    
    .team-subtitle {
        font-size: 1.2rem;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .member-image img {
        height: 250px;
    }
    
    .member-name {
        font-size: 2rem;
    }
    
    .member-role {
        font-size: 1.1rem;
    }
    
    .member-bio p {
        font-size: 1rem;
    }
}

/* ============================================

/* Sosyal medya linkleri overlay menüde */
.overlay-social-links {
    margin-top: 4rem;
    text-align: center;
}

.overlay-social-title {
    font-size: 1.2rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
}

.overlay-social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.overlay-social-icons a {
    color: var(--gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(139, 0, 0, 0.4);
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.1);
}

.overlay-social-icons a:hover {
    color: var(--red);
    border-color: var(--red);
    background: rgba(139, 0, 0, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

.overlay-social-icons svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .overlay-social-icons {
        gap: 1.5rem;
    }
    
    .overlay-social-icons a {
        width: 50px;
        height: 50px;
    }
    
    .overlay-social-icons svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================

.arrow-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--red) 50%, 
        transparent 100%);
    margin: 0 auto;
}

.arrow-head {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    transform: rotate(45deg);
    margin: -10px auto 0;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(15px);
    }
}



@media (max-width: 768px) {

/* ============================================
   HERO - TAGLINE & SUPPORT US
   ============================================ */

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

.hero-word-right {
    display: inline-block;
    position: relative;
    align-self: center;
}

.support-us-bounce {
    font-size: 1.3rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
    animation: bounceUpDown 1.5s ease-in-out infinite;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

    .hero-tagline {
        font-size: 1rem;
    }
    
    .about-section {
        margin: -10rem auto 2rem auto;
    }
}

/* ============================================
   BLACK INTRO SECTION
   ============================================ */
.black-intro-section {
    background: var(--black);
    padding: 3rem 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro-title {
    font-size: 3rem;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 auto 1.5rem;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.intro-tagline {
    font-size: 1.5rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-style: italic;
    margin: 0 auto 0;
    opacity: 0.9;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* About section - now just content */
.about-section {
    padding: 2rem 2rem 3rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
    background: var(--black);
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-tagline {
        font-size: 1.2rem;
    }
    
    .black-intro-section {
        padding: 3rem 1.5rem 2rem;
    }
}

/* ============================================
   Y.VILLAGE INTRO VIDEO (Our Movies)
   ============================================ */
.yvillage-intro-section {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.yvillage-intro-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.yvillage-intro-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.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.yvillage-intro-title {
    font-size: 4rem;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.8),
                 0 0 60px rgba(139, 0, 0, 0.5);
    margin: 0 0 1rem 0;
}

.yvillage-intro-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .yvillage-intro-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .yvillage-intro-title {
        font-size: 2.5rem;
    }
    
    .yvillage-intro-subtitle {
        font-size: 1.2rem;
    }
}

/* ============================================
   SLICE EFFECT - ALL GAME BUTTONS
   ============================================ */
.game-button.slice-effect,
.antichrist-button.slice-effect,
.yvillage02-button.slice-effect,
.apartment-button.slice-effect,
.ykoyu-movie-button.slice-effect {
    position: relative;
    overflow: visible !important;
}

.game-button.slice-effect .slice-text,
.yvillage-button.slice-effect .slice-text,
.antichrist-button.slice-effect .slice-text,
.yvillage02-button.slice-effect .slice-text,
.apartment-button.slice-effect .slice-text,
.ykoyu-movie-button.slice-effect .slice-text {
    position: relative;
    z-index: 2;
    display: block;
}

.game-button.slice-effect .slice-line,
.yvillage-button.slice-effect .slice-line,
.antichrist-button.slice-effect .slice-line,
.yvillage02-button.slice-effect .slice-line,
.apartment-button.slice-effect .slice-line,
.ykoyu-movie-button.slice-effect .slice-line {
    position: absolute;
    top: 50%;
    left: -20%;
    width: 140%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffffff 20%, 
        #ffffff 80%, 
        transparent 100%);
    transform: translateY(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
    z-index: 3;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                0 0 20px rgba(255, 255, 255, 0.5);
}

.game-button.slice-effect:hover .slice-line,
.yvillage-button.slice-effect:hover .slice-line,
.antichrist-button.slice-effect:hover .slice-line,
.yvillage02-button.slice-effect:hover .slice-line,
.apartment-button.slice-effect:hover .slice-line,
.ykoyu-movie-button.slice-effect:hover .slice-line {
    animation: sliceEffect 0.8s ease-out forwards;
}

.game-button.slice-effect:hover .slice-text,
.yvillage-button.slice-effect:hover .slice-text,
.antichrist-button.slice-effect:hover .slice-text,
.yvillage02-button.slice-effect:hover .slice-text,
.apartment-button.slice-effect:hover .slice-text,
.ykoyu-movie-button.slice-effect:hover .slice-text {
}

/* ============================================
   TAGLINE SECTION - İNCE ALAN
   ============================================ */
.tagline-section {
    background: var(--black);
    padding: 0.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.main-tagline {
    font-size: 1.8rem;
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-style: italic;
    margin: 0;
    opacity: 0.9;
    max-width: 1200px;
    margin: 0 auto;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .main-tagline {
        font-size: 1.3rem;
    }
    
    .tagline-section {
        padding: 0.5rem 1.5rem;
    }
}

/* ============================================
   MOBILE FIXES
   ============================================ */
@media (max-width: 768px) {
    .support-us-bounce {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
        letter-spacing: 0.1em;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

/* ============================================
   TEAM PAGE - PORTFOLIO LINK
   ============================================ */
.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(139, 0, 0, 0.1));
    border: 2px solid var(--red);
    color: var(--red);
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.portfolio-link:hover {
    background: var(--red);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
}

.portfolio-link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   TEAM PAGE - MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .member-image img {
        height: auto;
        max-height: 500px;
        max-width: 350px;
        margin: 0 auto;
        object-fit: contain;
    }
    
    .member-image {
        max-width: 350px;
    }
}

/* ============================================
   MOBILE HEADER - HIDE HERO WORDS
   ============================================ */
@media (max-width: 768px) {
    .hero-words {
        display: none !important;
    }
}

/* ============================================
   MOBILE MENU HAMBURGER
   ============================================ */
@media (max-width: 768px) {
    /* Header layout - logo sol, butonlar sağda kompakt */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0.5rem;
    }
    
    .site-logo {
        flex-shrink: 0;
        margin: 0;
        padding: 0;
    }
    
    .logo-image {
        max-width: 140px;
        height: auto;
        display: block;
    }
    
    /* Desktop menüyü gizle */
    .main-navigation ul {
        display: none !important;
    }
    
    /* Butonlar sağda - birbirine yakın, kompakt */
    .main-navigation {
        display: flex;
        gap: 0.25rem;
        align-items: center;
        flex-shrink: 0;
    }
    
    /* Sound sadece icon - ÇERÇEVE YOK */
    .sound-toggle {
        font-size: 0;
        width: auto;
        min-width: 45px;
        height: auto;
        padding: 0.6rem 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none !important;
    }
    
    .sound-icon {
        font-size: 1.4rem !important;
        display: block;
    }
    
    /* OPEN butonu - kompakt */
    .menu-open-toggle {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        margin: 0;
        white-space: nowrap;
        min-width: 55px;
    }
    
    /* MENU butonu - kompakt */
    .mobile-menu-toggle {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        margin: 0;
        white-space: nowrap;
        background: transparent;
        border: none !important;
        color: var(--red);
        font-family: 'Orbitron', monospace;
        font-weight: 700;
        letter-spacing: 0.1em;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 55px;
    }
    
    .mobile-menu-toggle:hover {
        color: var(--white);
    }
}

/* Desktop'ta MENU butonunu gizle */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* ============================================
   SIMPLE MOBILE MENU
   ============================================ */
.mobile-menu-simple {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-simple.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--red);
    color: var(--black);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
}

.mobile-menu-nav a {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.mobile-menu-nav a:hover {
    color: var(--red);
}

/* Mobilde dikey düzen */
@media (max-width: 480px) {
    .mobile-menu-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ============================================
   GAME PAGE - KICKSTARTER CTA
   ============================================ */
.kickstarter-cta-section {
    margin: 3rem 0;
}

.kickstarter-cta-box {
    background: linear-gradient(135deg, rgba(139,0,0,0.1), rgba(0,0,0,0.8));
    border: 2px solid var(--red);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kickstarter-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139,0,0,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.kickstarter-badge-small {
    display: inline-block;
    background: var(--red);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.kickstarter-cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.kickstarter-cta-text {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.kickstarter-cta-button {
    display: inline-block;
    background: var(--red);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139,0,0,0.3);
}

.kickstarter-cta-button:hover {
    background: var(--white);
    color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139,0,0,0.5);
}

@media (max-width: 768px) {
    .kickstarter-cta-title {
        font-size: 1.4rem;
    }
    
    .kickstarter-cta-text {
        font-size: 0.9rem;
    }
    
    .kickstarter-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #1a0000 100%);
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(139,0,0,0.5);
}

.services-hero-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    font-style: italic;
}

.services-intro {
    padding: 5rem 2rem;
    background: var(--black);
}

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

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-intro-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.services-intro-highlight {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--red);
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
    font-style: italic;
}

.services-grid-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #000 0%, #1a0000 100%);
}

.service-item {
    background: rgba(139,0,0,0.1);
    border: 2px solid rgba(139,0,0,0.3);
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-item:hover {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(139,0,0,0.3);
    transform: translateY(-5px);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.service-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

.services-cta-section {
    padding: 5rem 2rem;
    background: var(--black);
}

.services-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(139,0,0,0.1), rgba(0,0,0,0.8));
    border: 2px solid var(--red);
    border-radius: 8px;
    padding: 4rem 3rem;
}

.services-cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.services-cta-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.services-cta-button {
    display: inline-block;
    background: var(--red);
    color: var(--black);
    padding: 1.2rem 3rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.services-cta-button:hover {
    background: var(--white);
    color: var(--red);
    box-shadow: 0 0 30px rgba(139,0,0,0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-tagline {
        font-size: 1.2rem;
    }
    
    .services-intro-text {
        font-size: 1.1rem;
    }
    
    .services-intro-highlight {
        font-size: 1.3rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 1.1rem;
    }
    
    .services-cta-title {
        font-size: 1.8rem;
    }
    
    .services-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   MOVIE PLATFORM LOGOS
   ============================================ */
.movie-platforms {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(139,0,0,0.3);
    border-bottom: 1px solid rgba(139,0,0,0.3);
}

.movie-platforms .platform-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--red);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.movie-platforms .platform-logos-modern {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.movie-platforms .platform-logo-item {
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.movie-platforms .platform-logo-item img {
    height: 60px;
    width: auto;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.movie-platforms .platform-logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .movie-platforms .platform-logo-item img {
        height: 50px;
    }
}

/* ============================================
   BLOOD DRIP ANIMATION - v7.5.1 UPDATED
   Y.Village button now uses unified slice-effect
   ============================================ */
@keyframes bloodDrip {
    0% {
        height: 0;
        opacity: 1;
    }
    50% {
        height: 100px;
        opacity: 0.8;
    }
    100% {
        height: 120px;
        opacity: 0;
    }
}

/* Slice Effect with Blood Drip for All Buttons */
.slice-effect {
    position: relative;
    overflow: visible !important;
}

.slice-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease;
    z-index: 1;
}

.slice-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--red), rgba(139,0,0,0));
    transform: translateX(-50%);
    opacity: 0;
    z-index: 0;
}

.slice-effect:hover::before {
    width: 80%;
}

.slice-effect:hover::after {
    animation: bloodDrip 1s ease-out forwards;
}

/* ============================================
   MOVIE PAGE - KICKSTARTER CTA
   ============================================ */
.movie-kickstarter-cta {
    margin: 2rem 0;
}

.movie-kickstarter-cta .kickstarter-cta-box {
    background: linear-gradient(135deg, rgba(139,0,0,0.1), rgba(0,0,0,0.8));
    border: 2px solid var(--red);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

/* ============================================
   Y.VILLAGE SLICE BUTTON (EILEAN STYLE)
   ============================================ */
}

/* ============================================
   GAME FULLSCREEN INTRO VIDEO
   ============================================ */
.game-fullscreen-video-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    z-index: 1;
}

.game-fullscreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Spacer to push content down */
.game-fullscreen-video-section + .game-hero-modern {
    margin-top: 100vh;
}

@media (max-width: 768px) {
    .game-fullscreen-video-section {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: 100vh !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        overflow: hidden !important;
    }
    
    .game-fullscreen-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .game-fullscreen-video-section + .game-hero-modern {
        margin-top: 0 !important;
    }
}

/* ============================================
   MOBILE VIDEO FIX - FINAL OVERRIDE
   Last: 2025-12-05 17:20:00
   ============================================ */
@media screen and (max-width: 768px) {
    /* Game page fullscreen video */
    body .game-fullscreen-video-section {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: 100vh !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        overflow: hidden !important;
        top: auto !important;
        left: auto !important;
    }
    
    body .game-fullscreen-video-section .game-fullscreen-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    /* Home page hero video - REMOVED, using inline HTML styles */
    
    /* Home page fullscreen video */
    body .fullscreen-video-section {
        position: relative !important;
        width: 100% !important;
        height: 100vh !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        overflow: hidden !important;
    }
    
    body .fullscreen-video-section .fullscreen-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
}

/* ============================================
   EXTREME MOBILE FIX - 1024px BREAKPOINT
   Last: 2025-12-05 17:25:00
   ============================================ */
@media only screen and (max-width: 1024px) {
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    body .game-fullscreen-video-section,
    body .hero-section,
    body .fullscreen-video-section {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: 100vh !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        overflow: hidden !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }
    
    body .game-fullscreen-video,
    body .hero-video,
    body .fullscreen-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        min-width: auto !important;
        min-height: auto !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;
    }
}

/* ============================================
   DYNAMIC SECTIONS - Admin Controlled
   ============================================ */
.dynamic-section {
    width: 100%;
    padding: 6rem 4rem;
    background: var(--black);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-image {
    width: 100%;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-title {
    font-size: 2.2rem;
    line-height: 1.6;
    color: var(--red);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    opacity: 1;
    transition: opacity 0.5s;
    text-align: left;
}

.section-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    opacity: 1;
    word-spacing: normal;
    white-space: normal;
}

/* BUTTON - Tam eski stil */
.section-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: visible !important;
    width: fit-content;
}

.section-button:hover {
    background: var(--red) !important;
    color: var(--white) !important;
    box-shadow: none !important;
}

/* Slice Effect - Tam eski animasyon */
.section-button.slice-effect {
    position: relative;
    overflow: visible !important;
}

.section-button.slice-effect .slice-text {
    position: relative;
    z-index: 2;
    display: block;
}

.section-button.slice-effect .slice-line {
    position: absolute;
    top: 50%;
    left: -20%;
    width: 140%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffffff 20%, 
        #ffffff 80%, 
        transparent 100%);
    transform: translateY(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
    z-index: 3;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                0 0 20px rgba(255, 255, 255, 0.5);
}

.section-button.slice-effect:hover .slice-line {
    animation: sliceEffect 0.8s ease-out forwards;
}

/* Slice Effect animasyonu - geçip GİTMELİ */
    top: 50%;
    left: -2%;
    right: -2%;
    height: 4px;
    transform: translateY(-50%) scaleX(0);
    opacity: 0;
    z-index: 4;
    pointer-events: none;
    
    /* Kesik çizgi - dark line */
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 3%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 0.1) 97%,
        transparent 100%
    );
    
    /* Kesik kenarları - beyaz highlight */
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(255, 255, 255, 0.9),
        0 0 12px 2px rgba(255, 255, 255, 0.5),
        0 -1px 0 rgba(255, 255, 255, 0.7),
        0 1px 0 rgba(255, 255, 255, 0.7);
    
    /* Animasyon sonrası KALICI */
    transition: opacity 0.3s ease 1.3s, transform 0.3s ease 1.3s;
}

/* Hover'da kesik izi göster - Slice BİTTİKTEN SONRA */
.dynamic-section .section-button.slice-effect:hover .cut-mark {
    opacity: 1 !important;
    transform: translateY(-50%) scaleX(1) !important;
    animation: cutMarkSlash 0.3s ease-out 0.9s 1 !important;
}

/* Hover sonrası da kalsın */
.dynamic-section .section-button.slice-effect.cut .cut-mark {
    opacity: 1 !important;
    transform: translateY(-50%) scaleX(1) !important;
}

@keyframes cutMarkSlash {
    0% {
        transform: translateY(-50%) scaleX(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-50%) scaleX(1) rotate(1deg);
    }
    100% {
        transform: translateY(-50%) scaleX(1) rotate(0deg);
    }
}

/* Text shake - sadece BİR KERE - kesik anında */
.dynamic-section .section-button.slice-effect:hover .slice-text {
    animation: textCutShake 0.15s ease-out 0.9s 1 !important;
}

@keyframes textCutShake {
    0%, 100% {
        transform: translateY(0);
    }
    33% {
        transform: translateY(-1.5px);
    }
    66% {
        transform: translateY(1px);
    }
}

/* Blood Drip Effect - Daha specific */
.dynamic-section .section-button::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 8px;
    height: 0;
    background: radial-gradient(ellipse at center top, 
        #8b0000 0%,
        #8b0000 30%,
        #a00000 60%,
        rgba(139, 0, 0, 0.8) 80%,
        rgba(139, 0, 0, 0) 100%);
    opacity: 0;
    transform: translateX(-50%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.dynamic-section .section-button:hover::after {
    opacity: 1 !important;
    animation: bloodDripRealistic 1.5s ease-in infinite !important;
}

.dynamic-section .section-button::before {
    content: '';
    position: absolute;
    left: 60%;
    top: 100%;
    width: 5px;
    height: 0;
    background: radial-gradient(ellipse at center top, 
        #8b0000 0%,
        rgba(139, 0, 0, 0.8) 50%,
        rgba(139, 0, 0, 0) 100%);
    opacity: 0;
    transform: translateX(-50%);
    border-radius: 50%;
}

.dynamic-section .section-button:hover::before {
    opacity: 1 !important;
    animation: bloodDripSmall 1.8s ease-in 0.4s infinite !important;
}

@media (max-width: 768px) {
    .dynamic-section {
        padding: 4rem 2rem;
    }
    
    .section-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        /* Mobile'da her zaman görsel üstte */
        display: flex;
        flex-direction: column;
    }
    
    /* Görsel her zaman en üstte */
    .section-image {
        order: 1;
    }
    
    /* Content her zaman altta */
    .section-content {
        order: 2;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-text {
        font-size: 1.1rem;
    }
}
