@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,600&display=swap');
:root {
    --primary: #e90e0e;
    --primary-light: #f83838;
    --primary-dark: #a10303;
    --primary-glow: rgba(233, 14, 14, 0.55);
    --primary-glow-strong: rgba(233, 14, 14, 0.7);
    --bg-dark: #060a0f;
    --bg-card: #0a1520;
    --bg-card-hover: #0d1b2a;
    --border: #132030;
    --border-glow: rgba(233, 14, 14, 0.35);
    --text: #ffffff;
    --text-dim: #b88b8b;
    --text-dimmer: #754a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ===================== LOGO ===================== */

@keyframes shineGX {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.logo_gx {
    background: linear-gradient( 120deg, #e90e0e, #e90e0e 38%, #fc7d7d 50%, #e90e0e 62%, #e90e0e);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shineGX 3s linear infinite;
    filter: drop-shadow(0 0 18px rgba(233, 14, 14, 0.65));
    /* remove old border/padding */
    border: none;
    padding: 0;
}

.logo_stuff {
    font-style: italic;
    font-weight: 600;
    background: linear-gradient( 120deg, #ffffff, #ffffff 38%, #bae6fd 50%, #ffffff 62%, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shineGX 3s linear infinite;
    animation-delay: 0.6s;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(186, 230, 253, 0.35));
}

/* Auth-Logo größer */

.auth_logo .logo_gx,
.auth_logo .logo_stuff {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1;
}

/* Header-Logo */

.logo .logo_gx,
.logo .logo_stuff {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1;
}

/* ================================================ */

/* Auth Screen */

/* ===================== LOGIN SCREEN ANIMATION UPGRADE ===================== */

.hidden {
    display: none !important;
}

.auth_screen {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(circle at top, rgba(233, 14, 14, 0.35), rgba(6, 10, 15, 0.95) 65%);
    overflow: hidden;
    z-index: 1000;
    animation: fadeInScreen 0.8s ease forwards;
    opacity: 0;
}

.auth_screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 25%, rgba(233, 14, 14, 0.25), transparent 55%),
        radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.08), transparent 55%),
        radial-gradient(circle at 50% 80%, rgba(233, 14, 14, 0.18), transparent 55%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 40px);
    mix-blend-mode: screen;
    opacity: 0.85;
    pointer-events: none;
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes fadeInScreen {
    from { opacity: 0; }
    to { opacity: 1; }
}

.auth_container {
    width: min(460px, 100%);
    padding: 32px 30px;
    background: rgba(5, 10, 18, 0.95);
    border: 1px solid rgba(233, 14, 14, 0.3);
    border-radius: 18px;
    box-shadow: 0 0 60px rgba(233, 14, 14, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    animation: loginFloat 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform: translateY(40px) scale(0.96);
    opacity: 0;
    position: relative;
    overflow: hidden;
}

@keyframes loginFloat {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Pulsierender Glow hinter dem Logo */
.auth_logo {
    position: relative;
}

.auth_logo::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 80px;
    background: var(--primary-glow-strong);
    filter: blur(70px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: logoPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoPulse {
    0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.65; transform: translate(-50%, -50%) scale(1.15); }
}

/* Button Hover Upgrade */
.discord_auth_btn {
    position: relative;
    overflow: hidden;
}

.discord_auth_btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    transition: 0.4s;
}

.discord_auth_btn:hover::after {
    transform: translateX(100%);
}

/* Auth stats */
.auth_stats {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding: 14px 18px 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    box-shadow: inset 0 0 12px rgba(233, 14, 14, 0.15);
}

.auth_stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.stat_value {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fca5a5;
    text-shadow: 0 2px 12px rgba(233, 14, 14, 0.55);
}

.stat_label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.auth_subtitle {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.discord_auth_btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(145.6deg, #4a0303 28.53%, var(--primary) 77.04%);
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 0 35px rgba(233, 14, 14, 0.25);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.55);
}

.discord_auth_btn svg {
    width: 22px;
    height: 22px;
}

.discord_auth_btn:hover {
    box-shadow: 0 0 50px rgba(233, 14, 14, 0.55);
    transform: translateY(-2px);
}

.auth_note {
    margin-top: 20px;
    font-size: 11px;
    color: var(--text-dimmer);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Main Content */

.main_content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.main_content.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Admin Panel Enhancements */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin_panel {
    background: radial-gradient(circle at 20% 20%, rgba(233, 14, 14, 0.13), transparent 50%),
                radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05), transparent 55%),
                linear-gradient(145deg, rgba(6, 10, 15, 1) 0%, rgba(5, 7, 14, 1) 35%, rgba(6, 10, 15, 1) 100%);
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
}

