@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #ff8c00;
    /* Daha canlı bir turuncu */
    --primary-hover: #e67e00;
    --primary-glow: rgba(255, 140, 0, 0.3);
    --bg-dark: #09090b;
    /* Daha derin siyah/gri */
    --surface-dark: #121215;
    --glass-bg: rgba(20, 20, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.06);
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --footer-bg: #050505;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 15%, rgba(255, 140, 0, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(66, 135, 245, 0.03) 0%, transparent 40%);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    /* Okuma metni için temiz font */
    overflow-x: hidden;
    line-height: 1.7;
    /* Satır aralığı artırıldı */
    font-size: 16px;
    letter-spacing: -0.01em;
    /* Hafif sıkılaştırma */
}

/* --- TYPOGRAPHY (NEW) --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    /* Başlıklar için modern, geometrik font */
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.03em;
    /* Başlıkları daha kompakt ve modern yapar */
}

/* Sayfa Geçiş Animasyonu: Sadece içerik elementlerine */
.hero,
.container,
.site-footer,
.stats-container,
.grid {
    animation: pageLoad 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

h1,
h2,
h3,
h4,
.btn,
.nav-links {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.text-gradient {
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 6%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

/* Logo Text Wrapper - OVERLAY METHOD (DEFINITIVE FIX) */
.logo-text {
    position: relative;
    display: inline-block;
    font-weight: 800;
    color: #fff;
    /* Varsayılan renk (Atlantis) */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding-right: 5px;
}

/* Gerçek Renkler - Span ile kontrol */
.logo-text span {
    color: var(--primary);
}

/* Shine Efekti Katmanı (Pseudo Element) */
.logo-text::after {
    content: attr(data-text);
    /* Metnin kopyası */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;

    /* Metin rengi yok, sadece shine gradienti var */
    color: transparent;

    /* GÜÇLÜ SHINE GRADIENT */
    background-image: linear-gradient(110deg,
            transparent 35%,
            rgba(255, 255, 255, 0.9) 48%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.9) 52%,
            transparent 65%);

    background-size: 200% 100%;
    background-position: -150% 0;
    /* Başlangıç dışarıda */
    background-repeat: no-repeat;

    /* Sadece metin şekline uygula */
    -webkit-background-clip: text;
    background-clip: text;

    pointer-events: none;
    mix-blend-mode: overlay;
    /* Alttaki renklerle güzel karışsın diye */
}

/* Hover Animasyonu */
.logo:hover .logo-text {
    transform: scale(1.05);
}

.logo:hover .logo-text::after {
    /* Çok daha yavaş ve belirgin geçiş */
    background-position: 150% 0;
    transition: background-position 2.5s ease-in-out;
}

/* Eski iptal kodları gereksiz */

.logo img {
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.5));
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
    filter: drop-shadow(0 0 25px var(--primary));
    transform: rotate(20deg) scale(1.1);
    /* Sadece hafif yan yatırma */
}

/* Span rengi artık gradient'ten geliyor, burayı override etmemeli */
.logo span {
    color: inherit;
    -webkit-text-fill-color: inherit;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-only,
.mobile-menu-btn {
    display: none;
}

.support-btn {
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 24px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.support-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 140, 0, 0.1);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.12;
    z-index: -1;
    top: -100px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #fff 0%, #b3b3b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 400;
}

.btn {
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* --- DISCORD BUTTON (CUSTOM) --- */
.btn-discord {
    background-color: #5865F2 !important;
    /* Discord Brand Color */
    border-color: #5865F2 !important;
    color: #fff !important;
    overflow: hidden;
    /* Shine dışarı taşmasın */
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-discord:hover {
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5) !important;
    transform: translateY(-3px) !important;
    background-color: #4752c4 !important;
    /* Slightly darker on hover */
}

/* Discord Shine Efekti */
.btn-discord::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: skewX(-25deg);
    transition: none;
    /* Normade görünmez */
}

.btn-discord:hover::after {
    left: 150%;
    transition: 0.6s ease-in-out;
    /* Hızlı geçiş */
}

/* --- STATS SECTION --- */
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 5%;
    margin: 50px auto 30px;
    /* Reduced from 100px */
    max-width: 1100px;
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 10;
}

.relative-up {
    position: relative;
    top: 0;
    z-index: 10;
    margin-bottom: 0px;
    /* Reduced from 50px */
}

/* Specific spacing fix for Features section */
#features {
    padding-top: 20px;
    /* Reduced specific padding */
}

.stat-box {
    text-align: center;
    margin: 15px;
    flex: 1;
    min-width: 150px;
}

.stat-box i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    color: white;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 500;
}

