/* 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', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}





.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 165, 0, 0.3);
}

.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 {
    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 Stili */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.logo h1 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: space-between;
    width: 60%;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 1;
}

.nav-links a::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:hover::after {
    width: 100%;
}

.download-btn {
    background: linear-gradient(900deg, var(--main-color), var(--accent-color));
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.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 Bölümü */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    width: 100%;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.08) 30%, rgba(10, 10, 10, 0) 70%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
    padding-left: 2rem;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero h2:not(.typewriter-text) {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 165, 0, 0.1);
    }

    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 165, 0, 0.3);
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
    color: #000;
    padding: 16px 48px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
    margin-top: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 165, 0, 0.4);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#hero-img {
    max-width: 80%;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* 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%);
}

/* Feature Icons - Base64 Encoded */
.feature-icon.color-change::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9IndhcnJpb3IiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmQ3MDAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmE1MDAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48Y2lyY2xlIGN4PSI1MCIgY3k9IjI1IiByPSI4IiBmaWxsPSJ1cmwoI3dhcnJpb3IpIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIvPjxyZWN0IHg9IjQwIiB5PSIzNSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjI1IiBmaWxsPSIjOEI0NTEzIiBzdHJva2U9IiNmZmQ3MDAiIHN0cm9rZS13aWR0aD0iMSIvPjxyZWN0IHg9IjMwIiB5PSI0MCIgd2lkdGg9IjEwIiBoZWlnaHQ9IjE1IiBmaWxsPSIjRDYyQjQ4Ii8+PHJlY3QgeD0iNjAiIHk9IjQwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTUiIGZpbGw9IiNENjJCNDgiLz48cmVjdCB4PSI0MCIgeT0iNjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0iIzhCNDUxMyIgc3Ryb2tlPSIjZmZkNzAwIiBzdHJva2Utd2lkdGg9IjEiLz48cmVjdCB4PSI0MCIgeT0iODAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIxMCIgZmlsbD0iI0Q2MkI0OCIgc3Ryb2tlPSIjZmZkNzAwIiBzdHJva2Utd2lkdGg9IjEiLz48L3N2Zz4=");
    background-size: 100% 100%;
}

.feature-icon.spells::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9InB1enpsZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZDcwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmYTUwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjI1IiB5PSIyNSIgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiBmaWxsPSJ1cmwoI3B1enpsZSkiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PGxpbmUgeDE9IjUwIiB5MT0iMjUiIHgyPSI1MCIgeTI9Ijc1IiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIvPjxsaW5lIHgxPSIyNSIgeTE9IjUwIiB4Mj0iNzUiIHkyPSI1MCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiLz48Y2lyY2xlIGN4PSIzNy41IiBjeT0iMzcuNSIgcj0iMyIgZmlsbD0iI2ZmZDcwMCIvPjxjaXJjbGUgY3g9IjYyLjUiIGN5PSIzNy41IiByPSIzIiBmaWxsPSIjZmZhNTAwIi8+PGNpcmNsZSBjeD0iMzcuNSIgY3k9IjYyLjUiIHI9IjMiIGZpbGw9IiNmZmE1MDAiLz48Y2lyY2xlIGN4PSI2Mi41IiBjeT0iNjIuNSIgcj0iMyIgZmlsbD0iI2ZmZDcwMCIvPjwvc3ZnPg==");
    background-size: 100% 100%;
}

.feature-icon.roguelike::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9InRyYXAiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZjMzNjYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZjY2MDAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cGF0aCBkPSJNNTAgMjBsMTUgMjBoLTMwbDE1LTIweiIgZmlsbD0iI2ZmMzM2NiIgc3Ryb2tlPSIjZmZkNzAwIiBzdHJva2Utd2lkdGg9IjEiLz48cGF0aCBkPSJNNTAgNDVsMTUgMjBoLTMwbDE1LTIweiIgZmlsbD0iI2ZmNjYwMCIgc3Ryb2tlPSIjZmZkNzAwIiBzdHJva2Utd2lkdGg9IjEiLz48cGF0aCBkPSJNNTAgNzBsMTUgMjBoLTMwbDE1LTIweiIgZmlsbD0iI2ZmMzM2NiIgc3Ryb2tlPSIjZmZkNzAwIiBzdHJva2Utd2lkdGg9IjEiLz48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiByPSI2IiBmaWxsPSIjZmZkNzAwIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIvPjxsaW5lIHgxPSIzMCIgeTE9IjUwIiB4Mj0iNzAiIHkyPSI1MCIgc3Ryb2tlPSIjZmZkNzAwIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1kYXNoYXJyYXk9IjIsMiIvPjxsaW5lIHgxPSI1MCIgeTE9IjMwIiB4Mj0iNTAiIHkyPSI3MCIgc3Ryb2tlPSIjZmZkNzAwIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1kYXNoYXJyYXk9IjIsMiIvPjwvc3ZnPg==");
    background-size: 100% 100%;
}

.feature-icon.pixel-art::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48ZGVmcz48cmFkaWFsR3JhZGllbnQgaWQ9InRyZWFzdXJlIiBjeD0iNTAlIiBjeT0iNTAlIiByPSI1MCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmQ3MDAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmE1MDAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIzMCIgeT0iNDUiIHdpZHRoPSI0MCIgaGVpZ2h0PSIyNSIgZmlsbD0iIzhCNDUxMyIgc3Ryb2tlPSIjZmZkNzAwIiBzdHJva2Utd2lkdGg9IjEiLz48cGF0aCBkPSJNMzAgNDVsMTAtMTBoMjBsMTAgMTAiIGZpbGw9IiNENjJCNDgiIHN0cm9rZT0iI2ZmZDcwMCIgc3Ryb2tlLXdpZHRoPSIxIi8+PHJlY3QgeD0iNDAiIHk9IjQ1IiB3aWR0aD0iMjAiIGhlaWdodD0iOCIgZmlsbD0idXJsKCN0cmVhc3VyZSkiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIwLjUiLz48Y2lyY2xlIGN4PSI1MCIgY3k9IjU4IiByPSI1IiBmaWxsPSIjZmZkNzAwIiBzdHJva2U9IiNmZmE1MDAiIHN0cm9rZS13aWR0aD0iMSIvPjxyZWN0IHg9IjM1IiB5PSI3MCIgd2lkdGg9IjMwIiBoZWlnaHQ9IjUiIGZpbGw9IiM4QjQ1MTMiIHN0cm9rZT0iI2ZmZDcwMCIgc3Ryb2tlLXdpZHRoPSIwLjUiLz48Y2lyY2xlIGN4PSI0MCIgY3k9IjM1IiByPSIyLjUiIGZpbGw9IiNmZmQ3MDAiLz48Y2lyY2xlIGN4PSI2MCIgY3k9IjM1IiByPSIyLjUiIGZpbGw9IiNmZmQ3MDAiLz48L3N2Zz4=");
    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 {
        width: 70%;
    }

    .hero h2 {
        font-size: 3rem;
    }

    .gallery-grid {
        gap: 1.5rem;
    }

    .gallery-item {
        width: 280px;
        height: 180px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 0;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding: 6rem 0;
        z-index: -1;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .hero {
        padding-top: 6rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .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 h2 {
        font-size: 2.5rem;
    }

    .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);
}

/* 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));
}

/* Parallax Effect */
.hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 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;
    }
}