/* Google Fonts */
@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');

/* Core High-Fidelity UI Overhaul */
/* --- ENTRANCE ANIMATIONS --- */
@keyframes revealApp {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }

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

/* Ensure initial state is hidden for animation to trigger */
#header-logo,
#header-lang,
#header-stats,
#header-actions,
#hero-text-sector,
#hero-visual-sector,
#policy-header-sector,
.policy-card {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal-active {
    animation: revealApp 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards !important;
}

#header-logo.reveal-active {
    animation-delay: 0.1s;
}

#header-lang.reveal-active {
    animation-delay: 0.2s;
}

#header-stats.reveal-active {
    animation-delay: 0.3s;
}

#header-actions.reveal-active {
    animation-delay: 0.4s;
}

#hero-text-sector.reveal-active {
    animation-delay: 0.5s;
}

#hero-visual-sector.reveal-active {
    animation-delay: 0.7s;
}

.policy-header.reveal-active {
    animation-delay: 0.9s;
}

.policy-card.reveal-active {
    animation-delay: 1s;
}

/* Preloader Shield */
#preloader {
    position: fixed;
    inset: 0;
    background: #050507;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to {
        left: 100%;
    }
}

:root {
    --bg-dark: #050507;
    --bg-surface: #0c0c10;
    --bg-card: #121218;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --border: rgba(255, 255, 255, 0.06);
    --text-muted: #888891;
    --glass: rgba(255, 255, 255, 0.02);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-bg: rgba(5, 5, 7, 0.85);
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --bg-surface-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

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

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}

body {
    background-color: var(--bg-dark);
    color: #fff;
    font-family: 'Outfit', 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
}

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

ul {
    list-style: none;
}

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

.text-blue {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-primary:hover {
    background: var(--bg-surface-hover);
    border-color: var(--text-primary);
}

.btn-cta {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
    border: 1px solid transparent;
}

.btn-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-surface);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--bg-surface-hover);
    color: white;
    border-color: var(--text-primary);
}

/* Header Navigation Fixes - SMART DOCK */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    background: transparent;
    transition: var(--transition);
}

header.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.logo img {
    height: 42px;
    width: auto;
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(1px);
}

.lang-btn.lang-tr:hover::before,
.lang-btn.lang-tr.active::before {
    background-image: url('https://flagcdn.com/w80/tr.png');
    opacity: 0.25;
}

.lang-btn.lang-en:hover::before,
.lang-btn.lang-en.active::before {
    background-image: url('https://flagcdn.com/w80/gb.png');
    opacity: 0.25;
}

.lang-btn.lang-de:hover::before,
.lang-btn.lang-de.active::before {
    background-image: url('https://flagcdn.com/w80/de.png');
    opacity: 0.25;
}

.lang-btn:hover,
.lang-btn.active {
    background: rgba(59, 130, 246, 0.08);
    border-color: #3b82f6;
    color: #3b82f6;
}