.admin_bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.35;
    animation: bgSlide 20s linear infinite;
    z-index: 0;
}

.admin_bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 60, 60, 0.28), transparent 55%),
                radial-gradient(circle at 70% 80%, rgba(0, 230, 255, 0.16), transparent 60%);
    opacity: 0.5;
    mix-blend-mode: screen;
    animation: bgPulse 18s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

@keyframes bgSlide {
    from { background-position: 0 0; }
    to { background-position: 80px 80px; }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(233, 14, 14, 0.3);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 45px rgba(255, 102, 102, 0.35);
        transform: translateY(-2px);
    }
}

/* Premium Page Enhancements */

.premium_page {
    background: radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.22), transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.18), transparent 55%),
                linear-gradient(145deg, rgba(6, 10, 15, 1) 0%, rgba(5, 7, 14, 1) 35%, rgba(6, 10, 15, 1) 100%);
    overflow-x: hidden;
}

.premium_bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    background-image:
        radial-gradient(circle at 25% 20%, rgba(16, 185, 129, 0.25), transparent 60%),
        radial-gradient(circle at 75% 35%, rgba(14, 165, 233, 0.2), transparent 60%);
    filter: blur(80px);
    animation: premiumBgPulse 16s ease-in-out infinite;
    z-index: 0;
}

@keyframes premiumBgPulse {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

.premium_page .main_content {
    position: relative;
    z-index: 10;
}

.premium_page header {
    position: relative;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.premium_page header::before {
    content: '';
    position: absolute;
    inset: -30% -40% -30% -40%;
    background: radial-gradient(circle at 15% 65%, rgba(16, 185, 129, 0.3), transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.3), transparent 55%);
    filter: blur(38px);
    animation: premiumHeaderGlow 11s ease-in-out infinite;
    z-index: 0;
}

@keyframes premiumHeaderGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(10px, -8px) scale(1.06); opacity: 0.85; }
}

.premium_page header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.6;
    pointer-events: none;
}

/* Premium hero section */
.premium_hero {
    padding: 40px 22px 24px;
    max-width: 1200px;
    margin: 0 auto 26px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.premium_hero::before {
    content: '';
    position: absolute;
    inset: -30% -40% -30% -40%;
    background: radial-gradient(circle at 15% 60%, rgba(16, 185, 129, 0.25), transparent 60%),
                radial-gradient(circle at 80% 30%, rgba(14, 165, 233, 0.22), transparent 55%);
    filter: blur(28px);
    animation: premiumHeaderGlow 12s ease-in-out infinite;
    z-index: 0;
}

.premium_hero_inner {
    position: relative;
    z-index: 1;
}

.premium_hero h1 {
    font-size: 32px;
    margin: 0 0 6px;
}

.premium_hero .dim {
    max-width: 750px;
    margin-top: 8px;
}

.premium_features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.premium_feature {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.premium_feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.premium_feature h4 {
    font-size: 14px;
    margin: 0 0 6px;
}

.premium_feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.premium_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.18);
    border: 1px solid rgba(14, 165, 233, 0.35);
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.premium_label .rocket_icon {
    width: 16px;
    height: 16px;
}

.premium_leak_card {
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.12);
}

.admin_panel .main_content {
    position: relative;
    z-index: 10;
    max-height: 100vh;
    overflow-y: auto;
    padding-right: 12px; /* allow scroll bar space */
}

.admin_panel header {
    animation: pulseGlow 10s ease-in-out infinite;
    position: relative;
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.admin_panel header::before {
    content: '';
    position: absolute;
    inset: -30% -40% -30% -40%;
    background: radial-gradient(circle at 10% 80%, rgba(233, 14, 14, 0.22), transparent 55%),
                radial-gradient(circle at 80% 30%, rgba(14, 165, 233, 0.16), transparent 60%);
    filter: blur(24px);
    animation: headerGlow 12s ease-in-out infinite;
    z-index: 0;
}

.admin_panel header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes headerGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
    50% { transform: translate(10px, -8px) scale(1.05); opacity: 0.8; }
}

.admin_panel .stat_card {
    animation: fadeInUp 0.6s ease both, pulseGlow 12s ease-in-out infinite;
}

.panel {
    animation: fadeInUp 0.5s ease both;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 12, 22, 0.85);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    border-radius: 16px;
}

.panel h3 {
    position: relative;
    display: inline-block;
}

.panel h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(233, 14, 14, 0.9), rgba(255, 110, 110, 0.7));
    box-shadow: 0 0 10px rgba(233, 14, 14, 0.5);
}

