/* Global Select/Option Visibility Fix */
select option {
    background-color: #1a1a1a !important;
    color: white !important;
}

:root {
    --bg-color: #050510;
    --primary-purple: #7d40ff;
    --secondary-purple: #9d5cff;
    --text-white: #ffffff;
    --text-muted: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'); /* Pattern overlay */
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125, 64, 255, 0.2) 0%, rgba(125, 64, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 10s infinite alternate;
}

.blob-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(125, 64, 255, 0.15) 0%, rgba(125, 64, 255, 0) 70%);
}

.blob-2 {
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, rgba(88, 101, 242, 0) 70%);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(125, 64, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 64, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
}

/* Header Styles */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 0;
    transition: var(--transition);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 30px;
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.header-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--primary-purple));
}

.logo .tag {
    color: var(--primary-purple);
    font-weight: 800;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

header nav ul li a i {
    font-size: 14px;
    opacity: 0.8;
}

header nav ul li a:hover, header nav ul li a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Menu Refined */
header .dropdown {
    position: relative;
}

header .dropdown-trigger {
    cursor: pointer;
}

header .dropdown-trigger i.arrow {
    font-size: 10px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

header .dropdown:hover .dropdown-trigger i.arrow {
    transform: rotate(180deg);
}

header .dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #0a0a19;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 15px;
    min-width: 200px;
    width: max-content;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(125, 64, 255, 0.1);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0;
}

header .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

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

header .dropdown-menu li {
    width: 100%;
}

header .dropdown-menu li a {
    padding: 12px 18px !important;
    border-radius: 12px !important;
    background: transparent !important;
    width: 100%;
    justify-content: flex-start !important;
    color: var(--text-muted) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}

header .dropdown-menu li a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

header .dropdown-menu li a:hover {
    background: rgba(125, 64, 255, 0.1) !important;
    color: white !important;
    transform: translateX(5px);
}

header .dropdown-menu li a:hover i {
    color: var(--primary-purple);
    transform: scale(1.2);
}

header .dropdown-menu li:not(:last-child) {
    margin-bottom: 5px;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-login {
    background-color: var(--primary-purple);
    color: white;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-login:hover {
    background-color: #5865F2; /* Discord-ish blue from image 2 */
    transform: none;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(5, 5, 16, 0.7), rgba(5, 5, 16, 0.9)), 
                url('https://images.unsplash.com/photo-1587573088668-3499fa52480f?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Background Tiles/Shapes */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(125, 64, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(125, 64, 255, 0.03);
    border: 1px solid rgba(125, 64, 255, 0.1);
    border-radius: 10px;
    animation: floatShape 20s infinite linear;
}

.shape:nth-child(1) { width: 100px; height: 100px; top: 20%; left: 10%; animation-duration: 25s; }
.shape:nth-child(2) { width: 150px; height: 150px; top: 60%; left: 80%; animation-duration: 30s; }
.shape:nth-child(3) { width: 80px; height: 80px; top: 10%; left: 70%; animation-duration: 22s; }
.shape:nth-child(4) { width: 120px; height: 120px; top: 70%; left: 20%; animation-duration: 28s; }

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.hero-logo-wrapper {
    margin-bottom: 20px;
}

.hero-logo {
    width: 100px;
    filter: drop-shadow(0 0 10px var(--primary-purple));
    animation: float 3s ease-in-out infinite;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #ffcc00;
    margin-top: -10px;
}

.hero-welcome {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: -15px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(to bottom, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    position: relative;
}

.glow-text {
    animation: textGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(125, 64, 255, 0.2);
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(125, 64, 255, 0.2), 0 0 20px rgba(125, 64, 255, 0.1);
    }
    to {
        text-shadow: 0 0 25px rgba(125, 64, 255, 0.5), 0 0 40px rgba(125, 64, 255, 0.3);
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.hero-description strong {
    color: #ffcc00;
    font-weight: 700;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: nowrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    min-width: 160px;
    transition: var(--transition);
    background: rgba(42, 24, 89, 0.4);
    border: 3px solid #000;
    box-shadow: inset -3px -3px 0px rgba(21, 12, 45, 0.8), inset 3px 3px 0px rgba(125, 64, 255, 0.6);
    backdrop-filter: blur(10px);
    animation: statEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    animation-delay: var(--delay);
}

@keyframes statEntry {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 2px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover .stat-value {
    color: var(--secondary-purple);
    filter: drop-shadow(0 0 10px var(--primary-purple));
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.btn-primary {
    background-color: var(--primary-purple);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

/* Login Page */
.login-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.login-card {
    background: rgba(10, 10, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 40px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.login-logo img {
    height: 64px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px var(--primary-purple));
}

.login-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.login-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.btn-discord {
    background-color: #5865F2;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    margin-bottom: 25px;
}

.btn-discord:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
}

.login-footer {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.login-footer a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Coming Soon & Legal Pages */
.coming-soon-page {
    padding: 150px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-card {
    background: rgba(10, 10, 25, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(125, 64, 255, 0.5));
}

.status-badge {
    display: inline-block;
    background: rgba(125, 64, 255, 0.1);
    color: var(--primary-purple);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(125, 64, 255, 0.3);
}

.badge-admin {
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    color: white !important;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
    display: inline-block;
}

.coming-soon-actions {
    margin-top: 40px;
}

/* Dashboard Sidebar active state fix */
.dashboard-nav a.active {
    color: var(--primary-purple);
    background: rgba(125, 64, 255, 0.05);
}

footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-color);
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-container { padding: 0 20px; }
    nav { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
}
  
/* Header User Profile */  
.user-profile-header { display: flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.05); padding: 5px 15px; border-radius: 50px; border: 1px solid var(--glass-border); }  
.header-avatar { width: 32px; height: 32px; border-radius: 50%; }  
.header-username { font-weight: 600; font-size: 14px; color: var(--text-white); }  
.btn-logout-small { color: var(--text-muted); transition: var(--transition); }  
.btn-logout-small:hover { color: #ff4d4d; } 
  
/* Points Display */  
.points-display { display: flex; align-items: center; gap: 8px; background: rgba(139, 92, 246, 0.1); padding: 8px 15px; border-radius: 50px; border: 1px solid rgba(139, 92, 246, 0.3); color: var(--primary-purple); font-weight: 600; font-size: 14px; }  
.points-display i { font-size: 16px; }  
  
/* Profile Dropdown */  
.user-profile-dropdown { position: relative; cursor: pointer; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); padding: 5px 15px; border-radius: 50px; transition: var(--transition); }  
.user-profile-dropdown:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); }
.user-profile-trigger { display: flex; align-items: center; gap: 10px; padding: 0; transition: var(--transition); }  
.user-profile-trigger i { font-size: 12px; color: var(--text-muted); }  
.dropdown-content { position: absolute; top: calc(100% + 15px); right: 0; background: rgba(15, 15, 35, 0.95); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 12px; min-width: 180px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 1000; overflow: hidden; }  
.user-profile-dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }  
.dropdown-content a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: var(--text-white); text-decoration: none; font-size: 14px; transition: var(--transition); }  
.dropdown-content a:hover { background: rgba(255, 255, 255, 0.05); color: var(--primary-purple); }  
.dropdown-content a.logout-link:hover { color: #ff4d4d; }

/* Reward Link & Dot */
.reward-link {
    position: relative;
}
.reward-dot {
    position: absolute;
    top: 12px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4d4d;
    animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 77, 77, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}  

/* Reward Reminder Box */
.reward-reminder-box {
    background: linear-gradient(135deg, rgba(125, 64, 255, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 1px solid rgba(125, 64, 255, 0.2);
    border-radius: 18px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    animation: slideInDown 0.6s ease-out;
}

.reminder-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reminder-icon {
    font-size: 2rem;
    color: #ffa500;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.3));
    animation: pulse 2s infinite;
}

.reminder-text h4 {
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.1rem;
}

.reminder-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-claim-small {
    background: #ffa500;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-claim-small:hover {
    background: #ffb533;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
    .reward-reminder-box { flex-direction: column; gap: 20px; text-align: center; }
    .reminder-content { flex-direction: column; }
}

/* Dashboard Layout */  
.dashboard-section { padding: 120px 20px 40px; min-height: calc(100vh - 80px); }  

.user-points-card { border-color: rgba(139, 92, 246, 0.4) !important; background: rgba(139, 92, 246, 0.05) !important; }
.user-points-card .stat-icon { color: var(--primary-purple) !important; }
.dashboard-container { display: flex; gap: 30px; max-width: 1400px; margin: 0 auto; }  
.dashboard-sidebar {
    width: 320px;
    background: rgba(10, 10, 25, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    position: sticky;
    top: 100px;
}
.user-info-card { display: flex; flex-direction: row; align-items: center; gap: 15px; margin-bottom: 30px; }  
.user-info-card img { width: 50px; height: 50px; border-radius: 12px; }  
.user-details { display: flex; flex-direction: column; gap: 5px; }
.user-status-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.badge-verified { font-size: 10px; background: rgba(0, 255, 128, 0.1); color: #00ff80; padding: 2px 8px; border-radius: 4px; border: 1px solid rgba(0, 255, 128, 0.2); }  
.dashboard-nav .nav-group { margin-bottom: 25px; display: flex; flex-direction: column; gap: 5px; }  
.nav-label { font-size: 11px; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; letter-spacing: 1px; }  
.dashboard-nav a { display: flex; align-items: center; gap: 12px; padding: 10px 15px; color: var(--text-muted); text-decoration: none; border-radius: 10px; transition: var(--transition); font-size: 14px; }  
.dashboard-nav a:hover, .dashboard-nav a.active { background: rgba(255, 255, 255, 0.05); color: var(--text-white); }  
.dashboard-nav a.logout:hover { color: #ff4d4d; background: rgba(255, 77, 77, 0.05); }
.dashboard-nav a.active { color: var(--primary-purple); background: rgba(139, 92, 246, 0.05); }  
.dashboard-main { flex: 1; }  
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }  
.stat-card { background: rgba(10, 10, 25, 0.3); border: 1px solid var(--glass-border); border-radius: 16px; padding: 20px; display: flex; align-items: center; gap: 15px; }  
.stat-card.highlight { border-color: rgba(139, 92, 246, 0.3); background: rgba(139, 92, 246, 0.02); }  
.stat-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; color: var(--primary-purple); }  
.stat-value { display: block; font-size: 20px; font-weight: 700; color: var(--text-white); }  
.stat-label { font-size: 12px; color: var(--text-muted); }  
.content-row { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-top: 20px; }  
.content-box { background: rgba(10, 10, 25, 0.3); border: 1px solid var(--glass-border); border-radius: 16px; padding: 25px; margin-top: 20px; }  
.box-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }  
.box-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 0; color: var(--text-muted); text-align: center; }  
.box-empty i { font-size: 40px; margin-bottom: 15px; opacity: 0.2; } 

.btn-dashboard-nav { background: var(--primary-purple); color: #fff; text-decoration: none; padding: 10px 25px; border-radius: 8px; font-weight: 700; font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }  
.btn-dashboard-nav:hover { background: var(--secondary-purple); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(125, 64, 255, 0.3); }  
.tag-beta { font-size: 9px; background: rgba(88, 101, 242, 0.1); color: #5865F2; padding: 1px 6px; border-radius: 4px; margin-left: auto; }  
.tag-soon { font-size: 9px; background: rgba(255, 255, 255, 0.05); color: var(--text-muted); padding: 1px 6px; border-radius: 4px; margin-left: auto; } 
/* Discord Integration */
.discord-integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.linked-account-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.account-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.minecraft-account img {
    border-radius: 8px;
}

.account-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.account-name {
    font-weight: 700;
    color: white;
}

.account-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.account-submeta {
    font-size: 0.75rem;
    color: var(--primary-purple);
    opacity: 0.8;
}

.status-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.status-tag.success {
    background: rgba(0, 255, 128, 0.1);
    color: #00ff80;
    border: 1px solid rgba(0, 255, 128, 0.2);
}

.dm-status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    font-weight: 600;
}

.status-item i.success {
    color: #00ff80;
}

/* Notification Settings */
.notifications-settings .box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    width: 45px;
    height: 45px;
    background: rgba(125, 64, 255, 0.1);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.status-label {
    font-size: 0.8rem;
    color: var(--primary-purple);
    font-weight: 600;
}

.notifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.notif-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.notif-item.highlight {
    background: rgba(139, 92, 246, 0.03);
    border-color: rgba(139, 92, 246, 0.2);
}

.notif-item.giveaway .notif-icon {
    color: #a855f7;
}

.notif-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.notifications-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.save-status {
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
}

.save-status.visible {
    opacity: 1;
}

.save-status.success {
    color: #00ff80;
}

.save-status.error {
    color: #ff4d4d;
}

.save-btn {
    padding: 10px 25px !important;
}

.save-btn .btn-text {
    font-size: 14px !important;
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-muted);
}

.notif-item.highlight .notif-icon {
    color: var(--primary-purple);
}

.notif-text {
    flex: 1;
}

.notif-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.notif-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Switch Component */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    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.1);
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

input:checked + .slider {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-purple);
}

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

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

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

@media (max-width: 992px) {
    .discord-integration-grid, .notifications-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* About Noxus Section */
.about-noxus {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(125, 64, 255, 0.05) 0%, transparent 70%);
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Minecraft Button Style */
.btn-minecraft {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #4a2b9d; /* Purple Minecraft base */
    border: 4px solid #000;
    padding: 15px 40px;
    text-decoration: none;
    color: #fff;
    position: relative;
    box-shadow: inset -4px -4px 0px #2a1859, inset 4px 4px 0px #7d40ff;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 280px;
}

.btn-minecraft.secondary {
    background: #2a1859;
    box-shadow: inset -4px -4px 0px #150c2d, inset 4px 4px 0px #4a2b9d;
}

.btn-minecraft.danger {
    background: #ff4d4d;
    box-shadow: inset -4px -4px 0px #b30000, inset 4px 4px 0px #ff9999;
}

.btn-minecraft:hover {
    background: #7d40ff;
    box-shadow: inset -4px -4px 0px #4a2b9d, inset 4px 4px 0px #9d5cff;
    transform: scale(1.05) translateY(-5px);
}

.btn-minecraft:active {
    transform: scale(0.95);
}

.btn-minecraft .btn-text {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-minecraft .btn-subtext {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 5px;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(125, 64, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(125, 64, 255, 0.5));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* Global Footer Styles */
/* Global Footer Styles */
.global-footer {
    margin-top: 150px;
    padding-bottom: 40px;
    background: #050510;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.discord-banner {
    background: #5865F2;
    border-radius: 30px;
    padding: 50px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 30px 60px rgba(88, 101, 242, 0.25);
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.discord-banner::before {
    content: "\f392";
    font-family: "Font Awesome 6 Brands";
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.discord-content {
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1;
}

.discord-icon {
    font-size: 5rem;
    color: white;
}

.discord-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.discord-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.discord-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

.btn-discord-join {
    background: white;
    border-radius: 14px;
    padding: 12px 28px;
    text-decoration: none;
    transition: var(--transition);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.discord-btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.discord-btn-icon {
    font-size: 2.2rem;
    color: #5865F2;
}

.discord-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.join-us {
    font-size: 0.7rem;
    font-weight: 700;
    color: #5865F2;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.discord-word {
    font-size: 1.3rem;
    font-weight: 900;
    color: #5865F2;
    letter-spacing: -0.5px;
}

.btn-discord-join:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Main Footer Area */
.footer-main-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

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

.footer-logo-nox {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-nox img {
    height: 45px;
    filter: drop-shadow(0 0 10px var(--primary-purple));
}

.footer-logo-nox span {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-navigation {
    min-width: 300px;
}

.nav-header {
    font-size: 1rem;
    font-weight: 800;
    color: #5865F2;
    margin-bottom: 30px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links-columns {
    display: flex;
    gap: 80px;
}

.nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-col a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.footer-disclaimer-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.footer-disclaimer-text p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: white;
}

/* Der Container, der Logo und Text hält */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Richtet alle Kinder-Elemente linksbündig aus */
    text-align: left;         /* Sorgt dafür, dass der Text linksbündig startet */
}

/* Der Beschreibungstext selbst */
.footer-brand-desc {
    text-align: left;         /* Verhindert, dass vererbtes 'center' greift */
    margin-top: 15px;         /* Ein bisschen Abstand nach oben zum Logo */
    max-width: 400px;         /* Begrenzt die Breite, damit es ordentlich umbricht */
    line-height: 1.5;         /* Macht den Text angenehm lesbar */
}

/* Sicherstellen, dass das Logo-Gespann auch linksbündig ist */
.footer-logo-nox {
    display: flex;
    align-items: center;
    gap: 10px;                /* Abstand zwischen Logo-Bild und Schriftzug */
    margin-bottom: 0;         /* Verhindert ungewollte Abstände */
}

/* Animations Refined */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

.about-noxus, .features {
    padding: 120px 0;
    position: relative;
}

/* Responsive Refined */
@media (max-width: 1100px) {
    .discord-banner { padding: 40px; }
    .discord-info h2 { font-size: 2.2rem; }
    .discord-subtitle { font-size: 1.1rem; }
    .nav-links-columns { gap: 30px; }
}

@media (max-width: 992px) {
    .discord-banner { flex-direction: column; text-align: center; gap: 40px; }
    .discord-content { flex-direction: column; gap: 20px; }
    .footer-main-grid { flex-direction: column; gap: 60px; text-align: left; }
    .footer-bottom-bar { flex-direction: column-reverse; gap: 30px; text-align: center; }
    .footer-legal-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.5rem; }
    .btn-minecraft { min-width: 100%; }
    .discord-icon { font-size: 3.5rem; }
    .discord-info h2 { font-size: 1.8rem; }
    .nav-links-columns { width: 100%; justify-content: space-between; }
}

/* Legal & Status Pages */
.legal-section {
    padding: 150px 0 100px;
    min-height: 80vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-icon {
    font-size: 4rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(125, 64, 255, 0.4));
}

.legal-content-card {
    background: rgba(10, 10, 25, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.legal-text h3 {
    color: var(--primary-purple);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.legal-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-callout {
    background: rgba(125, 64, 255, 0.08) !important;
    border-left: 4px solid var(--primary-purple) !important;
    border-radius: 15px;
    padding: 30px;
    margin: 35px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legal-callout.discord-callout {
    background: rgba(88, 101, 242, 0.1) !important;
    border-left: 4px solid #5865F2 !important;
}

.legal-callout.discord-callout h4 {
    color: #5865F2 !important;
    font-weight: 700;
}

.legal-callout h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
}

.legal-badge {
    display: inline-block !important;
    padding: 5px 15px !important;
    background: var(--primary-purple) !important;
    color: white !important;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(125, 64, 255, 0.3);
}

.legal-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 20px 0 !important;
}

.legal-list li {
    position: relative;
    padding-left: 30px !important;
    margin-bottom: 15px !important;
    color: var(--text-muted);
    transition: var(--transition);
}

.legal-list li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.85rem;
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

.legal-list li:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.discord-callout .legal-list li::before {
    color: #5865F2 !important;
}

.imprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.imprint-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
}

/* Legal Content Enhancements */
.legal-hero-banner {
    position: relative;
    height: 250px;
    border-radius: 25px;
    margin-bottom: 50px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--glass-border);
}

.terms-banner {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://cdn.discordapp.com/attachments/1504940135672844289/1511865563784282252/JOIN4VOICE-4-6-2026.png');
}

.privacy-banner {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.banner-overlay h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.banner-overlay p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}

.legal-section-block {
    margin-bottom: 40px;
}

.legal-section-block h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-purple);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.legal-section-block h3 i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.legal-callout.warning-callout {
    background: rgba(255, 68, 68, 0.08) !important;
    border-left: 4px solid #ff4444 !important;
}

.legal-callout.warning-callout h4 {
    color: #ff4444 !important;
}

.legal-callout.info-callout {
    background: rgba(0, 150, 255, 0.08) !important;
    border-left: 4px solid #0096ff !important;
}

.legal-callout.info-callout h4 {
    color: #0096ff !important;
}

.support-link-box {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.small-info {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 15px;
    font-style: italic;
}

.callout-content {
    margin-top: 15px;
}

/* Status Page Specific */
.status-header-main {
    text-align: center;
    margin-bottom: 60px;
}

.status-hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), #a875ff);
    margin: 0 auto 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(125, 64, 255, 0.4);
}

.status-main-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: linear-gradient(to bottom, #fff, #8c92ac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-last-sync {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.1rem;
}

.status-summary-bar {
    background: rgba(0, 255, 128, 0.03);
    border: 1px solid rgba(0, 255, 128, 0.15);
    border-radius: 20px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #00ff80;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.status-summary-bar i {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 128, 0.4));
}

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

.status-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.status-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
}

.status-item-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.status-item-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.status-item-text h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.status-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.status-badge-inline {
    padding: 6px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-badge-inline.online {
    background: rgba(0, 255, 128, 0.1);
    color: #00ff80;
}

.status-timeline {
    display: flex;
    gap: 10px;
    height: 80px;
    margin-bottom: 25px;
}

.timeline-bar {
    flex: 1;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    background: #00ff80;
    transition: all 0.3s ease;
}

.timeline-bar.online { background: #00ff80; box-shadow: 0 4px 15px rgba(0, 255, 128, 0.15); }
.timeline-bar.offline { background: #ff4444; box-shadow: 0 4px 15px rgba(255, 68, 68, 0.15); }

.timeline-bar:hover {
    transform: scaleY(1.1);
    filter: brightness(1.2);
}

/* Tooltip Pop-Up */
.timeline-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #121225;
    border: 1px solid var(--glass-border);
    width: 200px;
    border-radius: 15px;
    padding: 15px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.timeline-bar:hover .timeline-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tooltip-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.tooltip-status {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tooltip-status.online { color: #00ff80; }

.tooltip-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tooltip-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.tooltip-row span { color: var(--text-muted); }
.tooltip-row strong { color: #fff; }

.timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.status-footer {
    margin-top: 60px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-settings-actions {
    margin-top: 30px;
}

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.cookie-modal-card {
    background: rgba(15, 15, 30, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-modal-overlay.active .cookie-modal-card {
    transform: translateY(0);
}

.cookie-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.cookie-modal-header i {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(125, 64, 255, 0.4));
}

.cookie-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
}

.cookie-modal-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.cookie-option-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.cookie-option-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-info {
    display: flex;
    flex-direction: column;
}

.option-info strong {
    font-size: 1rem;
    color: white;
}

.option-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.option-status {
    font-size: 0.8rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.cookie-modal-footer {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cookie-modal-footer .btn-minecraft {
    min-width: 200px;
    padding: 12px 20px;
}

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

.switch-container 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);
    transition: .4s;
}

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

input:checked + .slider {
    background-color: var(--primary-purple);
}

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

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

body.modal-open {
    overflow: hidden !important;
    padding-right: 8px; /* Verhindert Layout-Shift wenn Scrollbar verschwindet */
}

/* Dashboard Header Enhancements */
.dashboard-header {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.dashboard-header h1 {
    font-size: 2.8rem;
    font-weight: 850;
    margin: 5px 0 10px 0;
    background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}

.dashboard-header h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), transparent);
    border-radius: 2px;
}

.header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-purple);
    margin-bottom: 5px;
    opacity: 0.9;
}

.header-breadcrumb i {
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px var(--primary-purple));
}

.dashboard-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    line-height: 1.5;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 2px rgba(125, 64, 255, 0.2)); }
    to { filter: drop-shadow(0 0 8px rgba(125, 64, 255, 0.5)); }
}

.dashboard-header h1 {
    animation: titleGlow 3s ease-in-out infinite alternate;
}

/* Custom Notifications */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notification {
    background: rgba(15, 15, 30, 0.95);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary-purple);
    color: var(--text-white);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 300px;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    animation: slideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.notification:hover {
    transform: translateX(-5px);
}

.notification.success { border-left-color: #00ff88; }
.notification.error { border-left-color: #ff4444; }
.notification.info { border-left-color: #44aaff; }

.notification-content {
    flex-grow: 1;
    margin-right: 15px;
}

.notification-message {
    font-size: 0.95rem;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: var(--text-white);
}

.notification.hiding {
    animation: slideOut 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(120%);
    }
}

/* Custom Confirm Modal */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.confirm-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.confirm-box {
    background: rgba(15, 15, 30, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirm-overlay.active .confirm-box {
    transform: scale(1);
    opacity: 1;
}

.confirm-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.confirm-message {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.confirm-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-confirm {
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}

.btn-confirm-yes {
    background: var(--primary-purple);
    color: white;
}

.btn-confirm-yes:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
}

.btn-confirm-no {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (Mobile & Tablet)
   ========================================================================== */

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1100;
}

.mobile-nav-toggle:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* Tablet & Smaller (Max 1200px) */
@media screen and (max-width: 1200px) {
    header {
        width: 95%;
        padding: 8px 0;
    }
    
    .header-container {
        padding: 0 20px;
    }

    header nav ul {
        gap: 10px;
    }

    header nav ul li a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
}

/* Mobile & Tablet (Max 992px) */
@media screen and (max-width: 992px) {
    .mobile-nav-toggle {
        display: flex;
    }

    header {
        border-radius: 0;
        top: 0;
        width: 100%;
        max-width: none;
        z-index: 2000;
    }

    .header-container {
        grid-template-columns: 1fr auto;
        gap: 15px;
        padding: 0 15px;
    }

    .mobile-nav-toggle {
        display: flex;
        position: relative;
        z-index: 2100;
    }

    .header-actions {
        display: none !important;
    }

    .hero {
        padding-top: 140px;
        height: auto !important;
        min-height: 100vh;
        padding-bottom: 100px;
    }

    /* Mobile Navigation Refined */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 300px;
        max-width: 85%;
        background: rgba(10, 10, 25, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        border-radius: 0;
        padding: 80px 20px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        will-change: transform;
        z-index: 1050;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        pointer-events: none;
    }

    .nav-menu.mobile-active {
        transform: translateX(0);
        pointer-events: all;
    }

    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid var(--glass-border);
    }

    .mobile-user-info {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        color: white;
    }

    .mobile-user-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mobile-user-actions a {
        display: flex !important;
        align-items: center;
        gap: 10px;
        padding: 12px 15px !important;
        background: rgba(255,255,255,0.05) !important;
        border-radius: 10px !important;
        color: var(--text-muted) !important;
        text-decoration: none;
        font-size: 14px !important;
    }

    .mobile-user-actions a:hover {
        background: rgba(125, 64, 255, 0.1) !important;
        color: white !important;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-bottom: 30px;
    }

    header nav ul li {
        width: 100%;
    }

    header nav ul li a {
        width: 100%;
        font-size: 1.1rem;
        padding: 15px 20px;
        background: rgba(255,255,255,0.03);
        justify-content: flex-start;
        border: 1px solid transparent;
    }

    header nav ul li a:hover {
        border-color: rgba(125, 64, 255, 0.3);
        background: rgba(125, 64, 255, 0.05);
    }

    /* Dropdown on Mobile Refined */
    header .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100%;
        background: rgba(255, 255, 255, 0.03) !important;
        box-shadow: none !important;
        margin-top: 5px;
        padding: 5px !important;
        display: none; 
        flex-direction: column;
        border: 1px solid rgba(125, 64, 255, 0.1);
        border-radius: 12px;
    }

    header .dropdown-menu li a {
        padding: 10px 15px !important;
        font-size: 0.95rem !important;
        background: transparent !important;
    }

    header .dropdown-trigger .arrow {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    /* Header Actions on Mobile - Reset desktop styles */
    .user-profile-dropdown {
        width: auto;
    }

    .user-profile-trigger span {
        display: none; 
    }
    
    .mobile-menu-footer .btn-login {
        width: 100%;
        padding: 15px;
        text-align: center;
        font-size: 1.1rem;
        justify-content: center;
    }

    .hero h1 { font-size: 3.5rem; }
    .hero-welcome { font-size: 1.5rem; }
    .hero { padding-top: 140px; }
    .hero-stats { 
        flex-direction: column; 
        gap: 15px; 
        align-items: center; 
        margin-top: 40px;
    }
    .stat-item { width: 100%; max-width: 250px; }
    .hero-description { font-size: 1rem; padding: 0 10px; }
    .about-noxus { margin-top: 80px; }
    .about-buttons { flex-direction: column; gap: 15px; }
    .btn-minecraft { width: 100%; }
    body.menu-open { overflow: hidden; }
    .dashboard-container { flex-direction: column; }
    .dashboard-sidebar { width: 100%; position: static; margin-bottom: 20px; }
    .content-row { grid-template-columns: 1fr !important; }
}

/* Tablet Up - Hide mobile footer and ensure desktop is clean */
@media screen and (min-width: 993px) {
    .mobile-menu-footer {
        display: none;
    }
}

/* Small Devices (Max 768px) */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-welcome {
        font-size: 1.2rem;
    }

    .hero-logo {
        width: 80px;
    }

    /* Stack grid containers */
    .features-grid, 
    .stats-grid, 
    .members-grid, 
    .rewards-grid,
    .shop-grid,
    .dashboard-grid,
    .modern-grid,
    .team-grid,
    .service-grid,
    .countdown-grid,
    .members-modern-grid,
    .discord-integration-grid,
    .notifications-grid,
    .moderation-grid,
    .footer-main-grid,
    .rewards-upper-grid,
    .form-grid,
    .imprint-grid,
    .status-grid,
    .guide-grid,
    .admin-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Extra Small (Max 480px) */
@media screen and (max-width: 480px) {
    header {
        width: 98%;
    }

    .logo-text {
        font-size: 16px;
    }

    .header-logo {
        height: 24px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .btn-login, .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .welcome-modal {
        padding: 25px 15px;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .welcome-features {
        grid-template-columns: 1fr;
    }
}



