/* ============================================
   CHILL ZONE - MAIN STYLESHEET
   Farbschema basierend auf Logo:
   - Primary: #00f0ff (Cyan/Türkis)
   - Secondary: #8b5cf6 (Violett)
   - Dark: #0a0a1a (Tiefes Dunkelblau)
   - Accent: #3b82f6 (Blau)
   ============================================ */

/* CSS Variables */
:root {
    --primary: #00f0ff;
    --primary-dark: #00b8cc;
    --secondary: #8b5cf6;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --dark: #0a0a1a;
    --dark-lighter: #0f1629;
    --dark-card: #111827;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --red: #ef4444;
    --green: #22c55e;
    --orange: #f97316;
    --yellow: #eab308;
    
    /* Role Colors */
    --role-owner: #ef4444;
    --role-teamlead: #3b82f6;
    --role-techadmin: #f97316;
    --role-mcdev: #84cc16;
    --role-mod: #06b6d4;
    --role-vip: #a855f7;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    
    /* Shadows */
    --shadow-glow: 0 0 30px rgba(0, 240, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Timing */
    --transition-fast: 0.2s 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;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::selection {
    background: var(--primary);
    color: var(--dark);
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* Particles Container */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* Aurora Background */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aurora {
    position: absolute;
    width: 150%;
    height: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: aurora-move 20s infinite ease-in-out;
}

.aurora-1 {
    top: -20%;
    left: -25%;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
    animation-delay: 0s;
}

.aurora-2 {
    top: 30%;
    right: -25%;
    background: linear-gradient(180deg, var(--secondary) 0%, transparent 100%);
    animation-delay: -7s;
}

.aurora-3 {
    bottom: -20%;
    left: 20%;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
    animation-delay: -14s;
}

@keyframes aurora-move {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(5%) translateY(3%) rotate(5deg);
    }
    50% {
        transform: translateX(-3%) translateY(-5%) rotate(-3deg);
    }
    75% {
        transform: translateX(-5%) translateY(2%) rotate(3deg);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    padding: 0.75rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
    transition: transform var(--transition-normal);
}

.nav-logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    position: relative;
    padding: 0.75rem 1.25rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.9s both;
}

.badge-icon {
    color: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.badge-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.2s both;
}

.hero-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.5));
    animation: float 6s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease 0.4s both;
}

.title-line {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-main {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #60a5fa 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    position: relative;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.3));
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    min-height: 2.5rem;
    animation: fadeIn 1s ease 0.6s both;
}

.typing-text {
    border-right: 2px solid var(--primary);
    padding-right: 5px;
    animation: blink 1s step-end infinite;
}

.typing-highlight {
    position: relative;
    color: var(--white);
    font-weight: 600;
    padding: 0.05em 0.2em;
}

.typing-highlight::before {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-radius: 4px;
    z-index: -1;
    transform: skewX(-3deg) rotate(-1deg);
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease 0.8s both;
}

/* Textmarker Highlight Effect */
.highlight-marker {
    position: relative;
    color: var(--white);
    font-weight: 600;
    padding: 0.1em 0.3em;
    margin: 0 0.1em;
}

.highlight-marker::before {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-radius: 4px;
    z-index: -1;
    transform: skewX(-3deg) rotate(-1deg);
    animation: marker-appear 0.6s ease 1.2s both;
}

@keyframes marker-appear {
    from {
        transform: skewX(-3deg) rotate(-1deg) scaleX(0);
        transform-origin: left center;
    }
    to {
        transform: skewX(-3deg) rotate(-1deg) scaleX(1);
    }
}

/* Inline SVG Icons */
.inline-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.25rem;
}

.heart-icon {
    color: var(--primary);
    animation: heartbeat 1.5s ease infinite;
}

.heart-icon-small {
    color: var(--primary);
    vertical-align: middle;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.15);
    }
    30% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.1);
    }
}

/* Role Icons in Team Cards */
.role-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.25rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 1.2s both;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
}

.btn-glow {
    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: all 0.5s ease;
}

.btn-primary:hover .btn-glow {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(0, 240, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease 1.5s both;
    z-index: 100;
    pointer-events: none;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.glass-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-normal);
}