.stat_card {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat_card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(233, 14, 14, 0.45), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(233, 14, 14, 0.35);
}

.stat_card:hover::after {
    opacity: 1;
}

.action_btn {
    transition: all 0.25s ease;
    border-radius: 12px;
    box-shadow: 0 0 0 rgba(233, 14, 14, 0);
}

.action_btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(233, 14, 14, 0.35);
}

.action_btn:active {
    transform: translateY(0);
    box-shadow: 0 0 12px rgba(233, 14, 14, 0.45);
}

.btn_approve, .btn_reject, .btn_delete {
    font-weight: 700;
    letter-spacing: 0.08em;
}

.btn_approve {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(34, 197, 94, 0.7));
    color: #0b1220;
}

.btn_reject {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(239, 68, 68, 0.7));
    color: #0b1220;
}

.btn_delete {
    border: 1px solid rgba(239, 68, 68, 0.7);
    background: rgba(0, 0, 0, 0.2);
    color: rgba(239, 68, 68, 0.9);
}

.leak_item {
    animation: fadeInUp 0.4s ease both;
}

/* Header */

header {
    position: sticky;
    top: 0;
    background: rgba(6, 10, 15, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border-glow);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.06);
}

.header_left .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Premium Label */
.premium_label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0ea5e9;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4), inset 0 0 20px rgba(14, 165, 233, 0.1);
    animation: premiumGlow 2s ease-in-out infinite;
}

.rocket_icon {
    width: 14px;
    height: 14px;
    fill: #0ea5e9;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.6));
}

@keyframes premiumGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(14, 165, 233, 0.4), inset 0 0 20px rgba(14, 165, 233, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(14, 165, 233, 0.6), inset 0 0 30px rgba(14, 165, 233, 0.15);
    }
}

/* Search */

.search_container {
    position: relative;
    width: 280px;
}

.search_icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: var(--text-dimmer);
    pointer-events: none;
}

.search_input {
    width: 100%;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0px 0px 17.7px #030b14;
    border-radius: 3px;
    padding: 0 16px 0 38px;
    color: var(--text);
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.search_input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: inset 0px 0px 17.7px #030b14, 0 0 10px rgba(233, 14, 14, 0.2);
}

.search_input::placeholder {
    color: #717171;
}

/* Action Buttons */

.action_btn {
    height: 32px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    color: var(--text);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.55);
}

.action_btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.action_btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(233, 14, 14, 0.15);
}

.upload_btn {
    background: linear-gradient(145.6deg, #4a0303 28.53%, var(--primary) 77.04%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 35px rgba(233, 14, 14, 0.2);
}

.upload_btn:hover {
    background: linear-gradient(145.6deg, #4a0303 28.53%, var(--primary-light) 77.04%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 35px rgba(233, 14, 14, 0.45);
    color: white;
}

.admin_btn,
.logout_btn {
    padding: 0 12px;
}

.admin_btn span,
.logout_btn span {
    display: none;
}

/* Leaks Container */

.leaks_container {
    padding: 40px;
    min-height: calc(100vh - 200px);
    position: relative;
}

.leaks_container::before {
    content: '';
    position: fixed;
    width: 287px;
    height: 221px;
    left: -171px;
    bottom: 150px;
    background: var(--primary-glow);
    filter: blur(112px);
    pointer-events: none;
    z-index: 0;
}

.leaks_container::after {
    content: '';
    position: fixed;
    width: 287px;
    height: 221px;
    right: -100px;
    bottom: 120px;
    background: var(--primary-glow);
    filter: blur(112px);
    pointer-events: none;
    z-index: 0;
}

.leaks_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: fadeIn 0.5s ease;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Leak Card */

.leak_card {
    background: linear-gradient(0deg, #000000, #060a0f);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: visible;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.leak_card::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 23px;
    left: -1px;
    top: 12px;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.leak_card:hover {
    border-color: rgba(233, 14, 14, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.12);
}

.leak_card:hover::before {
    opacity: 1;
}

.leak_image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--bg-card);
    display: block;
}

.leak_content {
    padding: 18px;
}

.leak_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.leak_title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.35);
    flex: 1;
    line-height: 1.3;
}

