:root {
    --bg: #0b0b0b;
    --text: #e6e6e6;
    --muted: #bdbdbd;
    --accent-red: #b71c1c;
    --accent-gold: #ffb845;
    --max-width: 900px;
    --radius: 14px;
    --transition: 400ms cubic-bezier(.2, .9, .3, 1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --primary-glow: rgba(52, 152, 219, 0.4);
}

#sentinel {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
    z-index: -100;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    height: 100%
}

body {
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, "Segoe UI", Roboto, Arial;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(1000px 360px at 50% 10%, rgba(255, 184, 69, 0.03), transparent 60%),
        radial-gradient(900px 300px at 90% 90%, rgba(183, 28, 28, 0.02), transparent 70%),
        url("../img/bg.png") center/cover no-repeat,
        linear-gradient(180deg, #050505 0%, var(--bg) 100%);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 28px 20px;
}

.main {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px 40px;
}

.intro {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.intro-logo {
    width: clamp(40%, 24vw, 280px);
    height: clamp(40%, 24vw, 280px);
    border-radius: 28px;
    overflow: hidden;
}

.intro-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .6));
}

.intro-title {
    font-size: clamp(28px, 3.2vw, 36px);
    font-weight: 800;
}

.intro-sub {
    color: var(--muted);
    max-width: 52ch;
}

.intro-cta {
    margin-top: 6px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: transform .4s ease, opacity .4s ease, background 0.3s ease, padding 0.3s ease;
}

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

.logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .6));
}

.site-title {
    font-size: 18px;
}

.site-subtitle {
    font-size: 12px;
    color: var(--muted);
}

.nav {
    display: none;
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
    transition: var(--transition);
}

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

.sticky .header {
    position: fixed;
    inset: 0 0 auto 0;
    padding: 12px 20px;
    backdrop-filter: blur(8px);
    background: rgba(10, 10, 10, 0.75);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
    opacity: 1;
    transform: none;
}

.sticky .container {
    padding-top: 88px;
}

.section {
    text-align: center;
    margin: 40px auto;
}

.section-heading {
    font-size: 26px;
    margin-bottom: 10px;
}

.section-lead {
    color: var(--muted);
    max-width: 60ch;
    margin: 0 auto 18px;
}

.section-art {
    display: flex;
    justify-content: center;
}

.section-art img {
    width: min(480px, 90%);
    height: auto;
    opacity: .95
}

.rules {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 8px 0 16px;
}

.rule {
    max-width: 720px;
    text-align: center;
    padding: 10px 6px;
}

.rule h3 {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 4px;
}

.rule p {
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-content: start;
    grid-auto-rows: max-content;
    gap: 12px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 8px;
}

.gallery-grid::-webkit-scrollbar {
    width: 6px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

.thumb {
    aspect-ratio: 16/11;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    display: block;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
    display: block;
}

.thumb:hover img {
    transform: scale(1.06);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4vh 4vw;
}

.lightbox img {
    width: auto;
    height: auto;
    max-width: min(100%, 1800px);
    max-height: 92vh;
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
    display: block;
}

.lightbox .close {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--muted);
    font-size: 18px;
    background: transparent;
    border: none;
    cursor: pointer
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: max-content;
    align-content: start;
    gap: 16px;
    margin: 32px auto 0;
    max-width: 800px;
    max-height: 480px;
    overflow-y: auto;
    padding: 10px;
}

.sponsors-grid::-webkit-scrollbar {
    width: 6px;
}

.sponsors-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.sponsors-grid::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

.sponsor-card {
    background: #a09d94;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    place-items: center;
    aspect-ratio: 16/10;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    overflow: hidden;
}

.sponsor-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 300ms ease;
}

.sponsor-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 24px rgba(255, 184, 69, 0.15);
}

.sponsor-card:hover img {
    transform: scale(1.05);
}

