/* ==========================================================================
   WEBİM - MODERN KİŞİSEL WEB SİTESİ TASARIM SİSTEMİ
   Mimari: Minimalist, Premium, Glassmorphism, Dual Theme (Light/Dark)
   ========================================================================== */

/* Local Fonts & Icons (Loaded in header.php for 0 waterfall delay) */

/* ==========================================================================
   1. TEMA DEĞİŞKENLERİ (LIGHT & DARK MODE)
   ========================================================================== */
:root {
    /* Açık Tema Varsayılan Renkleri */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-surface: rgba(255, 255, 255, 0.75);
    --bg-glass: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(226, 232, 240, 0.8);
    --glass-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --primary: #4f46e5;       /* Modern Indigo */
    --primary-hover: #4338ca;
    --primary-light: rgba(79, 70, 229, 0.08);

    --accent-digital: #0284c7;  /* Cyan / Blue for Tech */
    --accent-energy: #0d9488;   /* Teal / Emerald for Spiritual */
    --accent-gradient: linear-gradient(135deg, #4f46e5 0%, #0d9488 100%);

    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    /* Modern Nötr Gece Modu (Neutral Obsidian Black & Dark Graphite Glass) */
    --bg-primary: #09090b;                /* Derin, nötr mat siyah (Zinc 950 / OLED Black) */
    --bg-secondary: #121215;              /* Nötr koyu grafit panel & kart zemini */
    --bg-surface: rgba(20, 20, 24, 0.88);  /* Şeffaf lüks koyu cam yüzey */
    --bg-glass: rgba(22, 22, 26, 0.75);    /* Nötr koyu mat cam kart efekti */
    --glass-border: rgba(255, 255, 255, 0.08); /* Mikro parlaklık veren ince kenarlık çizgisi */
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85); /* Derin şık gölge katmanı */

    --text-main: #f4f4f5;                 /* Nötr platin beyazı (Zinc 100) */
    --text-muted: #d4d4d8;                /* Nötr yüksek kontrast gümüş gri (Zinc 300 - Accessibility 100%) */
    --text-light: #a1a1aa;                /* Nötr ikincil gri (Zinc 400) */

    --primary: #6366f1;                   /* Canlı İndigo vurgu rengi */
    --primary-hover: #818cf8;
    --primary-light: rgba(99, 102, 241, 0.16);

    --accent-digital: #38bdf8;            /* Gökyüzü Mavisi Vurgu */
    --accent-energy: #2dd4bf;             /* Zümrüt Turkuaz Vurgu */
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #2dd4bf 100%);

    --border-color: #27272a;              /* Nötr mat gri kenarlık (Zinc 800) */
}

/* ==========================================================================
   2. TEMEL TEMİZLİK VE GENEL STİLLER
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   3. CAM (GLASSMORPHISM) VE BİLEŞEN UTILITY SINIFLARI
   ========================================================================== */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.25);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.825rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.badge-digital {
    background: rgba(2, 132, 199, 0.1);
    color: var(--accent-digital);
    border-color: rgba(2, 132, 199, 0.2);
}

.badge-energy {
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-energy);
    border-color: rgba(13, 148, 136, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

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

/* ÖZEL ŞEFFAF CAM BUTON (GLASS BUTTON SYSTEM) */
.glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.75rem 1.4rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.05);
}

.glass-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.2);
}

.glass-btn i {
    font-size: 0.95rem;
    color: var(--primary);
    transition: var(--transition);
}

.glass-btn:hover i {
    transform: scale(1.15);
}

/* ==========================================================================
   4. HEADER VE NAVİGASYON (AÇILIR ALT MENÜ DROPDOWN DESTEĞİ)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: nowrap;
}

.nav-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap !important;
    word-break: keep-all !important;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--bg-secondary);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.12);
    font-weight: 700;
}

/* ==========================================================================
   4.1 MAĞAZA 3 SÜTUNLU ÜRÜN IZGARASI (3-COLUMN STORE GRID)
   ========================================================================== */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1280px) {
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Navigation Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 210px;
    padding: 0.5rem;
    background: var(--bg-surface);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 1.25rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Switcher Button */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.4rem;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* ==========================================================================
   5. SAYFA BÖLÜMLERİ VE SAYFA DÜZENİ
   ========================================================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header .subtitle {
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0 5rem 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: stretch;
}

.hero-content h1 {
    font-size: 3.25rem;
    letter-spacing: -0.02em;
    margin: 1.25rem 0;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-card {
    position: relative;
}

.hero-profile-wrapper {
    margin-top: 3.4rem;
    height: calc(100% - 3.4rem);
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .hero-profile-wrapper {
        margin-top: 0;
        height: auto;
    }
}

.dual-focus-card {
    position: relative;
    overflow: hidden;
}

.dual-focus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(79, 70, 229, 0.2);
    filter: blur(80px);
    border-radius: 50%;
}

/* Blog Post Rich Content Typography */
.blog-post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.85;
    color: var(--text-main);
}
.blog-post-content h2 {
    font-size: 1.65rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}
