@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=SF+Pro+Display:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neon Colors - beibehalten */
    --neon-pink: #ff0080;
    --neon-cyan: #00ffff;
    --neon-blue: #0080ff;
    --neon-orange: #ff6600;
    
    /* Apple-inspired backgrounds */
    --dark-bg: #000000;
    --darker-bg: #0a0a0a;
    --surface-bg: #1c1c1e;
    --surface-secondary: #2c2c2e;
    --surface-tertiary: #3a3a3c;
    
    /* Liquid Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bg-strong: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.16);
    --glass-shadow: rgba(0, 0, 0, 0.25);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-tertiary: rgba(255, 255, 255, 0.45);
    
    /* Apple-style Gradients with Neon */
    --gradient-primary: linear-gradient(135deg, #ff0080 0%, #0080ff 100%);
    --gradient-glass: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    --gradient-border: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.3) 0%, 
        rgba(255, 0, 128, 0.3) 100%);
    
    /* Spacing System */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    --spacing-xxxl: 64px;
    
    /* Border Radius System */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-xxl: 24px;
    --radius-full: 50px;
    
    /* Header Height */
    --header-height: 72px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.25), 0 6px 10px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.2);
    
    /* Liquid Glass Shadow */
    --glass-shadow-glow: 0 8px 32px rgba(0, 255, 255, 0.15);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    background: radial-gradient(ellipse at top, #1a1a2e 0%, #16213e 40%, #0f0f23 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* =========================
   DARK MODE SUPPORT
========================= */
@media (prefers-color-scheme: dark) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.06);
        --glass-bg-strong: rgba(255, 255, 255, 0.1);
        --glass-border: rgba(255, 255, 255, 0.12);
    }
}

/* =========================
   REDUCED MOTION SUPPORT
========================= */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero::before,
    .hero-bg-element {
        animation: none;
    }
}

/* =========================
   PRINT STYLES
========================= */
@media print {
    header,
    .mobile-menu,
    .cta-button,
    .discord-button,
    .hero-bg-element {
        display: none !important;
    }

    main {
        margin-top: 0;
    }

    .hero::before,
    .feature-card::before,
    .feature-card::after {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .content-section,
    .team-category,
    .feature-card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* =========================
   HIGH CONTRAST MODE
========================= */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.15);
        --glass-border: rgba(255, 255, 255, 0.3);
        --text-secondary: rgba(255, 255, 255, 0.8);
    }
    
    .nav-links a,
    .feature-card,
    .team-member {
        border-width: 2px;
    }
}
   /*LIQUID GLASS MIXINS
========================= */
.glass-surface {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 
        var(--shadow-lg), 
        var(--glass-shadow-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
}

.glass-surface-strong {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--glass-shadow-glow);
}

.glass-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    z-index: 2;
}

/* =========================
   HEADER & NAVIGATION
========================= */
header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: var(--header-height);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.logo a {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo a:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.06);
    padding: var(--spacing-xs);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-bg-strong);
    border-radius: var(--radius-full);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.nav-links a:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a.active {
    color: var(--text-primary);
    background: var(--glass-bg-strong);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu:hover {
    background: var(--glass-bg-strong);
    border-color: rgba(255, 255, 255, 0.16);
    transform: scale(1.05);
}

.mobile-menu span {
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    margin: 2px 0;
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

/* =========================
   MAIN CONTENT
========================= */
main {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    padding: var(--spacing-xxxl) 0 var(--spacing-xl) 0;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    text-align: center;
    padding: clamp(4rem, 8vw, 6rem) var(--spacing-lg);
    margin: var(--spacing-xl) 0 var(--spacing-xxxl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 0, 128, 0.08) 0%, 
        rgba(0, 128, 255, 0.05) 50%, 
        transparent 70%);
    animation: float 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 4px 12px rgba(255, 0, 128, 0.3));
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--spacing-xxl);
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* =========================
   BUTTONS (Liquid Glass Style)