.btn {
    background: linear-gradient(90deg, var(--accent-red), #a91a1a);
    color: white;
    padding: 14px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 200ms ease, box-shadow 200ms ease, background 0.2s;
    box-shadow: 0 8px 24px rgba(183, 28, 28, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn:active {
    transform: translateY(2px)
}

.btn.ghost {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid rgba(255, 184, 69, 0.4);
    box-shadow: none
}

.btn.alt {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
    color: #111
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Loading State */
.btn.loading {
    pointer-events: none;
    opacity: 0.8;
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    border-top-color: #fff;
    animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
    color: #111
}

.footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    padding: 20px 0;
    text-align: center;
}

.footer .brand-name {
    font-weight: 700
}

.footer .copyright {
    color: var(--muted);
    font-size: 13px
}

.footer .social {
    color: var(--muted);
    text-decoration: none
}

.footer .social:hover {
    color: var(--accent-gold)
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 700ms ease, transform 700ms ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media (max-width: 480px) {
    .intro-logo {
        width: 140px;
        height: 140px
    }

    .section-heading {
        font-size: 22px
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.header {
    position: relative;
    z-index: 50;
}

.sticky .header {
    z-index: 999;
}

.main .section {
    position: relative;
    margin: 56px auto;
    scroll-margin-top: 96px;
}

.main .section+.section {
    margin-top: 88px;
    padding-top: 40px;
}

.main .section+.section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    width: min(720px, 90%);
    height: 2px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(200, 200, 200, 0.22) 12%,
            rgba(220, 220, 220, 0.32) 50%,
            rgba(200, 200, 200, 0.22) 88%,
            rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 0;
    -webkit-mask: none !important;
    mask: none !important;
}

@media (max-width: 520px) {
    .main .section {
        margin: 44px auto;
    }

    .main .section+.section {
        margin-top: 68px;
        padding-top: 32px;
    }

    .main .section+.section::before {
        width: 86%;
        top: -22px;
    }
}

.list-clean {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.list-clean li::marker {
    content: none;
}

.list-clean li+li {
    margin-top: 6px;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 12px;
    color: #111;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px) scale(.96);
    transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
    z-index: 1000;
}

.back-to-top:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, .55);
    transform: translateY(4px) scale(.98);
}

.back-to-top:active {
    transform: translateY(2px) scale(.97);
}

.back-to-top:focus-visible {
    outline: 2px solid rgba(255, 184, 69, .8);
    outline-offset: 2px;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 520px) {
    .back-to-top {
        right: 14px;
        bottom: 18px;
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: none;
    }
}

.subpage .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    backdrop-filter: blur(8px);
    background: rgba(10, 10, 10, 0.75);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
    opacity: 1;
    transform: none;
    z-index: 999;
}

.subpage .container {
    padding-top: 88px;
}

.contact-form {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 650px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 184, 69, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 184, 69, 0.1);
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--muted);
}

.checkbox-container input[type="checkbox"] {
    appearance: none;
    background-color: rgba(255, 255, 255, 0.04);
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: grid;
    place-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-container input[type="checkbox"]::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--accent-gold);
    background-color: var(--accent-gold);
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.checkbox-container input[type="checkbox"]:checked {
    border-color: var(--accent-gold);
}

.checkbox-container input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.checkbox-container span strong {
    color: var(--text);
}

.submit-btn {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-feedback {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.form-feedback.success {
    background: rgba(46, 125, 50, 0.2);
    color: #81c784;
    border: 1px solid rgba(46, 125, 50, 0.4);
}

.form-feedback.error {
    background: rgba(183, 28, 28, 0.2);
    color: #e57373;
    border: 1px solid rgba(183, 28, 28, 0.4);
}

#embers {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .75;
    mix-blend-mode: screen;
}

@media (prefers-reduced-motion: reduce) {
    #embers {
        display: none !important;
    }
}

body::before {
    content: none !important;
}

html::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(1200px 400px at 10% 10%, rgba(255, 184, 69, 0.03), transparent 6%),
        radial-gradient(900px 300px at 90% 90%, rgba(183, 28, 28, 0.02), transparent 8%),
        url("../img/bg.png") center / cover no-repeat,
        linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
}

.intro {
    min-height: 100svh;
}

html {
    background: #0b0b0b;
    color-scheme: dark;
}

body {
    background: transparent;
}