.leak_badge {
    padding: 4px 10px;
    background: linear-gradient(145.6deg, #4a0303 28.53%, var(--primary) 77.04%);
    border: 0.5px solid rgba(233, 14, 14, 0.6);
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: 8px;
    box-shadow: 0 0 15px rgba(233, 14, 14, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.leak_badge.premium_badge {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-color: rgba(14, 165, 233, 0.7);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.1);
    color: #fff;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge_icon {
    width: 12px;
    height: 12px;
    fill: currentColor;
    filter: drop-shadow(0 0 3px rgba(14, 165, 233, 0.6));
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(14, 165, 233, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(14, 165, 233, 0.7), inset 0 0 15px rgba(255, 255, 255, 0.15);
    }
}

.leak_description {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.leak_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.07);
    font-size: 10px;
    color: #717171;
    letter-spacing: 0.02em;
}

.leak_uploader {
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.leak_uploader svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
}

.leak_stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.leak_stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.leak_stat svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
}

.leak_actions {
    margin-top: 14px;
    display: flex;
    gap: 8px;
}

.btn_download {
    flex: 1;
    height: 26px;
    background: linear-gradient(145.6deg, #4a0303 28.53%, var(--primary) 77.04%);
    border: 0.2px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    color: white;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 0 20px rgba(233, 14, 14, 0.2);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.55);
}

.btn_download svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
}

.btn_download:hover {
    box-shadow: 0 0 30px rgba(233, 14, 14, 0.5);
}

.btn_download:disabled {
    background: linear-gradient(145.6deg, #2a2a2a 28.53%, #404040 77.04%);
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(100, 100, 100, 0.2);
}

.btn_download:disabled:hover {
    box-shadow: 0 0 10px rgba(100, 100, 100, 0.2);
}

.btn_like {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn_like svg {
    width: 13px;
    height: 13px;
    stroke: var(--text-dimmer);
    fill: none;
    transition: all 0.3s ease;
}

.btn_like:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.08);
    box-shadow: 0 0 12px rgba(233, 14, 14, 0.2);
}

.btn_like:hover svg {
    stroke: var(--primary);
    fill: rgba(233, 14, 14, 0.3);
}

/* No Results */

.no_results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-dim);
    font-size: 15px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Footer */

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px;
    border-top: 0.5px solid var(--border-glow);
    font-size: 11px;
    color: var(--text-dimmer);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer_text {
    font-weight: 700;
    color: var(--text-dim);
}

/* Modal */

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal_container {
    position: relative;
    background: linear-gradient(0deg, #000000, #060a0f);
    border: 0.5px solid var(--border-glow);
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    z-index: 1;
    box-shadow: 0 0 60px rgba(233, 14, 14, 0.18);
}

.modal_container::before {
    content: '';
    position: absolute;
    width: 287px;
    height: 180px;
    left: 50%;
    top: -140px;
    transform: translateX(-50%);
    background: var(--primary-glow-strong);
    filter: blur(112px);
    pointer-events: none;
}

.modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}

.modal_header h2 {
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--text);
}

.modal_close {
    width: 25px;
    height: 25px;
    background: linear-gradient(225deg, rgba(255, 0, 0, 0.15) 0%, rgba(250, 0, 0, 0.02) 100%);
    border: 0.5px solid rgba(255, 0, 4, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal_close svg {
    width: 10px;
    height: 10px;
    stroke: #FF0004;
    filter: drop-shadow(0px 0px 4px rgba(255, 0, 4, 0.25));
}

.modal_close:hover {
    background: rgba(255, 0, 0, 0.2);
}

.modal_body {
    padding: 26px;
}

/* Leak Detail Modal */
.leak_detail_modal {
    max-width: 820px;
}

.leak_detail_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.leak_detail_meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 6px;
    flex-wrap: wrap;
}

.leak_detail_badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.15);
    color: #0ae;
}

.leak_detail_date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.leak_detail_grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
    gap: 20px;
    align-items: start;
}

.leak_detail_image {
    border-radius: 8px;
    overflow: hidden;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.leak_detail_image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.leak_detail_info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.leak_detail_row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 10px;
}

.detail_label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.detail_value {
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}

.leak_detail_description h4 {
    margin: 0 0 8px 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.7);
}

.leak_detail_description p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    white-space: pre-wrap;
}

.leak_detail_actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.leak_detail_comments {
    margin-top: 24px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.07);
    padding-top: 18px;
}

.leak_detail_comments h4 {
    margin: 0 0 12px 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.7);
}

.comment_form {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.comment_form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--text);
    font-size: 13px;
}

.comment_form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
}

.comment_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 4px;
}

.comment_item {
    padding: 11px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
}

.comment_header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 6px;
}

.comment_author {
    font-size: 12px;
    font-weight: 700;
}

.comment_time {
    font-size: 11px;
}

.comment_text {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 760px) {
    .leak_detail_grid {
        grid-template-columns: 1fr;
    }
}