.menu-toggle {
    display: none !important;
    /* Force hide on desktop */
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

.nav-links {
    display: flex;
    gap: 2px;
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
    transition: var(--transition);
}

.nav-links li a {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
    white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* ========== CUSTOM EXPANDING SEARCH BAR ========== */
.header-search-wrap {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.f-search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.f-search-input {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: none;
    outline: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
    transition: all .5s ease-in-out;
    color: transparent;
}

.f-search-input:focus {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent);
    width: 260px;
    cursor: text;
    padding: 0 15px 0 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    color: #fff;
    appearance: none;
}

.f-search-icon {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    width: 32px;
    background-color: var(--bg-card);
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid var(--border);
    transition: all 0.5s ease;
    pointer-events: none;
}

.f-search-icon svg {
    width: 16px;
    height: 16px;
}

.f-search-input:focus~.f-search-icon {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* SMART COMPRESSION QUERIES */

@media (max-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 25px;
    }
}

@media (max-width: 1250px) {
    .language-switcher {
        display: none !important;
    }

    .nav-links li a {
        padding: 8px 12px;
        font-size: 12px;
    }

    .header-left {
        gap: 10px;
    }
}

@media (max-width: 1150px) {
    .header-stats {
        display: none;
    }

    .logo span {
        display: none;
    }
}

@media (max-width: 991px) {
    header {
        height: 60px;
        padding: 0;
        background: #050507;
        /* Smooth solid dark bg to prevent lag */
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    header nav {
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 16px;
    }

    .header-left {
        gap: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
    }

    .logo img {
        height: 28px;
    }

    .logo span {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        /* Force show on mobile */
        align-items: center;
        justify-content: flex-start;
        width: 40px;
        height: 40px;
        background: transparent !important;
        border: none !important;
        font-size: 1.25rem;
        padding: 0;
        z-index: 30;
    }

    .nav-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 20;
    }

    /* Full screen mobile menu */
    .nav-links {
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 60px) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;

        background: #09090b !important;
        padding: 20px !important;
        gap: 8px !important;

        transform: translateY(10px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease !important;

        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

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

    .nav-links li a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 16px;
        text-align: left;
        font-size: 1rem;
        font-weight: 500;
        color: #fff;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li a.active {
        background: rgba(59, 130, 246, 0.15);
        border-color: rgba(59, 130, 246, 0.3);
        color: #3b82f6;
    }
}

/* APPLE STYLE AI CHAT WINDOW */
#ai-chat-window {
    background: rgba(18, 18, 22, 0.7) !important;
    backdrop-filter: blur(30px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6) !important;
    border-radius: 28px !important;
}

#ai-chat-messages::-webkit-scrollbar {
    display: none;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Partiküllerin ortasındaki merkez görsel (Cursor tarzı) */
.hero-center-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
}

.hero-center-image img {
    max-width: 320px;
    width: 28vw;
    min-width: 140px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.2));
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
    height: 460px;
    min-height: 400px;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    border-radius: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Premium Feature Cards: spread left, spacing, no overlap */