.blog-post-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 600;
}
.blog-post-content ul, .blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.blog-post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.blog-post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-style: italic;
}

/* Grid Layouts */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Cards */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Blog List & Cards */
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Sidebar Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 2.5rem;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.search-box {
    display: flex;
    gap: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.15rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

.category-list a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    padding: 0.35rem 0.75rem;
    font-size: 0.825rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-muted);
}

.tag-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* İletişim Formu */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.925rem;
    color: var(--text-main);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .alert-success {
    color: #34d399;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

[data-theme="dark"] .alert-danger {
    color: #f87171;
}

/* ==========================================================================
   6. MONOCHROMATIC GLASS CONTACT & BANK SYSTEM
   ========================================================================== */
.clean-glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.clean-glass-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--glass-shadow);
}

.clean-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.clean-glass-card:hover .clean-icon-badge {
    transform: scale(1.1);
    background: var(--primary);
    color: #ffffff;
}

/* Glass IBAN Input Box */
.glass-iban-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-top: 1rem;
}

.glass-iban-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    padding: 0.25rem 0;
    outline: none;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about p {
    color: var(--text-muted);
    margin: 1rem 0;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-btn:hover {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   8. RESPONSIVE TASARIM (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 1200px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 993px) and (max-width: 1220px) {
    .nav-menu {
        gap: 0.65rem !important;
    }
    .nav-link {
        font-size: 0.8rem !important;
        padding: 0.3rem 0.25rem !important;
    }
    .logo img {
        width: 44px !important;
        height: 44px !important;
    }
}

@media (max-width: 1140px) {
    .mobile-toggle {
        display: block !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        background: var(--bg-surface) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        flex-direction: column !important;
        padding: 2rem !important;
        gap: 1.25rem !important;
        border-bottom: 1px solid var(--glass-border) !important;
        transform: translateY(-150%) !important;
        transition: var(--transition) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    }

    .nav-menu.active {
        transform: translateY(0) !important;
    }
}

@media (max-width: 992px) {
    .hero-grid, .blog-layout, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        border: none;
        margin-left: 1rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    img:not(.logo img):not(.hero-profile-wrapper img), video, iframe, embed, object {
        max-width: 100% !important;
        height: auto !important;
    }

    .logo img {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        min-height: 52px !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        flex-shrink: 0 !important;
    }

    .hero-profile-wrapper img {
        width: 76px !important;
        height: 76px !important;
        min-width: 76px !important;
        min-height: 76px !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        flex-shrink: 0 !important;
    }

    .hero-profile-wrapper {
        margin-top: 2rem !important;
    }

    .hero-profile-wrapper .clean-glass-card {
        padding: 1.5rem 1.25rem !important;
    }

    pre, code, table {
        max-width: 100% !important;
        overflow-x: auto !important;
        word-break: break-word !important;
    }

    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .clean-glass-card, .glass-card {
        padding: 1.25rem 1rem !important;
        border-radius: var(--radius-md) !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* IP Adresin & Modüler Blok Taşma Düzeltmeleri */
    .my-ip-wrapper {
        padding: 1rem 0.25rem !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    #ip-click-box {
        padding: 0.85rem 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        border-radius: var(--radius-md) !important;
    }

    #my-ipv4 {
        font-size: 1.4rem !important;
        word-break: break-all !important;
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }

    .grid-5, .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    padding: 0.5rem;
    z-index: 9999;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background 0.15s, color 0.15s;
}
.dropdown-item:hover, .dropdown-item.active {
    background: var(--primary-light);
    color: var(--primary);
}

/* EN ÜSTE DÖN BUTONU (BACK TO TOP) - MINIMALIST GLASSMORPHISM */
#back-to-top {
    position: fixed;
    bottom: 2.25rem;
    right: 2.25rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
#back-to-top:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.45);
    transform: translateY(-4px) scale(1.05);
}
#back-to-top:active {
    transform: translateY(-1px) scale(0.98);
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 1.25rem;
        right: 1.15rem;
        width: 44px;
        height: 44px;
        font-size: 1rem;
        background: rgba(15, 23, 42, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* PAYLAŞ BUTONU STİLLERİ (EN SAĞ ALT KÖŞE - MOBİL UYUMLU PARLAK ZÜMRÜT İKON) */
.btn-share-icon-premium,
.btn-share-icon-premium i {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #2dd4bf !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none !important;
    flex-shrink: 0;
    position: relative !important;
    z-index: 10 !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.85)) !important;
}
.btn-share-icon-premium:hover,
.btn-share-icon-premium:hover i {
    color: #5eead4 !important;
    filter: drop-shadow(0 0 16px rgba(45, 212, 191, 1)) drop-shadow(0 0 28px rgba(45, 212, 191, 0.75)) !important;
    transform: scale(1.18) rotate(6deg);
}
.btn-share-icon-premium:active,
.btn-share-icon-premium:active i {
    transform: scale(0.92);
}

