/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #E0E0E0;
    line-height: 1.5;
    overflow-x: hidden;
}

/* industrieller raster-hintergrund */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(transparent, transparent 39px, rgba(255,255,255,0.02) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 40px);
    pointer-events: none;
    z-index: 0;
}

.page {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ---------- TYPOGRAPHIE ---------- */
h1, h2, h3, .logo, .footer-logo {
    font-family: 'Inter', 'SF Pro Display', system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ---------- NAVIGATION ---------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #2C2C2C;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2L2 7L12 12L22 7L12 2Z' stroke='white' stroke-width='1.5'/%3E%3Cpath d='M2 17L12 22L22 17' stroke='white' stroke-width='1.5'/%3E%3Cpath d='M2 12L12 17L22 12' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    background-color: #FFFFFF;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 4px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #FFFFFF;
    transition: 0.2s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #1E1E1E;
    border-bottom: 1px solid #2C2C2C;
    padding: 1rem;
}

.mobile-nav a {
    color: #E0E0E0;
    text-decoration: none;
    padding: 0.8rem;
    text-align: center;
    letter-spacing: 1px;
}

.mobile-nav a:hover {
    background: #2C2C2C;
    color: #FFFFFF;
}

/* ---------- HERO SECTION ---------- */
.hero {
    padding: 3rem 1.5rem 4rem;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    background: #1E1E1E;
    border: 1px solid #2C2C2C;
    padding: 1.8rem;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.4);
}

.launch-badge {
    display: inline-block;
    background: #2C2C2C;
    padding: 0.4rem 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E0E0E0;
    margin-bottom: 1.2rem;
    border-left: 3px solid #FFFFFF;
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
}

.hero-left .sub {
    font-size: 0.95rem;
    color: #9E9E9E;
    margin-bottom: 1.2rem;
    border-left: 3px solid #FFFFFF;
    padding-left: 0.8rem;
}

.description {
    margin: 1rem 0;
    color: #B0B0B0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.description strong {
    color: #FFFFFF;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    background: #2C2C2C;
    padding: 0.4rem 1rem;
    border: 1px solid #3a3a3a;
    transition: all 0.2s;
}

.social-links a:hover {
    color: #FFFFFF;
    background: #3a3a3a;
}

/* Newsletter */
.hero-right {
    background: #121212;
    padding: 1.5rem;
    border-top: 3px solid #FFFFFF;
}

.hero-right h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.hero-right p {
    color: #9E9E9E;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-group {
    display: flex;
    border: 1px solid #2C2C2C;
    background: #2C2C2C;
    transition: border 0.2s;
}

.input-group:focus-within {
    border-color: #FFFFFF;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.9rem;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
}

.input-group input::placeholder {
    color: #9E9E9E;
}

.btn-subscribe {
    background: #FFFFFF;
    border: none;
    color: #121212;
    font-weight: 700;
    padding: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    width: 100%;
}

.btn-subscribe:hover {
    background: #E0E0E0;
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.65rem;
    text-align: center;
    margin-top: 0.8rem;
    color: #6c6c6c;
}

.extra-link {
    text-align: center;
    margin-top: 1rem;
}

.extra-link a {
    color: #9E9E9E;
    text-decoration: none;
    font-size: 0.75rem;
    border-bottom: 1px dashed #4a4a4a;
}

.extra-link a:hover {
    color: #FFFFFF;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #121212;
    border-top: 1px solid #2C2C2C;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 5% 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.logo-icon-small {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2L2 7L12 12L22 7L12 2Z' stroke='white' stroke-width='1.5'/%3E%3Cpath d='M2 17L12 22L22 17' stroke='white' stroke-width='1.5'/%3E%3Cpath d='M2 12L12 17L22 12' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    background-color: #FFFFFF;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #6c6c6c;
    line-height: 1.4;
}

.footer-section h4 {
    color: #FFFFFF;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9E9E9E;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #FFFFFF;
}

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

