/* Base Styles */
:root {
    /* --primary-bg: #0a0a12; */
    --primary-bg: #000;
    /* --secondary-bg: #141428;  */
    --secondary-bg: #0d2165;
    --text-light: #ffffff;
    --accent: #28deff;
    --accent-secondary: #ffffff;
    --accent-glow: rgb(21 190 240 / 30%);
    --accent-secondary-glow: rgba(255, 149, 0, 0.3);
    --text-dark: #000000;
    --header-height: 100px;
    --header-bg: rgba(10, 10, 18, 0.95);
    --header-border: rgba(255, 45, 85, 0.2);
    --header-glow: rgba(255, 45, 85, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    --gradient-glow: linear-gradient(135deg, var(--accent-glow), var(--accent-secondary-glow));
}

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

html {
    font-size: 100%;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25;
}

a, button, input, label, li, p {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Button Styles */
.button {
    padding: 0.75rem 1.5rem;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-height: 48px;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 0 20px var(--accent-glow);
}

.button:disabled {
    cursor: not-allowed;
}

.button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(19,9,24,0.8), 0 0 0 6px rgba(241,170,28,0.6);
}

.button-light {
    background: var(--accent);
    color: var(--text-dark);
}

.button-dark {
    background: var(--text-dark);
    color: var(--accent);
}

.button-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

/* Hover gradient overlay for light buttons */
.button-light .absolute.inset-0.bg-gradient-to-r {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)) !important;
}

.button-light .absolute.inset-0.bg-gradient-to-r.blur-sm {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)) !important;
    filter: blur(4px);
}

/* Hoverlar */
.button-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px var(--accent-glow),
        0 0 60px var(--accent-glow);
}

.button-dark:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.button-outline:hover {
    background: var(--accent);
    color: var(--text-dark);
}

.button-large {
    padding: 1rem 2rem;
    min-height: 56px;
    min-width: 200px;
    font-size: 1.125rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(40, 222, 255, 0.1);
    box-shadow: 0 0 20px rgba(40, 222, 255, 0.1);
}

.header-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(40, 222, 255, 0.2) 20%,
        rgba(40, 222, 255, 0.2) 80%,
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header.scrolled .header-container::after {
    opacity: 1;
}

.header-logo {
    display: block;
    height: 80px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    grid-column: 2;
    justify-self: center;
}

.logo-image {
    height: 100%;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(40, 222, 255, 0.3));
    object-fit: contain;
}

.header-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    grid-column: 2;
    justify-self: center;
}

.header-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.header-social-link:hover {
    /* animation: shake 0.5s ease-in-out; */
}

.social-icon {
    font-size: 1.25rem;
    line-height: 1;
    color: var(--accent);
}
/* 
.header-social-link:hover .social-icon {
    transform: none;
}

.header-social-link span:not(.social-icon) {
    transition: all 0.3s ease;
}

.header-social-link:hover span:not(.social-icon) {
    text-shadow: none;
} */


/* .header-social-link img.social-icon { */
    /* color: transparent; */
    /* filter: brightness(1); */
    /* transition: all 0.3s ease; */
/* } */

/* .header-social-link:hover img.social-icon {
    transform: none;
    filter: none;
} */

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Dil Sçeme */
.language-selector {
    position: relative;
    z-index: 1001;
    margin-right: 2rem;
}