/* KATEGORİ İÇİ KUSURSUZ ALT MENÜ NAVİGASYON BARI (DESKTOP: TEK SATIR KİTAP GİBİ, MOBİL: ADMİN PANELİ GİBİ KESİNTİSİZ YANA KAYDIRMALI) */
.subpage-nav-bar {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem !important;
    margin-top: 1.5rem;
    margin-bottom: 2.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.subpage-nav-bar .glass-btn {
    padding: 0.55rem 0.95rem !important;
    font-size: 0.875rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    max-width: none !important;
}

@media (max-width: 992px) {
    .subpage-nav-bar {
        display: flex !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0.6rem 0.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .subpage-nav-bar::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    .subpage-nav-bar .glass-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        box-sizing: border-box !important;
    }

    #ip-click-box {
        padding: 0.85rem 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        border-radius: var(--radius-md) !important;
    }

    #my-ipv4 {
        font-size: 1.4rem !important;
        word-break: break-all !important;
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }

    .grid-5, .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    padding: 0.5rem;
    z-index: 9999;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background 0.15s, color 0.15s;
}
.dropdown-item:hover, .dropdown-item.active {
    background: var(--primary-light);
    color: var(--primary);
}

/* EN ÜSTE DÖN BUTONU (BACK TO TOP) - MINIMALIST GLASSMORPHISM */
#back-to-top {
    position: fixed;
    bottom: 2.25rem;
    right: 2.25rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
#back-to-top:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.45);
    transform: translateY(-4px) scale(1.05);
}
#back-to-top:active {
    transform: translateY(-1px) scale(0.98);
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 1.25rem;
        right: 1.15rem;
        width: 44px;
        height: 44px;
        font-size: 1rem;
        background: rgba(15, 23, 42, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* PAYLAŞ BUTONU STİLLERİ (EN SAĞ ALT KÖŞE - MOBİL UYUMLU PARLAK ZÜMRÜT İKON) */
.btn-share-icon-premium,
.btn-share-icon-premium i {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #2dd4bf !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none !important;
    flex-shrink: 0;
    position: relative !important;
    z-index: 10 !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.85)) !important;
}
.btn-share-icon-premium:hover,
.btn-share-icon-premium:hover i {
    color: #5eead4 !important;
    filter: drop-shadow(0 0 16px rgba(45, 212, 191, 1)) drop-shadow(0 0 28px rgba(45, 212, 191, 0.75)) !important;
    transform: scale(1.18) rotate(6deg);
}
.btn-share-icon-premium:active,
.btn-share-icon-premium:active i {
    transform: scale(0.92);
}

/* KATEGORİ İÇİ KUSURSUZ ALT MENÜ NAVİGASYON BARI (DESKTOP: TEK SATIR KİTAP GİBİ, MOBİL: ADMİN PANELİ GİBİ KESİNTİSİZ YANA KAYDIRMALI) */
.subpage-nav-bar {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem !important;
    margin-top: 1.5rem;
    margin-bottom: 2.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.subpage-nav-bar .glass-btn {
    padding: 0.55rem 0.95rem !important;
    font-size: 0.875rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    max-width: none !important;
}

@media (max-width: 992px) {
    .subpage-nav-bar {
        display: flex !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0.6rem 0.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .subpage-nav-bar::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    .subpage-nav-bar .glass-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
    }
}

/* Official X (Twitter) Icon CSS Mask for FontAwesome */
.fa-x-twitter {
    display: inline-block !important;
    width: 1em !important;
    height: 1em !important;
    vertical-align: -0.125em !important;
    background-color: currentColor !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E") no-repeat center / contain !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E") no-repeat center / contain !important;
}

/* Utility: Desktop Only & Mobile Only Visibility */
.desktop-only, .desktop-only-table {
    display: block;
}
.mobile-only-block {
    display: none;
}

@media (max-width: 992px) {
    .desktop-only, .desktop-only-table {
        display: none !important;
    }
    .mobile-only-block {
        display: block !important;
    }
}