@supports (padding: max(0px)) {
    body {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}

.mobile-dock,
.mobile-menu {
    display: flex;
}

/* ── Mobil Menü Backdrop ── */
#mobileMenuBackdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10020;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

#mobileMenuBackdrop.open {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 820px) {
    .header {
        position: relative;
    }

}

/* ── Hamburger Butonu ── */
.mobile-dock.in-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, .1);
    cursor: pointer;
    z-index: 10030;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.mobile-dock.in-header:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Hamburger çizgiler */
.mobile-dock .grid4 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.mobile-dock .grid4 i {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: background 0.2s ease, transform 0.25s ease, opacity 0.25s ease;
}

/* Menü açıkken X animasyonu */
.mobile-dock[aria-expanded="true"] .grid4 i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--accent-gold);
}

.mobile-dock[aria-expanded="true"] .grid4 i:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-dock[aria-expanded="true"] .grid4 i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--accent-gold);
}

/* 4. nokta artık kullanılmıyor - gizle */
.mobile-dock[aria-expanded] .grid4 i:nth-child(4) {
    display: none;
}

/* ── Menü Panel (fixed drawer, sağdan kayar) ── */
.mobile-menu.in-header {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(78vw, 300px);
    flex-direction: column;
    gap: 6px;
    background: #111;
    border-left: 1px solid rgba(255, 255, 255, .08);
    padding: 80px 14px 24px;
    box-shadow: -12px 0 40px rgba(0, 0, 0, .6);
    z-index: 10025;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    pointer-events: none;
}

.mobile-menu.in-header.open {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.18s ease, color 0.18s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 184, 69, 0.10);
    color: var(--accent-gold);
}

.mobile-menu a[aria-current="page"] {
    background: rgba(255, 184, 69, 0.12);
    color: var(--accent-gold);
    border-left: 3px solid var(--accent-gold);
    padding-left: 13px;
}

.mobile-menu a:active {
    opacity: 0.8;
}

/* Menü dock artık her zaman görünüyor, script.js kontrolleri yeterli */

.mobile-dock.in-header * {
    pointer-events: none;
}

@media (max-width: 820px) {
    .intro-logo {
        width: min(72vw, 340px);
        height: min(72vw, 340px);
    }
}

@media (max-width: 360px) {
    .intro-logo {
        width: 78vw;
        height: 78vw;
    }
}

.squads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 900px) {
    .squads-grid {
        grid-template-columns: 1fr;
    }
}

.squad-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
    display: flex;
    flex-direction: column;
}

.squad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(183, 28, 28, 0.15);
    border-color: var(--accent-red);
}

