:root {
    --primary-color: #9b59b6;
    --secondary-color: #c39bd3;
    --background-color: #0d0d15;
    --text-color: #e8e6e3;
    --accent-color: #0b4d42;
    --glass-bg: rgba(155, 89, 182, 0.1);
    --enderman-particle: rgba(155, 89, 182, 0.6);
    --card-bg: rgba(155, 89, 182, 0.08);
    --border-color: rgba(155, 89, 182, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Minecraft', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(155, 89, 182, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(11, 77, 66, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%239b59b6" opacity="0.1"/></svg>');
    background-size: 100% 100%, 100% 100%, 50px 50px;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    overflow-y: auto;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--background-color) 100%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.server-status {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 89, 182, 0.2);
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.1);
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.status-indicator.online {
    background-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.status-details h2 {
    margin-bottom: 0.5rem;
}

.server-name {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.player-count {
    font-size: 1rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--primary-color);
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn.secondary {
    background-color: rgba(155, 89, 182, 0.1);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    backdrop-filter: blur(5px);
}

/* Enderman Partikel Effekt */
.enderman-particle {
    pointer-events: none;
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--enderman-particle);
    animation: float 2s ease-out forwards;
    z-index: 9999;
}

@keyframes float {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--x, 20px), var(--y, -20px)) scale(0);
    }
}

/* Footer */
.footer {
    margin-top: auto;
    width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color);
    border-radius: 20px 20px 0 0;
    padding: 3rem 1rem;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.creators-section {
    background: rgba(155, 89, 182, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(155, 89, 182, 0.1);
}

.creators-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.creator-card {
    text-align: center;
    background: transparent;
    border: none;
    padding: 1rem;
    max-width: 220px;
}

.minecraft-skin {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    background-size: cover;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.minecraft-skin:hover {
    transform: scale(1.2);
}

.luna-skin {
    background-image: url('./assets/luna.png');
}

.chris-skin {
    background-image: url('./assets/chris.png');
}

.creator-name {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.social-link {
    display: inline-block;
    padding: 0.5rem;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-color);
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.legal-link {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.legal-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 3rem;
    }

    .server-status {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .footer-content {
        padding: 0 1rem;
    }
}

.main-header {
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.logo-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 2;
}

.logo-img {
    height: 64px;
    width: 165px;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    background-color: rgba(134, 134, 134, 0.15);
    border-radius: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
    width: 100%;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 21, 0.85);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(13, 13, 21, 0.4);
        backdrop-filter: blur(4px);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        z-index: -1;
    }

    .main-nav.active::before {
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .logo-nav-wrapper {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 40px;
        width: 116px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }

    .creators-grid {
        flex-direction: column;
        align-items: center;
    }
}
