/* Ana Stiller */
:root {
    --main-color: #FFD700;
    /* Altın renk */
    --accent-color: #FFA500;
    /* Turuncu-altın - aksan rengi */
    --secondary-color: #8B4513;
    /* Koyu kahverengi */
    --tertiary-color: #D2B48C;
    /* Açık kahverengi */
    --background-color: #0a0a0a;
    --text-color: #ffffff;
    --section-bg: #121212;
    --card-bg: #1e1e1e;
}

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

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

body {
    font-family: 'Pixelify Sans', cursive, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}





.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 165, 0, 0.3);
}

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

h1,
h2,
h3 {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.section-title {
    font-family: 'Pixelify Sans', cursive, sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--main-color), var(--accent-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Header — referans 1: tam siyah bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: none;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(1200px, 92%);
    margin: 0 auto;
}

.logo {
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.logo h1 {
    font-family: 'Pixelify Sans', cursive, sans-serif;
    font-size: clamp(1.45rem, 3.2vw, 2rem);
    font-weight: 700;
    color: #ffdf4a;
    margin-bottom: 0;
    letter-spacing: 0.04em;
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 180, 0, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    flex: 1;
    margin: 0;
    padding: 0;
}


.nav-download-mobile {
    display: none;
}

.nav-links a {
    font-family: 'Pixelify Sans', cursive, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s ease;
    position: relative;
    padding: 6px 2px;
}

.nav-download-desktop {
    flex-shrink: 0;
}

.nav-links a:not(.download-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--main-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-links a:not(.download-btn):hover::after {
    width: 100%;
}

.nav-links a:not(.download-btn):hover {
    color: #fff;
}

.download-btn {
    font-family: 'Pixelify Sans', cursive, sans-serif;
    background: linear-gradient(180deg, #fff176 0%, #ffd700 45%, #f0a000 100%);
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8125rem;
    color: #0a0a0a;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(255, 200, 0, 0.35);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero — full-bleed screenshot + left vignette (reference layout) */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(5.5rem + env(safe-area-inset-top, 0)) 0 3rem;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../../public/images/merluis-wallpaper.png');
    background-size: cover;
    background-position: 58% center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Referans: solda koyu gölgeli alan, sağda gün batımı açılsın */
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(8, 5, 4, 0.94) 0%,
        rgba(12, 8, 6, 0.82) 22%,
        rgba(18, 12, 8, 0.45) 45%,
        rgba(30, 20, 10, 0.12) 62%,
        transparent 78%
    );
}

@media (max-width: 768px) {
    .hero-vignette {
        background: linear-gradient(
            180deg,
            rgba(8, 5, 4, 0.9) 0%,
            rgba(12, 8, 6, 0.5) 42%,
            rgba(20, 14, 8, 0.2) 100%
        );
    }

    .hero-bg {
        background-position: center;
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 580px;
    text-align: left;
    padding: 0 0.25rem;
}

.hero-title {
    font-family: 'Pixelify Sans', cursive, sans-serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1.35rem;
    color: #ffe566;
    letter-spacing: 0.06em;
    text-shadow:
        0 0 22px rgba(255, 220, 100, 0.65),
        0 0 50px rgba(255, 170, 40, 0.35),
        0 2px 0 rgba(120, 80, 0, 0.35);
    animation: heroTitleGlow 3.5s ease-in-out infinite;
}

@keyframes heroTitleGlow {

    0%,
    100% {
        text-shadow:
            0 0 20px rgba(255, 220, 100, 0.55),
            0 0 44px rgba(255, 170, 50, 0.22),
            0 2px 0 rgba(120, 80, 0, 0.35);
    }

    50% {
        text-shadow:
            0 0 32px rgba(255, 230, 120, 0.75),
            0 0 64px rgba(255, 180, 60, 0.38),
            0 2px 0 rgba(120, 80, 0, 0.35);
    }
}

.hero h2.typewriter-text {
    font-family: 'Pixelify Sans', cursive, sans-serif;
}

.hero-tagline {
    font-family: 'Pixelify Sans', cursive, sans-serif;
    font-size: clamp(1.02rem, 1.4vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 2.25rem;
    max-width: 500px;
    color: #ffffff;
    line-height: 1.78;
    letter-spacing: 0.01em;
}

/* Referans 1: büyük CTA — piksel yazı + belirgin sarı glow */
.cta-button {
    display: inline-block;
    font-family: 'Pixelify Sans', cursive, sans-serif;
    background: linear-gradient(180deg, #fff59d 0%, #ffd700 40%, #f5a000 100%);
    color: #0a0a0a;
    padding: 1.05rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    box-shadow:
        0 0 0 1px rgba(255, 220, 100, 0.5),
        0 12px 40px rgba(255, 200, 60, 0.55),
        0 0 48px rgba(255, 190, 50, 0.45),
        0 0 80px rgba(255, 160, 0, 0.2);
    margin-top: 0.35rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(255, 235, 150, 0.65),
        0 16px 48px rgba(255, 210, 80, 0.65),
        0 0 56px rgba(255, 200, 60, 0.5),
        0 0 100px rgba(255, 170, 40, 0.28);
}

/* Hakkında Bölümü */
.about-section {
    padding: 6rem 0;
    background-color: var(--section-bg);
    position: relative;
    z-index: 1;
}

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

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

.about-wrapper {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.about-text {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding-right: 4rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-image {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    text-align: center;
}

#gameplay-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    display: inline-block;
}

#gameplay-img:hover {
    transform: scale(1.05);
}

/* Özellikler Bölümü */
.features-section {
    padding: 6rem 0;
    background-color: var(--background-color);
    position: relative;
    z-index: 1;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--background-color));
    z-index: -1;
    pointer-events: none;
}

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

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.1s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-3px);
    /* Hafif yukarı hareket */
    box-shadow:
        0 10px 30px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 165, 0, 0.2),
        0 0 40px rgba(139, 69, 19, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: transparent;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Merluis — pasta malzemeleri ikonları */
.feature-icon.icon-flour::before {
    background-image: url('../../public/images/icons/feature-flour.svg');
    background-size: 100% 100%;
}

.feature-icon.icon-eggs::before {
    background-image: url('../../public/images/icons/feature-eggs.svg');
    background-size: 100% 100%;
}

.feature-icon.icon-sugar::before {
    background-image: url('../../public/images/icons/feature-sugar.svg');
    background-size: 100% 100%;
}

.feature-icon.icon-oven::before {
    background-image: url('../../public/images/icons/feature-oven.svg');
    background-size: 100% 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.feature-card p {
    font-size: 1rem;
}

/* Galeri Bölümü */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--section-bg);
    position: relative;
    z-index: 1;
}

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

.gallery-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    width: 300px;
    height: 200px;
    transition: box-shadow 0.3s ease, transform 0.1s ease;
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
    /* Resmin kendisi hareket etmesin */
}

/* Hover efekti - sadece ışık efekti */
.gallery-item:hover {
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 165, 0, 0.3),
        0 0 60px rgba(139, 69, 19, 0.2);
    transform: translateY(-2px);
    /* Çok hafif yukarı hareket */
}

