/* Arayüz CSS Tasarım Sistemi (MinerTown Okyanus Teması) */

:root {
    --bg-main: #050507;
    --bg-navbar: rgba(12, 12, 14, 0.7);
    --bg-card: rgba(20, 20, 25, 0.55);
    
    --primary: #f97316; /* Neon Turuncu */
    --primary-hover: #ea580c;
    --primary-glow: rgba(249, 115, 22, 0.4);
    
    --secondary: #f59e0b;
    --text-primary: #fafaf9;
    --text-secondary: #a8a29e;
    --text-muted: #78716c;
    --border: rgba(255, 255, 255, 0.04);
    --border-hover: rgba(249, 115, 22, 0.25);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Glow Effects */
.glow-bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    animation: pulseBlob 8s infinite alternate ease-in-out;
}

.blob-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.blob-2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes pulseBlob {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-3%, 3%); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--bg-navbar);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 12px;
}

.brand-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #fff 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav-download {
    background: linear-gradient(135deg, var(--primary), #00d2ff);
    color: #040810 !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-nav-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot {
    width: 280px;
    height: 280px;
    object-fit: contain;
    z-index: 2;
    animation: floatMascot 4s infinite alternate ease-in-out;
}

.image-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: var(--primary);
    filter: blur(50px);
    opacity: 0.35;
    z-index: 1;
}

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

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

/* Button Downloader */
.btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 16px;
    padding: 16px 26px;
    gap: 18px;
    font-weight: 600;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Birinci Buton: Hemen İndir (Katı Turuncu-Sarı Gradyan) */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
    filter: brightness(1.1);
}

/* İkinci Buton: Web Panel (Yarı Saydam Koyu Cam) */
.btn-secondary {
    background: rgba(18, 18, 22, 0.55);
    color: #ffffff;
    border: 1px solid rgba(249, 115, 22, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    background: rgba(249, 115, 22, 0.08);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.25);
}

.btn-icon {
    font-size: 1.8rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-text small {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.stat-item i {
    color: var(--primary);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 30px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.08);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Install Section */
.install-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
}

.step-num {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #040810;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.step-card a:hover {
    text-decoration: underline;
}

.install-notice {
    margin-top: 50px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.install-notice i {
    color: #f59e0b;
    font-size: 1.6rem;
}

.install-notice p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.install-notice em, .install-notice strong {
    color: #f59e0b;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    background-color: #020408;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.design-credit {
    color: var(--text-secondary);
}

/* İndirme Sayacı Stilleri */
.download-counter {
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-weight: 500;
}

.download-counter i {
    color: var(--primary);
    font-size: 1.1rem;
}

.download-counter strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 992px) {
    .download-counter {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-mascot {
        width: 220px;
        height: 220px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-card {
        padding-top: 50px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobil uyumluluk için menü basitleştirildi */
    }
}

/* Güncelleme Geçmişi (Changelog) Stilleri */
.changelog-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.changelog-timeline {
    position: relative;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.changelog-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.changelog-item {
    position: relative;
    padding-left: 50px;
    transition: var(--transition);
}

.changelog-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    border: 2px solid var(--bg-main);
    z-index: 2;
    transition: var(--transition);
}

.changelog-item.active-version::before {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.changelog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.version-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 2px 8px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}

.active-version .version-badge {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--primary);
}

.version-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.status-badge {
    background: #059669;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 1px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.changelog-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition);
}

.changelog-item:hover .changelog-content {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.changelog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.changelog-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.changelog-content li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.changelog-content li i {
    margin-top: 4px;
    font-size: 0.9rem;
}

.text-cyan {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}