.about-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 240, 255, 0.1);
}

.card-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.75rem;
    color: var(--primary);
    z-index: 2;
    position: relative;
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ring-pulse 3s infinite;
}

@keyframes ring-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.about-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Quote */
.about-quote {
    text-align: center;
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.quote-marks {
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 0;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.about-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1rem;
}

.about-quote em {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.quote-author {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   MINECRAFT SECTION
   ============================================ */
.minecraft-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.03) 50%, transparent 100%);
}

.mc-bg-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.mc-block {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.2);
    animation: float-block 20s infinite ease-in-out;
}

.block-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.block-2 {
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.block-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: -14s;
}

.block-4 {
    top: 25%;
    right: 5%;
    width: 35px;
    height: 35px;
    animation-delay: -3s;
}

.block-5 {
    top: 75%;
    left: 8%;
    width: 25px;
    height: 25px;
    animation-delay: -10s;
}

.block-6 {
    bottom: 10%;
    right: 20%;
    width: 45px;
    height: 45px;
    animation-delay: -5s;
}

.block-7 {
    top: 15%;
    left: 30%;
    width: 20px;
    height: 20px;
    animation-delay: -17s;
}

.block-8 {
    bottom: 35%;
    right: 3%;
    width: 30px;
    height: 30px;
    animation-delay: -12s;
}

@keyframes float-block {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

.mc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mc-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.mc-logo {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 0 40px rgba(239, 68, 68, 0.3));
    animation: float 6s ease-in-out infinite;
}

.mc-info {
    padding: 2rem 0;
}

.mc-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mc-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.smp-text {
    color: var(--red);
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.mc-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mc-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mc-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
}

.mc-feature i {
    color: var(--red);
}

.mc-ip-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(17, 24, 39, 0.8);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.ip-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ip-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ip-value span {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: var(--red);
    font-weight: 600;
}