.squad-header {
    background: rgba(183, 28, 28, 0.05);
    padding: 24px;
    border-bottom: 2px solid var(--accent-red);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.squad-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-red);
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.squad-header h2 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.squad-role {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.squad-body {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.squad-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.squad-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.squad-detail .label {
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.squad-detail .value {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.5;
}

/* --- Dashboard UI Redesign (Keeping Base Theme) --- */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background: var(--bg);
    /* Keep existing background */
}

/* Sidebar */
.dashboard-sidebar {
    background: rgba(18, 18, 18, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100vh;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.sidebar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-logo {
    width: 60px;
    height: 60px;
}

.sidebar-logo img {
    width: 100%;
    object-fit: contain;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    text-align: center;
    line-height: 1.2;
}

.sidebar-subtitle {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* User Badge in Sidebar */
.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.sidebar-user-avatar {
    width: 36px;
    height: 36px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.sidebar-user-info {
    display: flex;
    flex-direction: column;
}

.sidebar-user-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.sidebar-user-role {
    font-size: 0.75rem;
    color: var(--accent-gold);
    /* Using theme gold for roles */
}

/* Navigation Menu */
.sidebar-nav-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-nav-title {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    padding-left: 12px;
}

.sidebar-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    outline: none;
    width: 100%;
}

.sidebar-nav-btn i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sidebar-nav-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-nav-btn.active {
    background: var(--accent-red);
    /* Theme red for active */
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(183, 28, 28, 0.2);
}

.sidebar-logout {
    margin-bottom: 20px;
    color: var(--accent-red);
}

.sidebar-logout:hover {
    background: rgba(183, 28, 28, 0.1);
    color: var(--accent-red);
}

/* Main Dashboard Area */
.dashboard-main {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100vh;
    overflow-y: auto;
}

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

.dashboard-header-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-header-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Grid Layouts for Content */
.dash-grid-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.dash-grid-2col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Cards */
.dash-card {
    background: rgba(22, 22, 22, 0.6);
    /* Slightly lighter than bg */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dash-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-card-title i {
    color: var(--accent-gold);
}

/* Stat Card Specific */
.stat-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    /* Theme gold for numbers */
    line-height: 1;
}

.stat-value.green {
    color: #2ecc71;
}

.stat-value.red {
    color: #e74c3c;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--muted);
}

/* List Items in Cards */
.dash-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dash-list-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.dash-list-info p {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.dash-badge.success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.dash-badge.warning {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.dash-badge.danger {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.dash-badge.primary {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

/* Main Profile Header Card */
.profile-header-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(to right, rgba(183, 28, 28, 0.1), rgba(0, 0, 0, 0));
    border-left: 4px solid var(--accent-red);
}

.profile-large-avatar {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text);
}

.profile-header-info h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.profile-header-info p {
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.role-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text);
}

/* Forms internal to dash */
.dash-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 8px;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.dash-input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Global select fix — tarayıcı beyaz arka planını engelle */
select {
    background-color: #1a1a1a;
    color: var(--text, #e6e6e6);
    -webkit-appearance: none;
    appearance: none;
}

select option {
    background-color: #1a1a1a;
    color: #e6e6e6;
}

/* form-group içindeki select (join, login sayfaları) */
.form-group select {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select:focus {
    outline: none;
    border-color: rgba(255, 184, 69, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 184, 69, 0.1);
}

/* Quick Actions Button list */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quick-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.quick-btn.red:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    color: #e74c3c;
}

.quick-btn.green:hover {
    background: rgba(46, 204, 113, 0.2);
    border-color: #2ecc71;
    color: #2ecc71;
}

.quick-btn.blue:hover {
    background: rgba(52, 152, 219, 0.2);
    border-color: #3498db;
    color: #3498db;
}

.quick-btn.warning:hover {
    background: rgba(243, 156, 18, 0.2);
    border-color: #f39c12;
    color: #f39c12;
}

/* Dashboard Tables */
.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th,
.dash-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.dash-table th {
    background: rgba(0, 0, 0, 0.2);
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.dash-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Mobile Utilities */
.mobile-hide {
    display: inherit;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }

    .mobile-only {
        display: inherit !important;
    }

    .dash-table th,
    .dash-table td {
        padding: 8px 6px;
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
        display: block;
    }

    /* Sidebar mobilede overlay olarak açılır */
    .dashboard-sidebar {
        display: flex !important;
        position: fixed;
        top: 0;
        left: -100%;
        width: min(300px, 85vw);
        height: 100svh;
        z-index: 9000;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding-bottom: env(safe-area-inset-bottom, 100px);
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
    }

    .dashboard-sidebar.mobile-open {
        left: 0;
    }

    /* Overlay arkaplan */
    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 8999;
        backdrop-filter: blur(2px);
    }

    .sidebar-overlay.active {
        display: block;
    }

    /* Mobil üst header */
    .dashboard-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(12, 12, 12, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        position: sticky;
        top: 0;
        z-index: 100;
        backdrop-filter: blur(8px);
    }

    .dashboard-mobile-header-title {
        font-size: 1rem;
        font-weight: 800;
        color: var(--text);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .sidebar-toggle-btn {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        cursor: pointer;
        color: var(--text);
        font-size: 1.2rem;
    }

    .dashboard-main {
        height: auto;
        min-height: 100vh;
        padding: 0 0 40px;
    }

    /* Dashboard header masaüstü versiyonu mobilden gizlensin */
    .dashboard-header {
        display: none;
    }

    #profileDynamicContent {
        padding: 16px;
    }

    .dash-grid-2col {
        grid-template-columns: 1fr;
    }

    /* Stat kartları mobilden 2x2 */
    .dash-grid-stats,
    .player-info-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    @media (max-width: 500px) {
        .player-info-grid {
            grid-template-columns: 1fr !important;
        }
    }

    .stat-value {
        font-size: 1.8rem;
    }

    /* Profile header kart mobilden kolon */
    .profile-header-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .profile-header-info h2 {
        font-size: 1.1rem;
    }

    .profile-header-info>div {
        justify-content: center !important;
    }

    /* Dashboard header date gizle küçük ekranında */
    .dashboard-header-date {
        display: none;
    }

    .dashboard-header-title {
        font-size: 1.2rem;
    }
}

/* Masaüstünde mobil header gizle */
@media (min-width: 901px) {
    .dashboard-mobile-header {
        display: none;
    }

    .sidebar-overlay {
        display: none !important;
    }
}

.sidebar-category {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 8px 10px;
}

.sidebar-nav-btn {
    padding-left: 20px;
}

/* --- Modal & Form Premium Enhancements --- */
.modal-content {
    border-radius: 16px;
    overflow: visible !important;
    animation: modalSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

.close-modal:hover {
    transform: scale(1.1) rotate(90deg) !important;
    background: #ff4757 !important;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4) !important;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-input {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 0 4px rgba(255, 184, 69, 0.15) !important;
    outline: none;
}

.btn.primary {
    background: linear-gradient(135deg, #2ecc71, #27ae60) !important;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.25) !important;
    color: white !important;
}

.btn.primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(46, 204, 113, 0.35) !important;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    pointer-events: auto;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2ecc71;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2ecc71;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Profile Edit Responsive Grid */
.profile-edit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 900px) {
    .profile-edit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Profile Info Row Stacking */
.profile-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
    .profile-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Player Detail View (used in modal) */
.player-detail-hero {
    width: 100%;
    padding: 60px 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #111), url('../img/NEW-Banner.png') center/cover no-repeat !important;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.player-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.player-detail-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #1a1a24;
    outline: 2px solid var(--primary-color);
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow);
    background: #1a1a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease, border-color 0.3s ease;
}

.player-detail-avatar:hover,
.profile-large-avatar:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    border-color: var(--accent-gold);
}

.player-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
}

.stat-glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow-wrap: anywhere;
}

.stat-glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(52, 152, 219, 0.3);
    transform: translateY(-5px);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.equipment-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.equipment-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.05);
}

.section-title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0 20px;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border), transparent);
}