/* --- COMMON SECTIONS --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 5%;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -2px;
}

.section-title span {
    color: var(--primary);
}

/* --- FEATURES --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 140, 0, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- PRODUCTS GRID --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.card {
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    opacity: 0.9;
    transition: 0.3s;
}

.card:hover .card-img {
    opacity: 1;
    transform: scale(1.03);
}

.card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    flex: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    margin-top: auto;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

.btn-sm {
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-sm:hover {
    background: var(--primary);
    color: #000;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--glass-border);
    padding: 100px 0 0;
    margin-top: 120px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-4px);
}

.btn-footer {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- ACCORDION (MODERNIZED) --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.accordion-item:hover {
    border-color: rgba(255, 140, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.accordion-item.active {
    background: rgba(255, 140, 0, 0.05);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.accordion-header i {
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.accordion-item.active .accordion-header {
    color: var(--primary);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    background: var(--primary);
    color: #000;
}

.accordion-body {
    padding: 0;
    /* Padding sıfırlandı (Animasyon için) */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

/* Padding içeriğe verildi (Boşluk korundu) */
.accordion-body p {
    padding: 0 30px 15px 30px !important;
    /* ÜST: 0, ALT: 15px */
    margin: 0 !important;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

.accordion-item.active .accordion-body {
    opacity: 1;
}

/* --- NEW HERO & SECTIONS (V4) --- */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 140, 0, 0.15) 0%, transparent 60%);
    z-index: -1;

    /* Alt kısımdaki keskin çizgiyi yumuşat */
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.hero h1 {
    font-size: 4.5rem;
    /* Daha büyük başlık */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.3rem;
    /* Daha okunaklı açıklama */
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

/* YENİ HERO BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.1);
    backdrop-filter: blur(5px);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

/* Section Spacing */
.section-padding {
    padding: 80px 5%;
}

.relative-up {
    position: relative;
    top: 0;
    /* -50px idi, 0 yapıldı */
    z-index: 10;
    margin-bottom: 0px;
}

/* About Visual - TECH SPHERE ANIMATION */
.about-visual-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.tech-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.1);
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    animation: spin 12s linear infinite;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    animation: spin-reverse 8s linear infinite;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border: 1px dashed var(--primary);
    animation: spin 4s linear infinite;
}

.tech-core {
    font-size: 4.5rem;
    color: #fff;
    z-index: 2;
    animation: floating 3s ease-in-out infinite;
    text-shadow: 0 0 30px var(--primary);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    100% {
        transform: rotate(-360deg);
    }
}


/* Hakkımızda Grid Düzeni */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

/* Misyon Kartları (Geliştirilmiş) */
.mission-cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.mission-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    min-width: 130px;
    transition: all 0.4s ease;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(255, 140, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon-bg {
    width: 50px;
    height: 50px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    font-size: 1.2rem;
    color: var(--primary);
    transition: 0.3s;
}

.mission-card:hover .card-icon-bg {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

.mission-card h4 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Card Improvements */
.card-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.card-img {
    transition: 0.3s;
    width: 100%;
    display: block;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.card:hover .card-overlay {
    opacity: 1;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.section-desc {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* --- RESPONSIVE --- */
@media(max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media(max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: #09090b;
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
        gap: 32px;
        padding: 80px 40px;
        transform: translateX(100%);
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
        z-index: 999;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }

    .stats {
        flex-direction: column;
        gap: 20px;
        padding: 40px;
    }

    .stat-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 20px;
    }

    .stat-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-icons {
        justify-content: center;
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
        width: 100%;
    }

    .mobile-only a {
        display: block;
        text-align: center;
        padding: 15px;
        background: var(--primary);
        color: #000 !important;
        border-radius: 8px;
        font-weight: 700;
    }

    .support-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: #fff;
        cursor: pointer;
        z-index: 1000;
    }
}

/* --- POWERED BY BUTTON --- */
.powered-by-btn {
    position: relative;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.powered-by-btn:hover {
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

/* Shiny Glare Effect */
.powered-by-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: none;
}

.powered-by-btn:hover::before {
    left: 100%;

    /* --- SCROLL ANIMATIONS --- */
    .fade-in-section {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: opacity, transform;
    }

    .fade-in-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger delays for grid items */
    .fade-in-section:nth-child(1) {
        transition-delay: 0.1s;
    }

    .fade-in-section:nth-child(2) {
        transition-delay: 0.2s;
    }

    .fade-in-section:nth-child(3) {
        transition-delay: 0.3s;
    }

    .fade-in-section:nth-child(4) {
        transition-delay: 0.4s;
    }

    /* Ensure initial state doesn't block interaction if JS fails (optional, but good practice) */
    @media (prefers-reduced-motion: reduce) {
        .fade-in-section {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }