/* Ana Stiller */
:root {
    --main-color: #2563EB;
    /* Ana mavi */
    --accent-color: #3B82F6;
    /* Açık mavi - aksan rengi */
    --secondary-color: #1E40AF;
    /* Koyu mavi */
    --tertiary-color: #93C5FD;
    /* Açık mavi */
    --background-color: #0a0a0a;
    --text-color: #ffffff;
    --section-bg: #121212;
    --card-bg: #1e1e1e;
}

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

/* Fare imlecini takip eden yuvarlak ikon - net ve belirgin mavi nokta */
.cursor-follower {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3B82F6;
    pointer-events: none;
    z-index: 99999;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.06s ease-out, width 0.15s ease, height 0.15s ease;
}
.cursor-follower.hover {
    width: 16px;
    height: 16px;
    background: #2563EB;
}
@media (hover: none) and (pointer: coarse) {
    .cursor-follower { display: none !important; }
}

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(37, 99, 235, 0.6), 0 0 20px rgba(59, 130, 246, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6), 0 0 20px rgba(59, 130, 246, 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(37, 99, 235, 0.4), 0 0 20px rgba(59, 130, 246, 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(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 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(37, 99, 235, 0.3);
    letter-spacing: 2px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(37, 99, 235, 0.3), 0 0 40px rgba(59, 130, 246, 0.1);
    }

    50% {
        text-shadow: 0 0 30px rgba(37, 99, 235, 0.6), 0 0 60px rgba(59, 130, 246, 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(37, 99, 235, 0.4), 0 0 20px rgba(59, 130, 246, 0.2);
    margin-top: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6), 0 0 30px rgba(59, 130, 246, 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(37, 99, 235, 0.8)) drop-shadow(0 0 60px rgba(37, 99, 235, 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(37, 99, 235, 0.4),
        0 0 20px rgba(59, 130, 246, 0.2),
        0 0 40px rgba(30, 64, 175, 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 - Uzay temalı (Space themed) */
.feature-icon.color-change::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 18 L62 48 L54 48 L54 82 L46 82 L46 48 L38 48 Z' fill='%232563EB' stroke='%2393C5FD' stroke-width='1'/%3E%3Ccircle cx='50' cy='52' r='6' fill='%233B82F6'/%3E%3Ccircle cx='50' cy='68' r='4' fill='%231E40AF'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.feature-icon.spells::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='38' fill='%231E40AF' stroke='%232563EB' stroke-width='2'/%3E%3Cellipse cx='50' cy='50' rx='38' ry='14' fill='none' stroke='%233B82F6' stroke-width='2'/%3E%3Ccircle cx='28' cy='28' r='6' fill='%233B82F6'/%3E%3Ccircle cx='72' cy='55' r='9' fill='%232563EB'/%3E%3Ccircle cx='35' cy='65' r='4' fill='%2393C5FD'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.feature-icon.roguelike::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='28' cy='32' r='14' fill='%234B5563' stroke='%233B82F6' stroke-width='1'/%3E%3Ccircle cx='58' cy='28' r='9' fill='%23374151' stroke='%232563EB' stroke-width='1'/%3E%3Ccircle cx='72' cy='58' r='16' fill='%234B5563' stroke='%2393C5FD' stroke-width='1'/%3E%3Cpath d='M18 72 L82 78 L78 92 L15 88 Z' fill='%231E40AF' stroke='%233B82F6' stroke-width='1'/%3E%3Ccircle cx='45' cy='50' r='5' fill='%2360A5FA'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.feature-icon.pixel-art::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='44' r='26' fill='%233B82F6' stroke='%232563EB' stroke-width='1'/%3E%3Ccircle cx='42' cy='38' r='5' fill='%23fff'/%3E%3Ccircle cx='58' cy='38' r='5' fill='%23fff'/%3E%3Cpath d='M34 56 Q50 66 66 56' stroke='%231E40AF' fill='none' stroke-width='2'/%3E%3Cpath d='M50 72 L50 88 M38 80 L62 80' stroke='%232563EB' stroke-width='2'/%3E%3Ccircle cx='50' cy='92' r='3' fill='%2393C5FD'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

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

.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(37, 99, 235, 0.6),
        0 0 40px rgba(59, 130, 246, 0.3),
        0 0 60px rgba(30, 64, 175, 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 #2563EB !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, #2563EB, #3B82F6) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    margin-bottom: 0.5rem !important;
}

/* Footer marka yazısı - normal renk (parlama yok) */
.footer-brand-glow {
    background: linear-gradient(90deg, #2563EB, #3B82F6) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !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(37, 99, 235, 0.1) !important;
    padding: 1.5rem !important;
    border-radius: 10px !important;
    border: 2px solid #2563EB !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: #2563EB !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(37, 99, 235, 0.3) !important;
    border-top: 6px solid #2563EB !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, #2563EB, #3B82F6, #1E40AF) !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(37, 99, 235, 0.4);
}

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

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 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(37, 99, 235, 0.4), 0 0 20px rgba(59, 130, 246, 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(37, 99, 235, 0.1);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.req-header:hover {
    background: rgba(37, 99, 235, 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(37, 99, 235, 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;
    }
}