@media (max-width: 600px) {
    .player-detail-hero {
        padding: 40px 20px;
    }

    .player-detail-avatar {
        width: 110px;
        height: 110px;
        font-size: 2rem;
    }
}

/* Markdown Content Styling */
.markdown-content p,
.markdown-content li {
    white-space: pre-wrap;
}

.markdown-content ul,
.markdown-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.markdown-content li {
    margin-bottom: 0.5rem;
}

.markdown-content p {
    margin-bottom: 1rem;
}

.markdown-content strong {
    color: #fff;
}

/* Markdown Hint Box */
.md-hint-box {
    background: rgba(52, 152, 219, 0.05);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.md-hint-box h5 {
    color: #3498db;
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.md-hint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.md-hint-item {
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.md-hint-item code {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
    font-family: monospace;
    width: fit-content;
}

/* --- Feedback & Complaint System Premium Styles --- */
.feedback-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feedback-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--card-accent, #9b59b6);
}

.feedback-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feedback-badge.suggestion {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.feedback-badge.complaint {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.feedback-badge.question {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.feedback-badge.report {
    background: rgba(231, 76, 60, 0.15);
    color: #ff4757;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.feedback-form-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.feedback-meta {
    font-size: 0.82rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feedback-user {
    color: #fff;
    font-weight: 600;
}

.feedback-date {
    font-size: 0.75rem;
    opacity: 0.7;
}

.feedback-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.feedback-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Tab Premium Styles */
.feedback-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
    flex-wrap: wrap;
}

.feedback-tab-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.feedback-tab-btn.active {
    background: var(--tab-color, #9b59b6);
    color: #fff !important;
    box-shadow: 0 4px 15px var(--tab-glow, rgba(155, 89, 182, 0.3));
}