/* ============================================
                EXPLORERJEYKO 
   ============================================ */

/* CSS Variables */
:root {
    /* Dark Theme */
    --bg-primary: #070707;
    --bg-secondary: #161616;
    --bg-tertiary: #121213;
    --bg-elevated: #191a1b;
    
    /* Accent Gradient */
    --accent-start: #df0dd8;
    --accent-end: #dd0e72;
    --accent-gradient: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    
    /* Neon Colors */
    --neon-pink: #df0dd8;
    --neon-cyan: #00f5ff;
    --neon-purple: #9d4edd;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b9bbbe;
    --text-muted: #72767d;
    
    /* Status Colors */
    --status-online: #3ba55d;
    --status-idle: #faa81a;
    --status-dnd: #ed4245;
    --status-offline: #747f8d;
    
    /* Minecraft-inspired Borders */
    --border-pixel: 2px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Glassmorphism */
    --glass-bg: rgba(54, 57, 63, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Consolas', monospace;
    
    /* Spacing */
    --sidebar-width: 72px;
    --nav-height: 64px;
    --section-padding: 80px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: var(--nav-height);
}

/* Pixel Grid Background */
.pixel-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(14, 13, 13, 0.74) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 9, 9, 0.329) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* ============================================
            TOP NAVIGATION BAR
   ============================================ */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(11, 12, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* EJ Logo */
.ej-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(223, 13, 216, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Homebar Navigation */
.homebar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4); /* Etwas dunkler für besseren Kontrast */
    padding: 6px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    position: absolute; /* Für exakte Zentrierung */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Der neue gleitende Kasten */
.nav-indicator {
    position: absolute;
    height: calc(100% - 12px); /* Abzüglich Padding der Homebar */
    background: var(--accent-gradient);
    border-radius: 100px;
    z-index: 1; /* Hinter dem Text */
    pointer-events: none; /* Klicks gehen durch das Element hindurch */
}

.nav-link {
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2; /* Über dem Indicator */
    overflow: hidden;
}

/* ENTFERNT: Das alte statische ::before Background-System */
.nav-link::before {
    display: none !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
}
/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle i {
    width: 24px;
    height: 24px;
}

/* ============================================
    SIDEBAR (Discord-style Server List)
   ============================================ */
.sidebar {
    position: fixed;
    left: 0;
    top: var(--nav-height);
    width: var(--sidebar-width);
    height: calc(100vh - var(--nav-height));
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    z-index: 100;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.server-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.server-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    border: var(--border-pixel) solid transparent;
}

.server-icon::before {
    content: '';
    position: absolute;
    left: -16px;
    width: 8px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: all var(--transition-normal);
}

.server-icon:hover,
.server-icon.active {
    border-radius: var(--border-radius-md);
    background: var(--accent-gradient);
    border-color: rgba(255, 255, 255, 0.2);
}

.server-icon:hover::before,
.server-icon.active::before {
    opacity: 1;
    height: 20px;
}

.server-icon i {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

.server-divider {
    width: 32px;
    height: 2px;
    background: var(--bg-elevated);
    border-radius: 1px;
    margin: 4px 0;
}

/* Tooltip */
.server-icon[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 64px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 101;
    box-shadow: var(--glass-shadow);
}

.server-icon:hover[data-tooltip]::after {
    opacity: 1;
    visibility: visible;
}

/* ============================================
                 MAIN CONTENT
   ============================================ */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

section {
    padding: var(--section-padding) 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title i {
    width: 28px;
    height: 28px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ============================================
                HERO SECTION
   ============================================ */
.hero-section {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.pixel-dot {
    width: 8px;
    height: 8px;
    background: var(--status-online);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: var(--text-primary);
}

/* Neon Text Effects */
.neon-text {
    position: relative;
    color: var(--text-primary);
    text-shadow: 
        0 0 10px rgba(223, 13, 216, 0.5),
        0 0 20px rgba(223, 13, 216, 0.3),
        0 0 30px rgba(223, 13, 216, 0.2);
    animation: neonFlicker 4s infinite alternate;
}

.neon-glow {
    position: relative;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s linear infinite, neonPulse 2s ease-in-out infinite;
}

.neon-glow::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    animation: gradientShift 5s linear infinite;
    z-index: -1;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    41% { opacity: 1; }
    42% { opacity: 0.8; }
    43% { opacity: 1; }
    45% { opacity: 0.9; }
    46% { opacity: 1; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@keyframes neonPulse {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 20px rgba(223, 13, 216, 0.5));
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 40px rgba(223, 13, 216, 0.8));
    }
}

.title-line.accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-family: var(--font-mono);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.stat-item i {
    width: 18px;
    height: 18px;
    color: var(--accent-start);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 40px;
    height: 40px;
    border: 2px solid var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.scroll-indicator:hover {
    border-color: var(--accent-start);
}

.scroll-indicator i {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-block {
    position: absolute;
    border-radius: var(--border-radius-sm);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.block-1 {
    width: 80px;
    height: 80px;
    background: var(--accent-start);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.block-2 {
    width: 60px;
    height: 60px;
    background: var(--accent-end);
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.block-3 {
    width: 40px;
    height: 40px;
    background: var(--status-online);
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.block-4 {
    width: 100px;
    height: 100px;
    background: var(--accent-start);
    top: 30%;
    right: 10%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}


/* Spotify Container */
.spotify-container {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #1db95415, #1db95408);
    border: 1px solid #1db95430;
    border-radius: var(--border-radius-md);
}

.spotify-container.hidden {
    display: none;
}

.spotify-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.spotify-icon {
    width: 24px;
    height: 24px;
    background: #1db954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotify-icon i {
    width: 14px;
    height: 14px;
    color: white;
}

.spotify-header span {
    color: #1db954;
    font-size: 14px;
    font-weight: 600;
}

.spotify-content {
    display: flex;
    gap: 16px;
}

.album-art-wrapper {
    position: relative;
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.album-art-wrapper:hover .album-overlay {
    opacity: 1;
}

.album-overlay i {
    width: 32px;
    height: 32px;
    color: white;
}

.spotify-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.song-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.artist-name {
    color: var(--text-secondary);
    font-size: 13px;
}

.spotify-progress {
    margin-top: 10px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #1db954;
    border-radius: 2px;
    transition: width 1s linear;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.status-card-footer {
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--status-offline);
}

.badge-dot.online {
    background: var(--status-online);
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.connection-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--status-online);
    animation: connectionPulse 2s infinite;
}

@keyframes connectionPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.api-credit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.api-credit i {
    width: 12px;
    height: 12px;
}

/* ============================================
             BENTO GRID SECTION
   ============================================ */
.bento-section {
    background: var(--bg-primary);
}

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

.bento-card {
    position: relative;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(223, 13, 216, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.bento-card:hover .card-glow {
    opacity: 0.05;
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 24px;
    height: 100%;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.card-title i {
    width: 18px;
    height: 18px;
    color: var(--accent-start);
}

/* Profile Card */
.profile-card {
    grid-column: span 2;
    grid-row: span 2;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    background: var(--accent-gradient);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.profile-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-title span {
    font-size: 14px;
    color: var(--text-secondary);
}

.profile-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    background: rgba(223, 13, 216, 0.15);
    border: 1px solid rgba(223, 13, 216, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-start);
}

/* Stats Card */
.stats-card {
    grid-column: span 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-box {
    text-align: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Skills Card */
.skills-card {
    grid-column: span 2;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.skill-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-out;
}

/* Social Card - Expanded */
.social-card {
    grid-column: span 1;
}

.social-card.expanded {
    grid-column: span 2;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links.expanded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-elevated);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    text-decoration: none;
}

.social-links.expanded .social-link {
    width: auto;
    height: auto;
    padding: 12px 16px;
    justify-content: flex-start;
    gap: 10px;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-link.discord:hover {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
}

.social-link.github:hover {
    background: linear-gradient(135deg, #333, #1a1a1a);
    color: white;
}

.social-link.spotify:hover {
    background: linear-gradient(135deg, #1db954, #1ed760);
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}


.social-link i {
    width: 20px;
    height: 20px;
}

.link-label {
    font-size: 14px;
    font-weight: 500;
}

/* Profile Connect Card */
.profile-connect-card {
    grid-column: span 1;
}

.profile-connect-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.connect-avatar {
    position: relative;
    width: 56px;
    height: 56px;
}

.connect-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-secondary);
}

.connect-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--bg-secondary);
}

.connect-status.online {
    background: var(--status-online);
}

.connect-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.connect-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.connect-stats {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.connect-stat {
    text-align: center;
    flex: 1;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-md);
}

.connect-stat .stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.connect-stat .stat-label {
    font-size: 11px;
    color: var(--text-muted);
}

/* Spotify Bento Card - Smooth Version */
/* Abstand zwischen Tags und Spotify */
.profile-spotify-integrated {
    margin-top: 30px; /* Abstand einstellen (z.B. 20px oder 40px) */
    width: 100%;
    position: relative;
    z-index: 5;
}

/* Optional: Tag*/
.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px; /* Zusätzlicher Puffer nach oben */
}

/* Quote Card */
.quote-card {
    grid-column: span 2;
}

.quote-card blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 20px;
    border-left: 3px solid var(--accent-start);
}

.quote-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-start);
    margin-bottom: 12px;
    opacity: 0.5;
}

/* (c) 2026 ExplorerJeyko. Original Design. Don't be a script kiddie, be creative! */
/* ============================================
            CONTACT TERMINAL
   ============================================ */
   /* (c) 2026 ExplorerJeyko. Original Design. Don't be a script kiddie, be creative! */
.contact-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.terminal-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--glass-border);
    gap: 12px;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.term-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.term-btn.close { background: #ff5f56; }
.term-btn.minimize { background: #ffbd2e; }
.term-btn.maximize { background: #27c93f; }

.terminal-title {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-secondary);
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 14px;
}

.terminal-output {
    margin-bottom: 20px;
}

.terminal-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.terminal-line.output {
    color: var(--text-secondary);
    padding-left: 28px;
}

.terminal-line .warning {
    color: var(--status-idle);
}

.prompt {
    color: var(--accent-start);
    font-weight: 600;
    flex-shrink: 0;
}

.command {
    color: var(--text-primary);
}

.input-line {
    align-items: center;
}

.input-line input,
.input-line textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 14px;
    padding: 4px 0;
}

.input-line input::placeholder,
.input-line textarea::placeholder {
    color: var(--text-muted);
}

.input-line textarea {
    resize: none;
    min-height: 80px;
}

.form-group {
    margin-bottom: 16px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03); /* Ein sehr transparentes Weiß ergibt das perfekte Grau auf dunklem Grund */
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.form-group:focus-within {
    border-color: var(--accent-start);
    background: rgba(255, 255, 255, 0.07); /* Wird beim Klicken etwas heller */
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--border-radius-md);
    color: white;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(223, 13, 216, 0.3);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn i {
    width: 18px;
    height: 18px;
}

.rate-limit-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.rate-limit-info i {
    width: 16px;
    height: 16px;
}
/* (c) 2026 ExplorerJeyko. Original Design. Don't be a script kiddie, be creative! */


/* ============================================
                LEGAL SECTION
   ============================================ */
.legal-section {
    background: var(--bg-primary); /* */
    padding-bottom: 40px; /* */
    text-align: center; /* Zentriert den Button in der Sektion */
}

/* Neuer Button zum Ein-/Ausblenden */
.legal-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--accent-gradient); /* Nutzt einen pinken Verlauf */
    border: none;
    border-radius: var(--border-radius-md); /* */
    color: white;
    font-family: var(--font-primary); /* */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal); /* */
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(223, 13, 216, 0.2);
}

.legal-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(223, 13, 216, 0.4);
}

.legal-toggle-btn i {
    width: 18px;
    height: 18px;
}

/* ============================================
                LEGAL SECTION
   ============================================ */
.legal-section {
    background: var(--bg-primary);
    padding-bottom: 40px;
    text-align: center; /* Zentriert den Toggle-Button */
}

/* Der Button zum Ein-/Ausblenden */
.legal-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--border-radius-md);
    color: white;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(223, 13, 216, 0.2);
}

.legal-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(223, 13, 216, 0.4);
}

.legal-toggle-btn i {
    width: 18px;
    height: 18px;
}

/* Die Karte - Optimiert für GSAP Animationen */
.legal-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    text-align: left;
    /* Performance-Fixes für Animationen */
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.legal-content {
    padding: 40px;
}

.legal-block {
    margin-bottom: 32px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--glass-border);
}