.social-links-footer a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.8rem;
    background: #2C2C2C;
    padding: 0.3rem 0.8rem;
    transition: all 0.2s;
}

.social-links-footer a:hover {
    background: #FFFFFF;
    color: #121212;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid #2C2C2C;
    font-size: 0.7rem;
    color: #6c6c6c;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 768px) {
    .hero-grid {
        max-width: 800px;
        padding: 2rem;
    }
    .hero-left h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        max-width: 1100px;
        flex-direction: row;
        padding: 2.5rem;
    }
    .hero-left, .hero-right {
        flex: 1;
    }
    .hero-left h1 {
        font-size: 4rem;
    }
    .navbar {
        padding: 1.5rem 5%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-nav.active {
        display: flex;
    }
}

/* ---------- UTILITIES ---------- */
.glitch-text {
    transition: text-shadow 0.1s ease;
    display: inline-block;
}

.glitch-text:hover {
    text-shadow: -1px 0 #FFFFFF, 1px 0 #9E9E9E;
}

::selection {
    background: #FFFFFF;
    color: #121212;
}
/* ---------- AUTHENTIFIZIERUNG (KOMPLETT) ---------- */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem 1.5rem;
}

.auth-box {
    max-width: 480px;
    width: 100%;
    background: #1E1E1E;
    border: 1px solid #2C2C2C;
    padding: 2rem;
    box-shadow: 12px 12px 0 rgba(0,0,0,0.4);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .launch-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.auth-header h1 {
    color: #FFFFFF;
    font-size: 2rem;
    margin: 0.5rem 0;
    letter-spacing: -0.02em;
}

.auth-header p {
    color: #9E9E9E;
    font-size: 0.9rem;
}

/* Formular */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #E0E0E0;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.form-group input {
    background: #2C2C2C;
    border: 1px solid #3a3a3a;
    padding: 0.9rem 1rem;
    color: #FFFFFF;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FFFFFF;
    background: #1E1E1E;
}

.form-group small {
    color: #6c6c6c;
    font-size: 0.7rem;
    margin-top: -0.25rem;
}

/* Buttons */
.btn-primary {
    background: #FFFFFF;
    border: none;
    color: #121212;
    font-weight: 800;
    padding: 1rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.btn-primary:hover {
    background: #E0E0E0;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 0;
}

.alert-error {
    background: #2C1A1A;
    border-left: 3px solid #FF4444;
    color: #FF8888;
}

.alert-success {
    background: #1A2C1A;
    border-left: 3px solid #44FF44;
    color: #88FF88;
}

.alert-link {
    color: #FFFFFF;
    text-decoration: underline;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2C2C2C;
}

.auth-footer p {
    color: #9E9E9E;
    font-size: 0.85rem;
}

.auth-footer a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.auth-footer a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 550px) {
    .auth-container {
        padding: 1rem;
    }
    
    .auth-box {
        padding: 1.5rem;
    }
    
    .auth-header h1 {
        font-size: 1.6rem;
    }
    
    .form-group input {
        padding: 0.75rem;
    }
}

/* ---------- DASHBOARD STYLES ---------- */
.dashboard-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header .launch-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.dashboard-header h1 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin: 0.5rem 0;
    letter-spacing: -0.02em;
}