.form_group {
    margin-bottom: 18px;
}

.form_group label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--text);
}

.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0px 0px 17.7px #030b14;
    border-radius: 3px;
    padding: 11px 14px;
    color: var(--text);
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form_group textarea {
    resize: vertical;
    min-height: 120px;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: inset 0px 0px 17.7px #030b14, 0 0 10px rgba(14, 165, 233, 0.2);
}

.form_group input::placeholder,
.form_group textarea::placeholder {
    color: #717171;
}

.form_group select {
    appearance: none;
    cursor: pointer;
}

.form_group select option {
    background: #060a0f;
}

.form_group.checkbox label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 12px;
}

.form_group.checkbox label span {
    flex: 1;
}

.toggle_label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
}

.toggle_switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.toggle_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.1);
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    border-radius: 13px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: all 0.4s ease;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

input[type="checkbox"]:checked + .slider {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

input[type="checkbox"]:checked + .slider:before {
    transform: translateX(24px);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
}

.slider:hover {
    border-color: var(--primary);
}

input[type="checkbox"]:focus + .slider {
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

/* Neue Checkbox Styles */
.form_group_checkbox {
    margin-bottom: 18px;
}

.checkbox_wrapper {
    display: flex;
    align-items: center;
}

.checkbox_input {
    display: none;
}

.checkbox_label_new {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    color: var(--text);
}

.checkbox_box_new {
    position: relative;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(14, 165, 233, 0.4);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox_input:checked ~ .checkbox_label_new .checkbox_box_new {
    background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.checkbox_box_new::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

.checkbox_input:checked ~ .checkbox_label_new .checkbox_box_new::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

.checkbox_label_new:hover .checkbox_box_new {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.3);
}

.checkbox_text {
    color: var(--text);
    font-size: 12px;
}

.modal_footer {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.btn_primary,
.btn_secondary {
    flex: 1;
    height: 34px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.55);
    border: 0.2px solid rgba(255, 255, 255, 0.3);
}

.btn_primary {
    background: linear-gradient(145.6deg, #4a0303 28.53%, var(--primary) 77.04%);
    color: white;
    box-shadow: 0 0 35px rgba(233, 14, 14, 0.2);
}

.btn_primary:hover {
    box-shadow: 0 0 35px rgba(233, 14, 14, 0.5);
}

.btn_secondary {
    background: linear-gradient(145.6deg, #404040 28.53%, #595959 77.04%);
    color: white;
    box-shadow: 0 0 35px rgba(43, 43, 43, 0.35);
}

.btn_secondary:hover {
    background: linear-gradient(145.6deg, #505050 28.53%, #6a6a6a 77.04%);
}

.upload_note {
    margin-top: 16px;
    text-align: center;
    font-size: 11px;
    color: var(--text-dimmer);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Responsive */

@media (max-width: 1400px) {
    .leaks_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .leaks_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    header {
        padding: 14px 24px;
    }
    .leaks_container {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .leaks_grid {
        grid-template-columns: 1fr;
    }
    header {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .header_right {
        flex-wrap: wrap;
    }
    .search_container {
        width: 100%;
    }
    .filter_btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .leaks_container {
        padding: 16px;
    }
    .leaks_grid {
        gap: 14px;
    }
    .leak_content {
        padding: 14px;
    }
    .modal_container {
        max-width: 100%;
    }
}

.btn_like.liked {
    border-color: var(--primary);
    background: rgba(233, 14, 14, 0.08);
}

.btn_like.liked svg {
    stroke: var(--primary);
    fill: rgba(233, 14, 14, 0.5);
}

.btn_delete {
    width: 26px;
    height: 26px;
    background: rgba(255, 0, 0, 0.05);
    border: 0.5px solid rgba(255, 0, 4, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn_delete svg {
    width: 13px;
    height: 13px;
    stroke: rgba(255, 80, 80, 0.7);
    transition: all 0.3s ease;
}

.btn_delete:hover {
    border-color: #ff0004;
    background: rgba(255, 0, 0, 0.15);
    box-shadow: 0 0 12px rgba(255, 0, 4, 0.25);
}

.btn_delete:hover svg {
    stroke: #ff4444;
}

.btn_report {
    width: 26px;
    height: 26px;
    background: rgba(255, 165, 0, 0.1);
    border: 0.5px solid rgba(255, 165, 0, 0.4);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn_report svg {
    width: 12px;
    height: 12px;
    stroke: #ffa500;
}

.btn_report:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.6);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.report_leak_title {
    padding: 8px 11px;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    font-size: 12px;
    color: var(--text);
    margin: 0;
}