/* Tıklama efekti */
.gallery-item:active {
    transform: scale(0.98);
}

/* Resim hover'da büyümesin */
.gallery-item:hover .gallery-img {
    transform: none;
}

/* Footer - Düzeltildi */
footer {
    background-color: #060606 !important;
    padding: 3rem 0 !important;
    border-top: 2px solid #FFD700 !important;
    margin-top: 2rem !important;
    width: 100% !important;
}

.footer-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.footer-logo {
    flex: 1 !important;
    min-width: 250px !important;
}

.footer-logo h2 {
    font-size: 2rem !important;
    background: linear-gradient(90deg, #FFD700, #FFA500) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    margin-bottom: 0.5rem !important;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem !important;
}

.footer-legal {
    flex: 1 !important;
    min-width: 250px !important;
    background: rgba(255, 215, 0, 0.1) !important;
    padding: 1.5rem !important;
    border-radius: 10px !important;
    border: 2px solid #FFD700 !important;
}

.footer-legal h3 {
    font-size: 1.5rem !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.legal-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.legal-links li {
    margin-bottom: 0.8rem !important;
}

.legal-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    display: block !important;
    padding: 0.5rem !important;
    border-radius: 5px !important;
}

.legal-link:hover {
    color: #FFD700 !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--main-color);
}

/* Mobil Responsive Tasarım */
@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 1.25rem;
    }

    .gallery-grid {
        gap: 1.5rem;
    }

    .gallery-item {
        width: 280px;
        height: 180px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .nav-download-desktop {
        display: none;
    }

    .nav-download-mobile {
        display: list-item;
        margin-top: 0.5rem;
    }

    .nav-download-mobile .download-btn {
        display: inline-block;
        width: auto;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        height: 100dvh;
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.75rem;
        width: min(320px, 85%);
        transform: translateX(100%);
        transition: transform 0.45s ease;
        padding: 5.5rem 1.5rem 2rem;
        z-index: 999;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
    }

    .burger {
        display: block;
        z-index: 1001;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .hero {
        padding-top: calc(5rem + env(safe-area-inset-top, 0));
        align-items: flex-end;
        padding-bottom: 2.5rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .about-wrapper {
        display: block;
    }

    .about-text,
    .about-image {
        display: block;
        width: 100%;
        padding: 0;
    }

    .about-text {
        text-align: center;
        margin-top: 2rem;
    }

    .about-image {
        margin-bottom: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-legal {
        width: 100%;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .legal-links li {
        margin-bottom: 0;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .gallery-item {
        width: 250px;
        height: 160px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        width: 90%;
        height: 180px;
    }

    .nav-links {
        width: 100%;
    }
}

/* ===== MODERN FEATURES ===== */

/* Loading Screen - Basitleştirildi */
.loading-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #0a0a0a !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 10000 !important;
    transition: opacity 0.5s ease !important;
}

.loading-spinner {
    width: 80px !important;
    height: 80px !important;
    border: 6px solid rgba(255, 215, 0, 0.3) !important;
    border-top: 6px solid #FFD700 !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    margin-bottom: 30px !important;
}

.loading-text {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    animation: pulse 2s ease-in-out infinite !important;
    text-align: center !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Scroll Progress Bar - Düzeltildi */
.scroll-progress {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 0% !important;
    height: 4px !important;
    background: linear-gradient(90deg, #FFD700, #FFA500, #8B4513) !important;
    z-index: 1001 !important;
    transition: width 0.1s ease !important;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Typewriter Effect - Düzeltildi */
.typewriter-text {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    display: inline-block !important;
    overflow: hidden !important;
    border-right: 3px solid var(--main-color) !important;
    white-space: nowrap !important;
    width: 0 !important;
    animation: typing 4s steps(20, end) 0.5s forwards, blink-caret 0.75s step-end infinite !important;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--main-color);
    }
}

/* Fade In Text */
.fade-in-text {
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Download Stats */
.download-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease 3s forwards;
}

.stat-item {
    text-align: center;
}

.counter {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Modern Button */
.modern-btn {
    position: relative;
    overflow: hidden;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Glassmorphism Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card.feature-card--highlight {
    box-shadow:
        0 0 28px rgba(255, 140, 40, 0.45),
        0 0 48px rgba(255, 120, 0, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 165, 0, 0.45);
}

/* Gallery Carousel */
.gallery-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: var(--main-color);
    transform: scale(1.2);
}

/* System Requirements */
.system-requirements {
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.req-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--main-color);
}

.req-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.req-header {
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.req-header:hover {
    background: rgba(255, 215, 0, 0.15);
}

.req-header::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.req-item.active .req-header::after {
    transform: translateY(-50%) rotate(45deg);
}

.req-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.req-item.active .req-content {
    max-height: 200px;
    padding: 1rem 1.5rem;
}

.req-content p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--main-color), var(--accent-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-color), var(--main-color));
}


/* Dark Mode */
body.dark-mode {
    --background-color: #000000;
    --section-bg: #0a0a0a;
    --card-bg: #111111;
    --text-color: #ffffff;
}

body.light-mode {
    --background-color: #f5f5f5;
    --section-bg: #ffffff;
    --card-bg: #f9f9f9;
    --text-color: #333333;
}

/* Responsive Modern Features */
@media screen and (max-width: 768px) {
    .download-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-container {
        height: 250px;
    }

    .scroll-to-top,
    .theme-toggle {
        right: 20px;
    }

    .theme-toggle {
        top: 80px;
    }
}

/* Email Font Fix - @ symbol görünmesi için */
.legal-content p strong+* {
    font-family: 'Arial', 'Helvetica', sans-serif !important;
}

/* Email adresleri için özel stil */
.legal-content p:has(strong:contains("Email")) {
    font-family: 'Arial', 'Helvetica', sans-serif !important;
}

/* Alternatif email fix */
.email-text {
    font-family: 'Arial', 'Helvetica', sans-serif !important;
}

/* Legal Pages Styles */
.legal-page {
    min-height: 80vh;
    padding: 8rem 0 4rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.8rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.legal-content strong {
    color: var(--main-color);
}

/* Mobile Responsive for Legal Pages */
@media screen and (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-page {
        padding: 6rem 0 2rem;
    }
}
}