.dashboard-header p {
    color: #9E9E9E;
    font-size: 1rem;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Dashboard Cards */
.dashboard-card {
    background: #1E1E1E;
    border: 1px solid #2C2C2C;
    padding: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0 rgba(0,0,0,0.3);
    border-color: #3a3a3a;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.dashboard-card h3 {
    color: #FFFFFF;
    font-size: 1.25rem;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2C2C2C;
}

.dashboard-card p {
    color: #9E9E9E;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

/* Info Rows (Profil) */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid #2C2C2C;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #9E9E9E;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.info-value {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Event Preview */
.event-preview {
    margin: 1rem 0 1.2rem;
}

.event-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #2C2C2C;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    color: #9E9E9E;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.event-name {
    color: #E0E0E0;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Ticket Placeholder */
.ticket-placeholder {
    background: #121212;
    padding: 1rem;
    text-align: center;
    margin: 1rem 0;
    border: 1px dashed #2C2C2C;
}

.empty-message {
    color: #6c6c6c;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Newsletter Status */
.newsletter-status {
    margin: 1rem 0;
}

.status-badge {
    display: inline-block;
    background: #2C2C2C;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    border-left: 2px solid #FFFFFF;
}

/* Dashboard Buttons */
.dashboard-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #3a3a3a;
    color: #E0E0E0;
    padding: 0.7rem 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

.dashboard-btn:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: #121212;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 1.5rem 1rem 3rem;
    }
    
    .dashboard-header h1 {
        font-size: 1.6rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #2C2C2C;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 7L12 12L22 7L12 2Z' fill='white'/%3E%3Cpath d='M2 17L12 22L22 17' fill='white'/%3E%3Cpath d='M2 12L12 17L22 12' fill='white'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    background-color: #FFFFFF;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #FFFFFF;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #FFFFFF;
    transition: 0.2s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #1E1E1E;
    border-bottom: 1px solid #2C2C2C;
    padding: 1rem;
}

.mobile-nav a {
    color: #E0E0E0;
    text-decoration: none;
    padding: 0.8rem;
    text-align: center;
    letter-spacing: 1px;
    border-bottom: 1px solid #2C2C2C;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background: #2C2C2C;
    color: #FFFFFF;
}

.mobile-nav.active {
    display: flex;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .navbar {
        padding: 0.8rem 5%;
    }
}

/* 2FA Styles */
.twofa-setup-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    background: #2C2C2C;
    padding: 1rem;
    border: 1px solid #3a3a3a;
}

.step h4 {
    color: #FFFFFF;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #9E9E9E;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.app-links {
    display: flex;
    gap: 1rem;
}

.app-link {
    background: #1E1E1E;
    padding: 0.3rem 0.8rem;
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.7rem;
}

.app-link:hover {
    background: #3a3a3a;
}

.qr-code {
    text-align: center;
    padding: 1rem;
    background: #FFFFFF;
    display: inline-block;
    margin-bottom: 1rem;
}

.qr-code img {
    width: 200px;
    height: 200px;
}

.manual-secret {
    font-size: 0.7rem;
    color: #9E9E9E;
    word-break: break-all;
}

.manual-secret code {
    background: #1E1E1E;
    padding: 0.2rem 0.4rem;
    font-family: monospace;
}

.backup-codes-box {
    background: #1A2C1A;
    border: 1px solid #44FF44;
    padding: 1rem;
    margin-bottom: 1rem;
}

.backup-codes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.backup-codes-list code {
    background: #121212;
    padding: 0.3rem 0.6rem;
    font-family: monospace;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    font-size: 0.7rem;
}
/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #2C2C2C;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 7L12 12L22 7L12 2Z' fill='white'/%3E%3Cpath d='M2 17L12 22L22 17' fill='white'/%3E%3Cpath d='M2 12L12 17L22 12' fill='white'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    background-color: #FFFFFF;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #FFFFFF;
}

.nav-links .moderator-link {
    color: #FFAA44;
}

.nav-links .admin-link {
    color: #FF4444;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #FFFFFF;
    transition: 0.2s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #1E1E1E;
    border-bottom: 1px solid #2C2C2C;
    padding: 1rem;
}

.mobile-nav a {
    color: #E0E0E0;
    text-decoration: none;
    padding: 0.8rem;
    text-align: center;
    letter-spacing: 1px;
    border-bottom: 1px solid #2C2C2C;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background: #2C2C2C;
    color: #FFFFFF;
}

.mobile-nav .logout-link {
    color: #FF8888;
}

.mobile-nav.active {
    display: flex;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .navbar {
        padding: 0.8rem 5%;
    }
}

/* Main Content */
main {
    flex: 1;
}

/* Page Wrapper */
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}