========================= */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.8) 0%, 
        rgba(0, 128, 255, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 16px rgba(255, 0, 128, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        inset 1px 0 0 rgba(255, 255, 255, 0.15),
        inset -1px 0 0 rgba(0, 0, 0, 0.05);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 32px rgba(255, 0, 128, 0.4),
        0 0 40px rgba(0, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.9) 0%, 
        rgba(0, 128, 255, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover::after {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(88, 101, 242, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 1px solid rgba(88, 101, 242, 0.4);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 
        0 4px 16px rgba(88, 101, 242, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.discord-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.discord-button:hover {
    background: rgba(71, 82, 196, 0.9);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 24px rgba(88, 101, 242, 0.35),
        0 0 30px rgba(88, 101, 242, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(88, 101, 242, 0.6);
}

.discord-button:hover::before {
    opacity: 1;
}

.discord-button:active {
    transform: translateY(0) scale(0.98);
}

.logout-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 69, 58, 0.1);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    color: #FF453A;
    border: 1px solid rgba(255, 69, 58, 0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.logout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 69, 58, 0.15);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.logout-btn:hover {
    background: rgba(255, 69, 58, 0.2);
    transform: scale(1.05);
    box-shadow: 
        0 4px 12px rgba(255, 69, 58, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 69, 58, 0.5);
}

.logout-btn:hover::before {
    opacity: 1;
}

.logout-btn:active {
    transform: scale(0.95);
}

.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.8) 0%, 
        rgba(0, 128, 255, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 16px rgba(255, 0, 128, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.button-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.button-primary:active::after {
    width: 300px;
    height: 300px;
}

/* Secondary Button Style */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover::before {
    opacity: 1;
}

/* Small Button Style */
.btn-small {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 12px;
    min-width: auto;
    border-radius: var(--radius-md);
}

/* Icon Button Style */
.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Button Group */
.btn-group {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.btn-group .btn-secondary:first-child {
    border-top-right-radius: var(--spacing-xs);
    border-bottom-right-radius: var(--spacing-xs);
}

.btn-group .btn-secondary:last-child {
    border-top-left-radius: var(--spacing-xs);
    border-bottom-left-radius: var(--spacing-xs);
}

.btn-group .btn-secondary:not(:first-child):not(:last-child) {
    border-radius: var(--spacing-xs);
}

/* =========================
   FEATURES GRID (Apple Cards)
========================= */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xxxl) 0;
}

.feature-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xxl);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 
                0 16px 48px rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.3);
}

.feature-card:hover::after {
    left: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(255, 102, 0, 0.3));
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* =========================
   TEAM SECTION (Apple Style)
========================= */
.team-section {
    margin: var(--spacing-xxxl) 0;
}

.team-category {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--glass-shadow-glow);
    margin-bottom: var(--spacing-xxxl);
    padding: var(--spacing-xxl);
    position: relative;
    overflow: hidden;
}

.team-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 2;
}

.team-category h3 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xxl);
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.team-member {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid var(--border-color, var(--neon-cyan));
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.12);
}

.member-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.member-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color, var(--neon-cyan));
    object-fit: cover;
    flex-shrink: 0;
}

.member-info {
    flex: 1;
    min-width: 0;
}

.member-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.member-role {
    color: var(--border-color, var(--neon-cyan));
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    font-size: 14px;
}

.member-discord {
    font-size: 13px;
    color: var(--text-tertiary);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-weight: 400;
}

/* =========================
   CONTENT SECTIONS
========================= */
.content-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), var(--glass-shadow-glow);
    padding: var(--spacing-xxl);
    margin: var(--spacing-xxxl) 0;
}