.legal-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.legal-block strong {
    color: var(--text-primary);
}
/* ============================================
                    FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-start);
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-divider {
    opacity: 0.5;
}

/* ============================================
            TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-start);
}

.toast-icon i {
    width: 20px;
    height: 20px;
}

.toast-content {
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
            RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .market-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-card {
        grid-column: span 2;
    }
    
    .stats-card,
    .skills-card {
        grid-column: span 1;
    }
    
    .quote-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 60px;
    }
    
    .top-nav {
        height: 56px;
    }
    
    body {
        padding-top: 56px;
    }
    
    .homebar {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 16px;
        border-radius: 0;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .homebar.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-card,
    .stats-card,
    .skills-card,
    .quote-card,
    .social-card.expanded {
        grid-column: span 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links.expanded {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 24px;
    }
    
    .footer-links {
        gap: 16px;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .footer-divider {
        display: none;
    }
    
    .market-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .server-icon {
        width: 40px;
        height: 40px;
    }
    
    .server-icon i {
        width: 20px;
        height: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .status-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .user-badges {
        justify-content: center;
    }
    
    .spotify-content {
        flex-direction: column;
    }
    
    .album-art-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
            SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-start);
}

/* Selection */
::selection {
    background: rgba(223, 13, 216, 0.3);
    color: var(--text-primary);
}


/* Modal-Fenster Design */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    background: var(--bg-secondary);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    padding: 40px;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gradient);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.modal-close-btn:hover {
    transform: scale(1.1);
}

/* Fix für den Terminal-Hintergrund */
.form-group {
    background: rgba(10, 10, 10, 0.856) !important;
}



/* Standard: Pink/Purple (Dein aktuelles Design) */
:root {
    --accent-start: #df0dd8;
    --accent-end: #dd0e72;
}

/* Theme: Cyan/Blue (Wie auf deinem zweiten Bild) */
[data-theme="cyan"] {
    --accent-start: #00f5ff;
    --accent-end: #7000ff;
    --neon-pink: #00f5ff; /* Damit auch die Neon-Effekte mitswitchen */
}

/* Theme: Emerald/Green (Optionaler Vorschlag) */
[data-theme="emerald"] {
    --accent-start: #00ff88;
    --accent-end: #00a1ff;
    --neon-pink: #00ff88;
}



.theme-switcher {
    display: flex;
    gap: 10px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid var(--glass-border);
}

.theme-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    transition: transform 0.2s;
}

.theme-btn.pink { background: #df0dd8; }
.theme-btn.cyan { background: #00f5ff; }

.theme-btn:hover {
    transform: scale(1.2);
}