

    .burc-page {
        min-height: 100vh;
        padding: 42px 20px 76px;
        color: var(--text-main);
        background:
            radial-gradient(circle at top left, rgba(139,109,255,.12), transparent 32%),
            radial-gradient(circle at bottom right, rgba(247,201,107,.10), transparent 36%),
            linear-gradient(135deg, var(--page-bg), var(--page-bg-soft));
    }

    .burc-container {
        max-width: 1180px;
        margin: 0 auto;
    }

    .burc-hero {
        text-align: center;
        margin-bottom: 40px;
    }

    .burc-badge {
        display: inline-block;
        padding: 6px 18px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--gold1), var(--gold2));
        color: #1b1204;
        font-size: 12px;
        font-weight: 900;
        margin-bottom: 14px;
    }

    .burc-hero h1 {
        margin: 0 0 10px;
        font-size: clamp(32px, 5vw, 52px);
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

    .burc-hero p {
        color: var(--text-muted);
        font-size: 17px;
        margin: 0;
    }

    .burc-date {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 14px;
        padding: 8px 16px;
        border-radius: 999px;
        background: var(--card-bg);
        border: 1px solid var(--border-soft);
        font-size: 14px;
        font-weight: 700;
        color: var(--text-muted);
    }

    /* Burç Grid */
    .burc-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .burc-card {
        display: flex;
        flex-direction: column;
        padding: 24px;
        border-radius: 22px;
        background: var(--card-bg);
        border: 1px solid var(--border-soft);
        box-shadow: var(--shadow-soft);
        transition: transform .2s ease, box-shadow .2s ease;
        position: relative;
        overflow: hidden;
    }

    .burc-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 3px;
        background: linear-gradient(90deg, #8b6dff, #22d3ee, var(--gold2));
        opacity: .8;
    }

    .burc-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(15,23,42,.12);
    }

    .burc-card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
    }

    .burc-symbol {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        font-size: 24px;
        background: linear-gradient(135deg, rgba(139,109,255,.12), rgba(34,211,238,.08));
        border: 1px solid var(--border-soft);
        flex-shrink: 0;
    }

    .burc-card-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 900;
        letter-spacing: -0.02em;
    }

    .burc-card-header span {
        color: var(--text-muted);
        font-size: 12px;
        font-weight: 700;
    }

    .burc-general {
        flex: 1;
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.65;
        margin: 0 0 16px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .burc-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        border-radius: 10px;
        background: rgba(139,109,255,.08);
        border: 1px solid rgba(139,109,255,.18);
        color: #8b6dff;
        font-size: 13px;
        font-weight: 900;
        text-decoration: none;
        transition: all .2s ease;
        align-self: flex-start;
    }

    .burc-more:hover {
        background: rgba(139,109,255,.15);
        transform: translateX(3px);
    }

    html[data-theme="dark"] .burc-more,
    body.dark .burc-more,
    body.dark-mode .burc-more {
        color: #c4b5fd;
    }

    .burc-empty {
        text-align: center;
        padding: 60px 20px;
        color: var(--text-muted);
    }

    .burc-empty-icon {
        font-size: 64px;
        margin-bottom: 16px;
        opacity: .5;
    }

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

    @media (max-width: 600px) {
        .burc-grid {
            grid-template-columns: 1fr;
        }
        
        .burc-card {
            padding: 20px;
        }
    }


/* ════════════════════════════════════════════════════════
   KİBAR GÖSTERİŞLİ MENÜ
════════════════════════════════════════════════════════ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(7, 17, 31, 0.75);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 8px;
}

/* Brand */
.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-right: 32px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #8b6dff, #22d3ee);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(139,109,255,.3);
    transition: transform .3s ease, box-shadow .3s ease;
}

.site-brand:hover .brand-mark {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 6px 24px rgba(139,109,255,.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.brand-text small {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ═══ NAVIGATION ═══ */
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-nav::-webkit-scrollbar { display: none; }

.site-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all .25s cubic-bezier(.22,.9,.18,1);
    white-space: nowrap;
    overflow: hidden;
}

/* Hover glow efekti */
.site-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139,109,255,.12), rgba(34,211,238,.06));
    opacity: 0;
    transition: opacity .25s ease;
    z-index: -1;
}

.site-nav a:hover::before {
    opacity: 1;
}

.site-nav a:hover {
    color: var(--text-main);
    transform: translateY(-1px);
}

/* Aktif menü */
/* Ortak aktif davranış */
.site-nav a.active {
    opacity: 1;
    font-weight: 850;
}

.site-nav a.active::before {
    opacity: 0;
}

/* Gece modu aktif menü */
html[data-theme="dark"] .site-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(139,109,255,.24), rgba(34,211,238,.12));
    box-shadow:
        0 4px 16px rgba(139,109,255,.18),
        inset 0 1px 0 rgba(255,255,255,.10);
}

/* Gündüz modu aktif menü */
html[data-theme="light"] .site-nav a.active {
    color: #1b1204;
    background: linear-gradient(135deg, #f6d36b, #e8b94a);
    border-color: rgba(185,130,33,.35);
    box-shadow:
        0 8px 18px rgba(185,130,33,.18),
        inset 0 1px 0 rgba(255,255,255,.35);
}

/* Gündüz hover aktifken de bozulmasın */
html[data-theme="light"] .site-nav a.active:hover {
    color: #1b1204;
    opacity: 1;
}

/* Gece hover aktifken de bozulmasın */
html[data-theme="dark"] .site-nav a.active:hover {
    color: #fff;
    opacity: 1;
}

/* Nav icon 
.nav-icon {
    font-size: 14px;
    line-height: 1;
    transition: transform .3s ease;
    filter: grayscale(0.3);
}

.site-nav a:hover .nav-icon {
    transform: scale(1.15);
    filter: grayscale(0);
}

.site-nav a.active .nav-icon {
    filter: grayscale(0);
}

 Aktif indicator (alt çizgi animasyonu) */
.site-nav a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #8b6dff, #22d3ee);
    transition: all .3s cubic-bezier(.22,.9,.18,1);
    transform: translateX(-50%);
}