.content-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xxl);
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.content-section h3 {
    font-family: 'Inter', sans-serif;
    color: var(--neon-cyan);
    font-size: 1.25rem;
    font-weight: 700;
    margin: var(--spacing-xl) 0 var(--spacing-md) 0;
    letter-spacing: -0.01em;
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

/* =========================
   USER INFO & FORMS
========================= */
.user-info {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    border: 2px solid var(--neon-cyan);
    flex-shrink: 0;
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-details h4 {
    color: var(--text-primary);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.user-details p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* =========================
   DASHBOARD STYLES
========================= */

/* Tab System für Dashboard */
.tab-button {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: inherit;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.tab-button.active {
    background: rgba(255, 0, 128, 0.15);
    border-color: rgba(255, 0, 128, 0.3);
    color: var(--neon-pink);
    box-shadow: 0 4px 12px rgba(255, 0, 128, 0.2);
}

/* Content Type Cards */
.content-type-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.content-type-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.content-type-card.selected {
    border-color: var(--neon-cyan) !important;
    background: rgba(0, 255, 255, 0.15) !important;
}

/* Permission Toggle Switches */
.permission-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.permission-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.permission-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.permission-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.permission-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
}

.permission-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.permission-toggle input:checked + .permission-slider {
    background-color: var(--neon-cyan);
}

.permission-toggle input:checked + .permission-slider:before {
    transform: translateX(26px);
}

/* Dashboard Form Inputs */
.dashboard-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.dashboard-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.dashboard-input::placeholder {
    color: var(--text-tertiary);
}

/* Dashboard Labels */
.dashboard-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

/* Dashboard Modal Styles */
.dashboard-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dashboard-modal.show {
    opacity: 1;
    visibility: visible;
}

.dashboard-modal-content {
    background: linear-gradient(135deg, 
        rgba(26, 26, 30, 0.95) 0%, 
        rgba(20, 20, 24, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin: 3% auto;
    padding: 0;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.dashboard-modal.show .dashboard-modal-content {
    transform: scale(1);
}

/* Dashboard Grid Layouts */
.dashboard-grid {
    display: grid;
    gap: 1.5rem;
}

.dashboard-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dashboard-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Dashboard Status Cards */
.dashboard-status-card {
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid;
    position: relative;
    overflow: hidden;
}

.dashboard-status-card.success {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.3);
}

.dashboard-status-card.warning {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
}

.dashboard-status-card.error {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.dashboard-status-card.info {
    background: rgba(0, 128, 255, 0.1);
    border-color: rgba(0, 128, 255, 0.3);
}

/* Dashboard Content Lists */
.dashboard-content-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-content-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dashboard-content-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Dashboard Mobile Optimizations */
@media (max-width: 768px) {
    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .dashboard-grid-2,
    .dashboard-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .dashboard-modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .content-type-card {
        padding: 1rem !important;
    }
    
    .permission-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Dashboard Animations */
@keyframes dashboardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-fade-in {
    animation: dashboardFadeIn 0.5s ease forwards;
}

/* Dashboard Loading States */
.dashboard-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--neon-cyan);
    font-weight: 600;
}

.dashboard-loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-cyan);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Dashboard Notification Enhancements */
.dashboard-notification {
    animation: slideInRight 0.3s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =========================
   FOOTER
========================= */
footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: var(--spacing-xxl) 0;
    margin-top: var(--spacing-xxxl);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

footer p {
    color: var(--text-tertiary);
    font-size: 14px;
    font-weight: 400;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --spacing-xs: 4px;
        --spacing-sm: 6px;
        --spacing-md: 12px;
        --spacing-lg: 20px;
        --spacing-xl: 28px;
        --spacing-xxl: 36px;
        --spacing-xxxl: 48px;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    nav {
        padding: 0 var(--spacing-md);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: var(--spacing-md);
        right: var(--spacing-md);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        padding: var(--spacing-md);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-xl);
        z-index: 999;
        margin-top: var(--spacing-sm);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: var(--spacing-md);
        font-size: 16px;
        border-radius: var(--radius-md);
        border: none;
        text-align: left;
        width: 100%;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: var(--spacing-xxl) var(--spacing-md);
        margin: var(--spacing-lg) 0;
    }

    .features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .feature-card {
        padding: var(--spacing-xl);
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .content-section,
    .team-category {
        margin: var(--spacing-xl) 0;
        padding: var(--spacing-xl);
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .nav-links {
        left: var(--spacing-sm);
        right: var(--spacing-sm);
    }
}

/* =========================
   SCROLLBAR STYLING (Apple Style)
========================= */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* =========================
   UTILITY CLASSES
========================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* =========================
   ACCESSIBILITY & FOCUS
========================= */
.cta-button:focus,
.discord-button:focus,
.nav-links a:focus,
.logout-btn:focus {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

/* =========================
   LOADING STATES
========================= */
.loading {
    display: none;
    text-align: center;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    font-weight: 600;
    color: var(--neon-cyan);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.loading.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   ENHANCED ANIMATIONS
========================= */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: shimmer 2s infinite;
}

/* =========================
   LIQUID GLASS SPECIFIC EFFECTS
========================= */
.glass-morphism {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-morphism-strong {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Floating Animation für Hero Background */
.hero-bg-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float-slow 12s ease-in-out infinite;
}

.hero-bg-element:nth-child(1) {
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    animation-delay: 0s;
}

.hero-bg-element:nth-child(2) {
    top: 60%;
    right: 10%;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    animation-delay: 4s;
}

.hero-bg-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    animation-delay: 8s;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* =========================
   ENHANCED CARD HOVER ENHANCEMENTS
========================= */
.enhanced-card {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.enhanced-card:hover::before {
    opacity: 1;
}

.enhanced-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 255, 255, 0.2);
}

/* =========================
   TEXT GRADIENT EFFECTS
========================= */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================
   MOBILE OPTIMIZATIONS
========================= */
@media (max-width: 768px) {
    .glass-card,
    .glass-surface,
    .glass-surface-strong {
        backdrop-filter: blur(16px) saturate(150%);
        -webkit-backdrop-filter: blur(16px) saturate(150%);
    }
    
    .hero-bg-element {
        width: 150px;
        height: 150px;
        filter: blur(40px);
    }
    
    .enhanced-card:hover {
        transform: translateY(-4px);
    }
}

/* Füge diese CSS-Regeln zu deiner main.css oder in den <style> Bereich von dashboard.php hinzu: */

/* Changelog Formular Styling */
#changelogForm textarea {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace !important;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

#changelogForm textarea::placeholder {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace !important;
    color: var(--text-tertiary);
    opacity: 0.7;
}

/* Datum und Zeit Inputs */
input[type="date"], select {
    color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

select option {
    background: #1a1a1e;
    color: white;
}

/* Grid Layout für Datum/Zeit */
.changelog-datetime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .changelog-datetime-grid {
        grid-template-columns: 1fr;
    }
}

/* Prefix Highlighting in Textareas */
#changelogAdded:focus,
#changelogModified:focus,
#changelogRemoved:focus {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

/* Enhanced Changelog Preview */
.changelog-preview {
    background: #2f3136;
    border-left: 4px solid #0080ff;
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.5rem;
    font-family: 'Inter', sans-serif;
}

.changelog-preview .changelog-section {
    margin-bottom: 1rem;
}

.changelog-preview .changelog-section:last-child {
    margin-bottom: 0;
}

.changelog-preview .changelog-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.changelog-preview .changelog-prefix {
    font-weight: bold;
    margin-right: 0.5rem;
    min-width: 2rem;
}

.changelog-preview .changelog-prefix.added {
    color: #00ff00;
}

.changelog-preview .changelog-prefix.modified {
    color: #ffaa00;
}

.changelog-preview .changelog-prefix.removed {
    color: #ff4444;
}

/* Form Animation */
#changelogForm {
    animation: slideInUp 0.3s ease-out;
}

#announcementForm {
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Form Field Styling */
.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.form-field small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-tertiary);
    font-size: 12px;
    font-style: italic;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    #changelogForm,
    #announcementForm {
        padding: 1rem;
    }
    
    .form-field input,
    .form-field textarea,
    .form-field select {
        font-size: 16px; /* Prevents zoom on mobile */
    }
}

/* =========================