.feature-card {
    background: rgba(12, 12, 18, 0.92);
    padding: 26px;
    border-radius: 20px;
    backdrop-filter: blur(28px);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.5s ease, filter 0.4s ease;
    position: absolute;
    width: 280px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    will-change: transform;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Spread cards left with clear gaps (no overlap) */
.card-1 {
    left: 0;
    top: 0;
    transform: rotate(-1.5deg);
    z-index: 12;
    --r: -1.5deg;
}

.card-2 {
    left: 32%;
    top: 100px;
    transform: rotate(1.2deg);
    z-index: 11;
    --r: 1.2deg;
}

.card-3 {
    left: 64%;
    top: 200px;
    transform: rotate(-1deg);
    z-index: 10;
    --r: -1deg;
}

/* Gradient Frame Borders */
.card-1::before {
    background: linear-gradient(45deg, #22c55e, rgba(34, 197, 94, 0.1));
}

.card-2::before {
    background: linear-gradient(45deg, #3b82f6, rgba(59, 130, 246, 0.1));
}

.card-3::before {
    background: linear-gradient(45deg, #f59e0b, rgba(245, 158, 11, 0.1));
}

.feature-card:hover {
    transform: rotate(var(--r)) translateY(-12px) scale(1.03);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.08);
    filter: brightness(1.05);
}

.card-1:hover {
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(34, 197, 94, 0.12);
}

.card-2:hover {
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(59, 130, 246, 0.12);
}

.card-3:hover {
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(245, 158, 11, 0.12);
}

.card-1:hover::before {
    background: linear-gradient(45deg, #22c55e, #4ade80);
}

.card-2:hover::before {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
}

.card-3:hover::before {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
}

.feature-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.feature-card {
    animation: featureCardFloat 6s ease-in-out infinite;
}

.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 1.2s;
}

.card-3 {
    animation-delay: 2.4s;
}

.feature-card:hover {
    animation: none;
}

@keyframes featureCardFloat {

    0%,
    100% {
        transform: rotate(var(--r)) translateY(0);
    }

    50% {
        transform: rotate(var(--r)) translateY(-8px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--r, 0deg));
    }
}

/* Products */
.products {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title span {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    background: #121212;
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    max-width: 100%;
    /* Removed width limit */
    margin: 0;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-image {
    height: 190px;
    /* Reduced from 200px to shorten overall card */
    background: #000;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    opacity: 1;
}

.badge-escrow {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 20px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-info {
    padding: 16px;
}

.product-header {
    display: block;
    /* Stack title and tags */
    margin-bottom: 12px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

.tags-container {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.tag-pill {
    background: #27272a;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #a1a1aa;
    text-transform: uppercase;
}

.product-info p {
    display: none;
    /* Hide description for compact view as per reference */
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-pill {
    background: #18181b;
    border: 1px solid #27272a;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.btn-add-cart {
    background: rgba(163, 230, 53, 0.1);
    /* Lime tint */
    color: #a3e635;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: rgba(163, 230, 53, 0.2);
    transform: translateY(-1px);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 100px 0 40px;
    background: #050507;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 18px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: var(--text-primary);
}

.footer-links:last-of-type {
    min-width: 0;
}

.footer-social-icons .icons,
#social-icons .icons,
#social-icons a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.footer-social-icons .social-icon-box,
#social-icons .social-icon-box {
    width: 44px;
    height: 44px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Ana sayfa alt bölüm: Topluluk + İstatistikler + CTA */
.home-bottom-section {
    padding: 70px 0 80px;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.5) 0%, #050507 100%);
    border-top: 1px solid var(--border-color);
}

.home-bottom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

.home-bottom-card {
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.8) 0%, rgba(9, 9, 11, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.home-bottom-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.home-bottom-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.home-bottom-community .home-bottom-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.home-bottom-discord .home-bottom-icon {
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
}

.home-bottom-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.home-bottom-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.home-bottom-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px 64px;
    margin-bottom: 48px;
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.home-stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue-primary);
    letter-spacing: -0.5px;
}

.home-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-bottom-cta {
    text-align: center;
}

.home-bottom-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.btn-discord-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    background: #5865F2;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-discord-large:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

/* btn-discord + btn-discord-large birlikte: küçük kutu olmasın, büyük buton olsun */
a.btn-discord.btn-discord-large {
    width: auto;
    min-height: auto;
    height: auto;
    padding: 14px 28px;
    font-size: 1rem;
    background: #5865F2;
    color: #fff;
    border: none;
}

a.btn-discord.btn-discord-large:hover {
    background: #4752c4;
    color: #fff;
    border-color: transparent;
}

/* Policy / Review Section */
.policy-section {
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

.policy-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

.policy-card {
    background: rgba(12, 12, 16, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Distinct Colors for each card */
.policy-card:nth-child(1) {
    --card-color: #4ade80;
    --card-glow: rgba(74, 222, 128, 0.2);
}

/* Green */
.policy-card:nth-child(2) {
    --card-color: #3b82f6;
    --card-glow: rgba(59, 130, 246, 0.2);
}

/* Blue */
.policy-card:nth-child(3) {
    --card-color: #f43f5e;
    --card-glow: rgba(244, 63, 94, 0.2);
}

/* Red/Pink */

.policy-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-color);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5), 0 0 30px var(--card-glow);
}

.policy-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 220px;
    height: 220px;
    object-fit: contain;
    opacity: 0.1;
    transition: var(--transition);
    z-index: 0;
    filter: grayscale(100%);
}

.policy-card:hover .policy-bg-icon {
    transform: scale(1.15) rotate(-5deg);
    opacity: 0.2;
    filter: grayscale(0%) drop-shadow(0 0 20px var(--card-glow));
}

.policy-content {
    position: relative;
    z-index: 1;
}

.policy-title {
    color: var(--card-color);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--card-glow);
}

.policy-text {
    font-size: 1.05rem;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 30px;
    padding-right: 20px;
}

.policy-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pill-btn {
    padding: 12px 28px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.pill-btn:hover {
    background: var(--card-color);
    color: #000;
    border-color: var(--card-color);
    box-shadow: 0 5px 15px var(--card-glow);
}

.pill-btn.fill {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.pill-btn.fill:hover {
    background: var(--card-color);
    color: #000;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Tab Navigation */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tabs {
    background: #09090b;
    padding: 6px;
    border-radius: 100px;
    display: inline-flex;
    gap: 5px;
    border: 1px solid var(--border-color);
}

.tab-btn {
    padding: 10px 30px;
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Payments Section */
.payments-section {
    padding-bottom: 80px;
}

.text-lime {
    color: #a3e635;
    /* Lime Green */
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.payment-card {
    background: #111113;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}


.btn-discord {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--bg-surface, rgba(255, 255, 255, 0.05));
    color: var(--text-secondary, #a1a1aa);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    transition: var(--transition);
    font-size: 1.4rem;
    text-decoration: none;
}

.btn-discord:hover {
    background: #5865F2;
    border-color: #5865F2;
    color: #fff;
    transform: translateY(-2px);
}

/* Header Stats */
.header-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.stat-value {
    font-weight: 700;
    font-size: 0.9rem;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cart Sidebar Styles */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    /* Higher than AI Chat (9999) */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: #121212;
    z-index: 10002;
    /* Higher than AI Chat (9999) */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.btn-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-close:hover {
    color: white;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.empty-cart {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 50px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-remove {
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1rem;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-remove:hover {
    background: rgba(239, 68, 68, 0.1);
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: #0e0e0e;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-block {
    width: 100%;
    border-radius: 12px;
}

.badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    border: 2px solid #09090b;
    /* Match bg color for cutout effect */
}

/* Ensure add to cart button looks good */
.btn-add-cart {
    cursor: pointer;
    border: none;
}


.stat-separator {
    width: 1px;
    height: 20px;
    background: var(--border-color);
}

.text-green {
    color: #22c55e;
}

.text-blue {
    color: #3b82f6;
}

.payment-card:hover {
    background: #18181b;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.payment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.payment-icon-ua {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.payment-details {
    flex-grow: 1;
}

.payment-details h4 {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.payment-details span {
    font-size: 13px;
    color: #71717a;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    color: #a1a1aa;
    letter-spacing: 1px;
    font-family: monospace;
}

/* Header Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Admin Panel Layout */
.admin-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    width: 260px;
    background: #09090b;
    border-right: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sidebar .logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    padding-left: 10px;
}

.sidebar .logo h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.sidebar .logo span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar .nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar .nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.sidebar .nav li a:hover,
.sidebar .nav li a.active {
    background: var(--bg-surface);
    color: white;
}

.content {
    flex: 1;
    background: #000;
    padding: 40px;
    overflow-y: auto;
    height: 100%;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* High-Fidelity Branding & Typewriter */
.text-blue-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    display: inline-block;
}

.typewriter-glow {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

#typewriter-h1::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 1.1em;
    vertical-align: middle;
    margin-left: 12px;
    background: linear-gradient(to bottom, #4285f4, #34a853, #fbbc05, #ea4335);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    animation: blink 0.8s step-end infinite;
    flex-shrink: 0;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

#typewriter-h1 {
    min-height: 2.2em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    margin: 0;
    width: 100%;
}

.dash-card {
    background: #18181b;
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition);
}

.dash-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.dash-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.dash-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.dash-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.dash-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3b82f6;
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.status-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.card {
    background: #18181b;
    border: 1px solid var(--border-color);
    border-radius: 16px;

    padding: 24px;
}

/* Buy Now Button */
.btn-buy-now {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-buy-now:hover {
    background: #e4e4e7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

    .nav-links {
        display: none;
    }

    .header-stats {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
        background: var(--bg-dark);
    }

    .language-switcher {
        position: static;
        display: flex;
        justify-content: center;
        gap: 10px;
        padding-top: 10px;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    .logo img {
        height: 40px;
    }

    .hero {
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

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

    .policy-card {
        min-height: auto;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        margin: 20px auto;
    }

    /* AI Chat Mobile Fixes */
    #ai-chat-window {
        width: calc(100vw - 30px) !important;
        height: 500px !important;
        right: 15px !important;
        bottom: 80px !important;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .product-actions {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .feature-card,
    .hero-visual {
        display: none;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 20px;
        min-height: 44px;
    }
}

/* Akıllı saat ve çok küçük ekranlar */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 1.35rem;
    }

    .cta-group {
        max-width: 100%;
    }

    .footer-top {
        gap: 24px;
    }

    #ai-chat-window {
        width: calc(100vw - 20px) !important;
        right: 10px !important;
        bottom: 70px !important;
    }
}

@media (max-width: 240px) {
    .container {
        padding: 0 8px;
    }

    .hero-text h1 {
        font-size: 1.25rem;
    }

    .section-title h2 {
        font-size: 1.15rem;
    }

    .logo img {
        height: 32px;
    }
}

/* Elit Social Icons (Uiverse Based) – footer sosyal alanı */
#social-icons,
.footer-social-icons,
#SocailIcons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}

.icons {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.iconName {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    padding: 6px 12px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
}

.icons:hover .iconName {
    transform: translateX(-50%) scale(1);
}

.instaIcon:hover .iconName {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.discord:hover .iconName {
    background: #5865F2;
}

.whatsapp:hover .iconName {
    background: #25d366;
}

.youtube:hover .iconName {
    background: #ff0000;
}

.social-icon-box {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    color: #0c0c0c;
    transition: color 0.3s ease;
    font-size: 1.35rem;
}

.social-icon-box i {
    font-size: inherit;
}

.social-icon-box:hover {
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 50%;
    transition: height 0.3s ease;
    z-index: -1;
}

.social-icon-box:hover::before {
    height: 100%;
}

.social-icon-box.tube::before {
    background: #ff0000;
}

.social-icon-box.insta::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon-box.disc::before {
    background: #5865F2;
}

.social-icon-box.whats::before {
    background: #25d366;
}

/* Global Celestial (Space) Button Styles - Uiverse Adapted */
.celestial-box {
    --clr-shadow__border: #3b82f6;
    --clr-text: #F6F4EB;
    --clr-space: #050507;
    --clr-space-gr: #1e3a8a;
    --clr-star: #ffffff;
    position: relative;
    outline: 1px solid rgba(59, 130, 246, 0.3);
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    min-width: 180px;
    height: 52px;
    /* Fixed height to match CTA */
    background: rgba(255, 255, 255, 0.03);
}

/* CTA Variant (Mağazayı Keşfet) */
.celestial-box.cta-variant {
    background: var(--accent);
    outline: none;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.celestial-box.cta-variant .celestial-button {
    color: #fff;
}

.celestial-box.cta-variant:hover {
    box-shadow: 0 12px 35px var(--accent-glow), 0 0 40px rgba(59, 130, 246, 0.25);
    transform: translateY(-4px);
    filter: brightness(1.15);
}

.celestial-button {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1rem;
    background: transparent;
    padding: 0 28px;
    border: none;
    cursor: pointer;
    color: var(--clr-text);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.celestial-button i {
    font-size: 1.1rem;
}

.celestial-space {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    gap: 1.5rem;
    transition: 0.5s ease-in-out;
    z-index: 1;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    display: flex;
    background: linear-gradient(160deg, var(--clr-space), var(--clr-space-gr));
}

.celestial-box:hover {
    outline-color: var(--clr-shadow__border);
    outline-width: 2px;
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(59, 130, 246, 0.4), 0 0 30px rgba(59, 130, 246, 0.2);
    filter: brightness(1.2);
}

.celestial-box:hover .celestial-button {
    color: #fff;
}

.celestial-box:hover .celestial-space {
    opacity: 1;
}

.star-wrap {
    display: flex;
    gap: 1.5rem;
}

.celestial-star {
    height: 4rem;
    width: 0.2rem;
    transition: 0.5s;
    border-radius: 50px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    position: relative;
    background-color: var(--clr-star);
    animation: space-animation calc(0.1s * var(--i)) linear infinite;
}

@keyframes space-animation {
    0% {
        transform: rotate(-30deg) translateY(calc(-60% * var(--i)));
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: rotate(-30deg) translateY(calc(60% * var(--i)));
        opacity: 0;
    }
}