.site-nav a:hover::after {
    width: 60%;
}

.site-nav a.active::after {
    width: 40%;
    bottom: 4px;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: var(--card-bg-soft);
    color: var(--text-main);
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
}

/* Theme toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: var(--card-bg-soft);
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .2s ease;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--border-soft);
    color: var(--text-main);
    transform: rotate(15deg);
}

/* ═══ HEADER AUTH ═══ */
.header-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border-soft);
}

.header-auth button,
.header-auth a {
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.02em;
}

.header-login {
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
}

.header-login:hover {
    color: var(--text-main);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.header-register {
    background: linear-gradient(135deg, var(--gold1), var(--gold2));
    color: #1b1204;
    box-shadow: 0 4px 12px rgba(247,201,107,.2);
}

.header-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247,201,107,.35);
}

.header-user {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
    background: var(--card-bg-soft);
    border: 1px solid var(--border-soft);
    padding: 9px 14px;
}

.header-logout {
    color: #dc2626;
    background: rgba(220,38,38,.06);
    border: 1px solid rgba(220,38,38,.15);
}

.header-logout:hover {
    background: rgba(220,38,38,.12);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
    .site-nav a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .nav-icon {
        font-size: 14px;
    }
    
    .nav-label {
        display: none; /* Mobilde sadece ikon */
    }
}

@media (max-width: 768px) {
    .site-header-inner {
        height: 64px;
        padding: 0 16px;
    }
    
    .brand-text small {
        display: none;
    }
    
    .site-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(7,17,31,.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        transform: translateX(-100%);
        transition: transform .3s ease;
    }
    
    .site-nav.open {
        transform: translateX(0);
    }
    
    .site-nav a {
        width: 100%;
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .nav-label {
        display: block;
    }
    
    .mobile-menu-btn {
        display: grid;
        place-items: center;
    }
    
    .header-auth {
        margin-left: 8px;
        padding-left: 8px;
    }
    
    .header-auth button {
        padding: 8px 12px;
        font-size: 11px;
    }
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.header-auth button,
.header-auth a {
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.header-login {
    color: var(--text-muted);
    border: 1px solid var(--border-soft);
    background: transparent;
}

.header-login:hover {
    color: var(--text-main);
    background: var(--card-bg-soft);
}

.header-register {
    background: linear-gradient(135deg, var(--gold1), var(--gold2));
    color: #1b1204;
}

.header-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247,201,107,.3);
}

.header-user {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
    background: var(--card-bg-soft);
    border: 1px solid var(--border-soft);
}

.header-logout {
    color: #dc2626;
    border: 1px solid rgba(220,38,38,.2);
    background: transparent;
}

.header-logout:hover {
    background: rgba(220,38,38,.08);
}

/* ========== AUTH POPUP ========== */
.auth-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,8,22,.75);
    backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

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

.auth-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.92);
    width: 90%;
    max-width: 420px;
    padding: 32px;
    border-radius: 28px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(.22,.9,.18,1);
}

.auth-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.auth-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: var(--card-bg-soft);
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .2s ease;
}

.auth-popup-close:hover {
    background: rgba(220,38,38,.12);
    color: #dc2626;
}

.auth-popup-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-popup-header h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 900;
}

.auth-popup-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.auth-popup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.auth-field label {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.auth-field input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: var(--card-bg-soft);
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease;
}

.auth-field input:focus {
    border-color: #8b6dff;
}

.auth-field input::placeholder {
    color: var(--text-muted);
    opacity: .5;
}

.auth-submit {
    padding: 14px;
    border-radius: 14px;
    border: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: all .2s ease;
    margin-top: 4px;
}

.auth-submit.gold {
    background: linear-gradient(135deg, var(--gold1), var(--gold2));
    color: #1b1204;
}

.auth-submit.gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247,201,107,.3);
}

.auth-popup-switch {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
    color: var(--text-muted);
    font-size: 13px;
}

.auth-popup-switch button {
    background: none;
    border: 0;
    color: #8b6dff;
    font-weight: 900;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
}

.auth-popup-switch button:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .header-auth {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        border-top: 1px solid var(--border-soft);
    }
}

.site-footer {
    margin-top: 56px;
    border-top: 1px solid var(--border-soft);
    background:
        radial-gradient(circle at top left, rgba(139,109,255,.08), transparent 34%),
        linear-gradient(180deg, var(--page-bg-soft), var(--page-bg));
    color: var(--text-main);
}

.site-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 20px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.footer-brand {
    max-width: 520px;
}

.footer-brand strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -.02em;
}

.footer-brand p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--text-muted);
    background: var(--card-bg-soft);
    border: 1px solid var(--border-soft);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 800;
    transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

.footer-links a:hover {
    transform: translateY(-1px);
    color: var(--text-main);
    border-color: rgba(139,109,255,.28);
    background:
        linear-gradient(135deg, rgba(139,109,255,.10), rgba(34,211,238,.06)),
        var(--card-bg-soft);
}

.site-footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 20px 28px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-footer-bottom p {
    max-width: 820px;
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}

.site-footer-bottom span {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .site-footer-inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}