.language-selector button {
    background: rgba(40, 222, 255, 0.1);
    border: 1px solid rgba(40, 222, 255, 0.2);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector button:hover {
    background: rgba(40, 222, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(40, 222, 255, 0.2);
}

#language-menu {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(40, 222, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(40, 222, 255, 0.1);
}

#language-menu a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

#language-menu a:hover {
    background: rgba(40, 222, 255, 0.1);
    color: var(--accent);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-rows: 640px 360px 96px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
    position: relative;
    margin-top: -4rem;
    padding-top: var(--header-height);
    overflow: hidden;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(40, 222, 255, 0.2) 0%, #000000 100%), 
        radial-gradient(circle at 80% 100%, rgba(40, 222, 255, 0.1) 0%, #000000 100%);
    opacity: 0.5;
    animation: pulse 4s ease-in-out infinite;
    border: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
    border: none;
}

.hero-logo {
    display: block;
    height: 120px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.hero-logo .logo-image {
    height: 100%;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(40, 222, 255, 0.3));
    object-fit: contain;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-logo:hover .logo-image {
    filter: drop-shadow(0 0 12px rgba(40, 222, 255, 0.5));
}

.hero-description {
    grid-row: 1/2;
    grid-column: 2/3;
    justify-self: flex-start;
    max-width: 640px;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-description h1 {
    font-size: clamp(2rem, 1vw, 5rem);
    line-height: 0.9;
    margin: 0 0 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px var(--accent-glow);
    font-weight: 800;
    letter-spacing: -0.02em;
    animation: fadeIn 1s ease-out forwards;
    text-align: center;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        text-shadow: 0 0 0 var(--accent-glow);
    }
    to {
        opacity: 1;
        text-shadow: 0 0 10px var(--accent-glow);
    }
}

.hero-description p {
    font-size: clamp(0.875rem, 1.25vw, 1.125rem);
    line-height: 1.375;
    margin: 2rem 0;
    text-shadow: 0 0 5px var(--accent-glow);
    animation: fadeInUp 1s ease-out 0.3s backwards;
    text-align: center;
    width: 100%;
}

.hero-actions {
    display: grid;
    grid-auto-flow: column;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    margin-top:1rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    grid-row: 1/3;
    grid-column: 1/2;
    align-self: flex-end;
    z-index: 2;
    min-width: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-imagewrapper_2{
    position: relative;
    width: 100%;
    height: 100%;
    grid-row: 1/4;
    grid-column: 2/3;
    align-self: flex-end;
    clip-path: ellipse(60% 100% at top center);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: translate(0px, -20rem) scale(1.5) !important;
    transition: transform 0.1s ease-out;
}

@media (max-width: 1024px) {
    .hero-image {
        transform: translate(0px, -10rem) scale(1.3) !important;
    }
}

@media (max-width: 768px) {
    .hero-image {
        transform: translate(0px, 0px) scale(1.2) !important;
    }
}

.hero-image img {
    display: block;
    width: auto;
    height: 200%;
    max-width: 200%;
    max-height: 200%;
    object-fit: contain;
    position: relative;
    transform: translateX(-15%);
}

@media (min-width: 1024px) {
    .hero-image img {
        height: 200%;
        max-height: 200%;
        transform: translateX(-15%) scale(1.5);
    }
}

.hero-bottom {
    position: relative;
    z-index: 1;
    overflow: hidden;
    grid-row: 2/3;
    grid-column: 1/3;
    align-self: end;
    height: 100%;
    background-color: transparent;
    background-image: url('../images/doesntmatter.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.hero-overlay {
    position: absolute;
    z-index: 3;
    height: 100%;
    width: 100%;
    clip-path: ellipse(60% 100% at top center);
    background: transparent;
    pointer-events: none;
}

.hero-spacer {
    grid-row: 3/4;
    grid-column: 1/3;
    height: 100%;
    z-index: 2;
    background-color: var(--text-dark);
}

/* Hero Footer */
.hero-footer-wrapper {
    background-color: var(--text-dark);
    color: var(--secondary-bg);
    display: flex;
    justify-content: center;
    padding: 0rem 2rem;
}

.hero-footer {
    max-width: 1536px;
    width: 100%;
}

.hero-footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-footer-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-footer-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    text-align: justify;
}

.hero-footer-content-divider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
}

.hero-footer-divider {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent) 20%,
        var(--accent) 80%,
        transparent
    );
    margin: 1.5rem 0;
    box-shadow: 0 0 10px var(--accent-glow);
    opacity: 0.8;
}

.hero-footer-divider-center {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent) 20%,
        var(--accent) 80%,
        transparent
    );
    margin: 1.5rem 0;
    box-shadow: 0 0 10px var(--accent-glow);
    opacity: 0.8;
}
.hero-footer-vertical-divider {
    width: 100px;         /* Yatay çizgi için genişlik */
    height: 2px;          /* Yatay çizgi için yükseklik */
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;       /* Üstten ve alttan boşluk */
    position: relative;
    box-shadow: 0 0 10px var(--accent-glow);
}

.hero-footer-vertical-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent) 20%,
        var(--accent) 80%,
        transparent
    );
    box-shadow: 0 0 10px var(--accent-glow);
    opacity: 0.8;
}

.hero-footer-dib {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    text-align: justify;
    color: var(--text-light);
    font-style: italic;
}

.hero-footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-footer-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

.hero-footer-cta .button {
    min-width: 200px;
}

@media (max-width: 768px) {
    .hero-footer-wrapper {
        padding: 3rem 1rem;
    }

    .hero-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-footer-vertical-divider {
        width: 80%;
        height: 1px;
        margin: 2rem 0;
    }

    .hero-footer-vertical-divider::before {
        display: none;
    }

    .hero-footer-right {
        width: 100%;
    }

    .hero-footer-description,
    .hero-footer-dib {
        font-size: 1rem;
    }

    .hero-footer-cta {
        margin-top: 1.5rem;
    }

    .hero-footer-cta p {
        font-size: 1.125rem;
    }

    .hero-footer-content-divider {
        margin: 1rem 0;
    }
    
    .hero-footer-divider-center {
        width: 150px;
    }
}

/* Platform Section */
.platform-sectionn {
    background: #000;
    padding: 0rem 0rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100vw;
}
.platform-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 3rem;
    gap: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    z-index: 10;
    animation: scroll 1200s linear infinite;
    width: max-content;
}

.platform-container:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.platform-container::-webkit-scrollbar {
    display: none;
}

.platform-logo {
    height: 5rem;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
    opacity: 0.7;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
    max-width: 100%;
}
.platform-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
    z-index: 20;
}

/* Platform Section Placeholders */
.platform-logo-placeholder {
    width: 100px; /* Geçici genişlik */
    height: 50px; /* Geçici yükseklik */
    background: rgba(255, 255, 255, 0.1); /* Geçici arkaplan rengi */
    border-radius: 8px; /* Hafif yuvarlak köşeler */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5); /* İçindeki metin rengi */
    font-size: 0.8rem;
    text-align: center;
    padding: 0.5rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .platform-logo-placeholder {
        width: 80px;
        height: 40px;
        font-size: 0.7rem;
    }
}

/* Responsive Design Updates */
@media (max-width: 1200px) {
    .platform-container {
        gap: 1.5rem;
    }
    
    .platform-logo {
        height: 4rem;
    }
}