.copy-btn {
    background: rgba(239, 68, 68, 0.2);
    border: none;
    color: var(--red);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.copy-btn:hover {
    background: var(--red);
    color: var(--white);
}

.copy-tooltip {
    position: absolute;
    top: -35px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    pointer-events: none;
}

.copy-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.mc-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-mc {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.btn-mc:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.btn-mc-secondary {
    background: transparent;
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: var(--red);
}

.btn-mc-secondary:hover {
    border-color: var(--red);
    background: rgba(239, 68, 68, 0.1);
}

.btn-mc-secondary.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}

.btn-mc-secondary.btn-disabled:hover {
    transform: none;
    border-color: rgba(239, 68, 68, 0.3);
    background: transparent;
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: -15px;
    background: var(--red);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.btn-mc-secondary.btn-disabled {
    overflow: visible;
}

.mc-credits {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.mc-heart {
    color: var(--red);
    animation: heartbeat 1.5s ease infinite;
}

.mc-credits-name {
    color: var(--red);
    font-weight: 600;
}

/* Credits Name Colors */
.credits-name {
    font-weight: 600;
}

.credits-cyan {
    color: var(--primary);
}

.credits-red {
    color: var(--red);
}

.credits-blue {
    color: var(--accent);
}

/* Footer Credits untereinander */
.footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer .footer-bottom p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-card {
    position: relative;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.team-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    transition: opacity var(--transition-normal);
}

.team-card .card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    pointer-events: none;
}

/* Role-based colors */
.team-owner .card-bg { background: linear-gradient(135deg, var(--role-owner), transparent); }
.team-owner .card-border { border-color: rgba(239, 68, 68, 0.3); }
.team-owner:hover .card-border { border-color: var(--role-owner); box-shadow: 0 0 30px rgba(239, 68, 68, 0.3); }
.team-owner .avatar-ring { border-color: var(--role-owner); }
.team-owner .member-role { color: var(--role-owner); }

.team-lead .card-bg { background: linear-gradient(135deg, var(--role-teamlead), transparent); }
.team-lead .card-border { border-color: rgba(59, 130, 246, 0.3); }
.team-lead:hover .card-border { border-color: var(--role-teamlead); box-shadow: 0 0 30px rgba(59, 130, 246, 0.3); }
.team-lead .avatar-ring { border-color: var(--role-teamlead); }
.team-lead .member-role { color: var(--role-teamlead); }

.team-admin .card-bg { background: linear-gradient(135deg, var(--role-techadmin), transparent); }
.team-admin .card-border { border-color: rgba(249, 115, 22, 0.3); }
.team-admin:hover .card-border { border-color: var(--role-techadmin); box-shadow: 0 0 30px rgba(249, 115, 22, 0.3); }
.team-admin .avatar-ring { border-color: var(--role-techadmin); }
.team-admin .member-role { color: var(--role-techadmin); }

.team-mcdev .card-bg { background: linear-gradient(135deg, var(--role-mcdev), transparent); }
.team-mcdev .card-border { border-color: rgba(132, 204, 22, 0.3); }
.team-mcdev:hover .card-border { border-color: var(--role-mcdev); box-shadow: 0 0 30px rgba(132, 204, 22, 0.3); }
.team-mcdev .avatar-ring { border-color: var(--role-mcdev); }
.team-mcdev .member-role { color: var(--role-mcdev); }

.team-mod .card-bg { background: linear-gradient(135deg, var(--role-mod), transparent); }
.team-mod .card-border { border-color: rgba(6, 182, 212, 0.3); }
.team-mod:hover .card-border { border-color: var(--role-mod); box-shadow: 0 0 30px rgba(6, 182, 212, 0.3); }
.team-mod .avatar-ring { border-color: var(--role-mod); }
.team-mod .member-role { color: var(--role-mod); }

.team-card:hover {
    transform: translateY(-10px);
}

.team-card:hover .card-bg {
    opacity: 0.2;
}

.status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.status-indicator.online {
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
    animation: status-pulse 2s infinite;
}

.status-indicator.idle {
    background: var(--yellow);
    box-shadow: 0 0 10px var(--yellow);
}

.status-indicator.dnd {
    background: var(--red);
    box-shadow: 0 0 10px var(--red);
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: ring-rotate 10s linear infinite;
}

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.team-card:hover .avatar-glow {
    opacity: 1;
}

.member-info {
    margin-bottom: 1rem;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.member-username {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.member-role {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.member-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.activity-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.activity-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* VIP Section */
.vip-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.vip-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--role-vip);
    margin-bottom: 2rem;
}

.vip-title i {
    animation: gem-sparkle 2s infinite;
}

@keyframes gem-sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.vip-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.vip-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 15px;
    transition: all var(--transition-normal);
}

.vip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.vip-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--role-vip);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.vip-name {
    color: var(--white);
    font-weight: 500;
}

.vip-badge {
    font-size: 0.8rem;
    color: var(--role-vip);
}

/* ============================================
   JOIN SECTION
   ============================================ */
.join-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.join-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: join-pulse 8s infinite ease-in-out;
}

@keyframes join-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.join-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.join-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.join-icon i {
    font-size: 4rem;
    color: var(--primary);
    animation: door-swing 3s infinite ease-in-out;
}

@keyframes door-swing {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(20deg); }
}

.join-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.join-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.join-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.join-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
}

.join-feature i {
    color: var(--green);
}

.btn-join {
    position: relative;
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow);
}

.btn-join:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    background: var(--dark-lighter);
    padding-top: 0;
    z-index: 10;
}

.footer-waves svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-waves path {
    fill: var(--dark-lighter);
}

.footer-content {
    padding: 3rem 2rem 2rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
}

.footer-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col a i {
    margin-right: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-domain {
    font-family: 'Orbitron', monospace;
    color: var(--primary) !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .mc-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mc-logo {
        max-width: 300px;
    }
    
    .mc-features {
        justify-content: center;
    }
    
    .mc-ip-box {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mc-buttons {
        justify-content: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links {
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        transition: right var(--transition-normal);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
        padding: 1rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-quote blockquote {
        font-size: 1.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .join-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 3rem;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .about-section,
    .minecraft-section,
    .team-section,
    .join-section {
        padding: 5rem 1rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
}