@media (max-width: 768px) {
    .platform-section {
        padding: 3rem 0;
    }
    
    .platform-container {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .platform-logo {
        height: 3rem;
    }
}

@media (max-width: 480px) {
    .platform-section {
        padding: 2rem 0;
    }
    
    .platform-container {
        gap: 0.5rem;
    }
    
    .platform-logo {
        height: 2.5rem;
    }
}

/* Description Section */
.description-section {
    background-color: var(--primary-bg);
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.description-content {
    max-width: 42rem;
    text-align: center;
}

.description-logo {
    height: 2.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #000;
    color: var(--text-light);
    padding: 1rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 2rem;
    margin-left: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    position: relative;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}

.footer-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

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

.footer-divider {
    height: 0px;
    background-color: rgba(236,226,208,0.25);
    margin: 2rem 0;
}

.footer-legal {
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .footer-legal {
        padding: 0 1rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: var(--text-dark);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 1536px) {
    .hero {
        column-gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-rows: 592px 192px 64px;
        column-gap: 0.5rem;
    }

    .hero-description {
        justify-self: flex-start;
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-wrapper {
        min-width: 400px;
    }
    
    .hero-image img {
        transform: translateX(-10%);
        height: 100%; // 180
        max-height: 100%; //180
    }
}
.hero-image-wrapper:hover .hero-image {
    transform: translate(0px, -20rem) scale(1.52) !important;
    transition: transform 0.3s ease-out !important;
}

@media (max-width: 768px) {
    .hero {
        grid-template-rows: 192px 128px 40px;
    }

    .hero-description {
        padding: 1rem;
    }

    .hero-description h1 {
        margin: 2rem 0 0;
        font-size: 2.5rem;
    }

    .hero-description p {
        font-size: 1rem;
    }

    .hero-actions {
        display: none;
    }

    .hero-footer-wrapper {
        padding: 1rem;
    }

    .hero-footer {
        font-size: 1rem;
    }

    .platform-section {
        padding: 1.5rem 0;
    }

    .platform-logo {
        height: 4rem;
    }

    .description-section {
        padding: 2rem 1rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .hero-image-wrapper {
        min-width: 320px;
    }
    
    .hero-image img {
        transform: translateX(-5%);
        height: 150%;
        max-height: 150%;
    }
}


/* Mobile override - hero image scroll fix */
@media (max-width: 768px) {
    /* Hero image'i sabit position ile arkaplana sabitle */
    .hero-image-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 1 !important; /* -1 yerine 1 kullan */
        overflow: hidden !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-image {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 1 !important; /* -1 yerine 1 kullan */
        overflow: hidden !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
    }

    .hero-image picture {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 1 !important; /* -1 yerine 1 kullan */
    }

    .hero-image img {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        object-fit: cover !important;
        object-position: center center !important;
        z-index: 1 !important; /* -1 yerine 1 kullan */
        transform: none !important;
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
        backface-visibility: hidden !important;
    }

    /* Hero description'ı resmin üstüne çıkar */
    .hero-description {
        position: relative !important;
        z-index: 10 !important; /* Resimden daha yüksek z-index */
        background: rgba(0, 0, 0, 0.6) !important; /* Arka plan ekle */
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }

    /* Social links'i de resmin üstüne çıkar */
    .hero-social-links {
        z-index: 15 !important; /* En yüksek z-index */
    }

    /* Ana hero container'ı ayarla */
    .hero {
        position: relative !important;
        z-index: 5 !important;
    }
    
    /* Tüm hero transform'larını devre dışı bırak */
    .hero *[style*="transform"] {
        transform: none !important;
    }
    
    /* JavaScript tarafından eklenen inline stilleri override et */
    .hero-image[style],
    .hero-image-wrapper[style],
    .hero-image picture[style],
    .hero-image img[style] {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        z-index: 1 !important;
    }
}

:focus {
    border-radius: 4px;
    outline: none;
    box-shadow: 0 0 0 2px rgba(19,9,24,0.8), 0 0 0 6px rgba(241,170,28,0.6);
}


@keyframes glow {
    from {
        text-shadow: 
            0 0 5px var(--accent-glow),
            0 0 10px var(--accent-glow);
    }
    to {
        text-shadow: 
            0 0 10px var(--accent-glow),
            0 0 15px var(--accent-glow);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Fade In Animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Game Screenshots Section */
.screenshots-section {
    background: var(--primary-bg);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.screenshots-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.screenshots-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px var(--accent-glow);
}

.screenshots-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    flex: 0 0 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.slider-button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--text-light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(4px);
}

.slider-button:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.slider-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Responsive'ine sokayım */
@media (max-width: 768px) {
    .screenshots-section {
        padding: 3rem 0;
    }
    
    .screenshots-container {
        padding: 0 1rem;
    }
    
    .screenshots-title {
        margin-bottom: 2rem;
    }
    
    .slider-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .screenshots-section {
        padding: 2rem 0;
    }
    
    .slider-button {
        width: 36px;
        height: 36px;
    }
}

/* Yukarı Çık */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: var(--text-light);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 
        0 0 20px var(--accent-glow),
        0 0 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--accent-secondary);
    box-shadow: 
        0 0 30px var(--accent-glow),
        0 0 60px var(--accent-glow);
}

.back-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 2.5rem;
        height: 2.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .back-to-top svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Partnership Section */
.partnership-section {
    background: var(--primary-bg);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.partnership-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.partnership-left,
.partnership-center,
.partnership-right {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.partnership-logo {
    width: auto;
    height: 80px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    filter: grayscale(100%) brightness(0.8);
}

.partnership-logo:hover {
    background: none;
    transform: scale(1.1);
    box-shadow: none;
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

@media (max-width: 1200px) {
    .partnership-container,
    .partnership-left,
    .partnership-center,
    .partnership-right {
        gap: 2rem;
    }

    .partnership-logo {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .partnership-container,
    .partnership-left,
    .partnership-center,
    .partnership-right {
        flex-direction: row;
        gap: 1.5rem;
    }

    .partnership-left,
    .partnership-center,
    .partnership-right {
        width: auto;
    }

    .partnership-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .partnership-container,
    .partnership-left,
    .partnership-center,
    .partnership-right {
        gap: 1rem;
    }

    .partnership-logo {
        height: 40px;
    }
}

/* Sol ve sağ logolar için boşluk ayarı */
.footer-partnerarea .footer-logo.left:last-child {
    margin-right: 50px; /* Ortadaki logodan uzaklaştırmak için sağa boşluk */
}

.footer-partnerarea .footer-logo.right:first-child {
    margin-left: 50px; /* Ortadaki logodan uzaklaştırmak için sola boşluk */
}

@media (max-width: 768px) {
    .footer-partnerarea .footer-logo.left:last-child,
    .footer-partnerarea .footer-logo.right:first-child {
        margin-right: 20px; /* Mobil görünümde boşluğu azalt */
        margin-left: 20px; /* Mobil görünümde boşluğu azalt */
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.footer-partnerarea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 20px 0 0;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    position: relative;
    min-height: 100px; /* Minimum yükseklik */
}

.footer-logo {
    display: flex;
    align-items: center;
    max-width: 600px;
}

.footer-logo.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo.center img {
    max-width: 120px; /* Merkez logo boyutunu */
    height: auto;
    object-fit: contain;
}

.footer-logo.left {
    margin-right: auto;
    padding-left: 2rem;
    z-index: 1;
}

.footer-logo.left:first-child {
    margin-right: 1rem;
}

.footer-logo.left:last-child {
    margin-right: 3rem;
}

.footer-logo.right {
    margin-left: auto;
    padding-right: 2rem;
    z-index: 1;
}

.footer-logo.right:first-child {
    margin-left: 3rem;
}

.footer-logo.right:last-child {
    margin-left: 1rem;
}

/* Responsive tasarım için medya sorguları */
@media (max-width: 768px) {
    .footer-partnerarea {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
        min-height: auto;
    }

    .footer-logo.left,
    .footer-logo.right {
        margin: 0;
        padding: 0;
    }

    .footer-logo.left:first-child,
    .footer-logo.left:last-child,
    .footer-logo.right:first-child,
    .footer-logo.right:last-child {
        margin: 0;
    }

    .footer-logo.center {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-logo.center img {
        max-width: 100px; /* Mobilde merkez logo boyutunu */
    }
}

.logo {
    height: 30px;
    width: auto;
}

.text-logo {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

/* ARC Raiders için özel stil */
.center {
    font-size: 20px;
    font-weight: bold;
}

.arc {
    color: #ffffff;
    margin-right: 5px;
}

.raiders {
    background: linear-gradient(to right, #ff0000, #00ff00, #0000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sol ve sağ logolar için boşluk ayarı */
.left:nth-child(2) {
    margin-left: 20px;
}

.right:nth-child(4) {
    margin-right: 20px;
}

/* Preorder Popup Styles */
.preorder-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.preorder-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preorder-popup-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    animation: popupFadeIn 0.3s ease-out;
}

.preorder-popup-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preorder-popup-header h2 {
    color: var(--accent);
    font-size: 2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.preorder-popup-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.preorder-popup-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.preorder-popup-body {
    padding: 2rem;
}

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

.preorder-option {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preorder-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
}

.preorder-option.featured {
    background: linear-gradient(135deg, rgba(40, 222, 255, 0.1) 0%, rgba(40, 222, 255, 0.05) 100%);
    border: 2px solid var(--accent);
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preorder-option h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    color: var(--accent);
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.preorder-option ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.preorder-option ul li {
    color: var(--text-light);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.preorder-option ul li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.preorder-button {
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.preorder-button:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 222, 255, 0.3);
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .preorder-popup-content {
        width: 95%;
        margin: 1rem auto;
    }

    .preorder-options {
        grid-template-columns: 1fr;
    }

    .preorder-popup-header h2 {
        font-size: 1.5rem;
    }

    .preorder-option {
        padding: 1.5rem;
    }
}

/* Wishlist Dialog Styles */
.dialog {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.dialog__content {
    position: relative;
    max-width: 90vw;
    max-height: 98vh;
    background: transparent;
    color: var(--text-light);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: dialogShow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dialog__content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    border-radius: 15px;
}

.dialog__content > * {
    position: relative;
    z-index: 1;
}

@keyframes dialogShow {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.dialog__content--large {
    width: 800px;
    height: 560px;
    background: url('./images/popupwhistlist.png') no-repeat center center;
    background-size: cover;
}

.wishlist-dialog__content {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.wishlist-dialog__art {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    order: 2;
    height: 100%;
}

.wishlist-dialog__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wishlist-dialog__art:hover img {
    transform: scale(1.05);
}

.wishlist-dialog__actions {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
}

.wishlist-dialog__action-header {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1ba4db;
    text-align: left;
    margin-left: 1rem;
    text-shadow: 0 0 10px var(--glow-color);
    animation: headerGlow 2s infinite alternate;
}

.wishlist-dialog__platform-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 3rem;
}

.wishlist-dialog__platform {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
    border-radius: 15px;
    background: #000;
    border: 0px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
}

.wishlist-dialog__platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.wishlist-dialog__platform:hover {
    transform: translateY(-5px);
    background: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3),
               0 0 20px var(--glow-color);
    border-color: var(--primary-color);
}

.wishlist-dialog__platform:hover::before {
    left: 100%;
}

.wishlist-dialog__platform:hover .wishlist-dialog__platform-image {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--glow-color));
}

.wishlist-dialog__platform-image {
    width: 100%;
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .wishlist-dialog__content {
        grid-template-rows: 1fr 1.3fr;
        grid-template-columns: auto;
        gap: 1rem;
    }

    .wishlist-dialog__art {
        order: 1;
    }

    .wishlist-dialog__actions {
        order: 2;
    }

    .wishlist-dialog__action-header {
        text-align: center;
    }

    .wishlist-dialog__platform-container {
        align-items: center;
    }

    .wishlist-dialog__platform {
        max-width: 180px;
    }
}

.subtitle-social-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 2rem 0;
}

.subtitle-social-container p {
    flex: 1;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.375;
    text-shadow: 0 0 5px var(--accent-glow);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-social-links {
    position: absolute;
    right: 2rem;
    top: 27rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.hero-social-link:hover {
    transform: translateX(3px);
}

.hero-social-link .social-icon {
    font-size: 1.25rem;
    line-height: 1;
    color: var(--accent);
    transition: all 0.3s ease;
}

.hero-social-link:hover .social-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

@media (max-width: 768px) {
    .hero-social-links {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        padding: 1rem;
        margin-top: 1rem;
        gap: 1rem;
    }

    .hero-social-link {
        padding: 0.25rem;
    }

    .hero-social-link:hover {
        transform: translateY(-3px);
    }

    .hero-social-link .social-icon {
        font-size: 1.5rem;
    }
}