        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #2a2a2a;
            color: #e0e0e0;
        }
        /* Hero Section */
        .hero {
            height: 100vh;
            width: 100vw;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(42, 42, 42, 0.7)), url('../img/bg-mythicblocks.png') center/cover;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            text-align: center;
            margin: 0;
            padding: 0;
            max-width: none;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        .scroll-indicator img {
            width: 2rem;
            height: 2rem;
        }

        /* Content Sections */
        section {
            padding: 6rem 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-align: center;
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Team Section */
        .team-department {
            margin-bottom: 4rem;
        }

        .department-title {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #60a5fa;
        }

        .department-line {
            height: 2px;
            background: linear-gradient(90deg, #60a5fa, transparent);
            margin-bottom: 2rem;
        }

        .team-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .team-member {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            background: #2a2a2a;
            border-radius: 8px;
            margin-bottom: 1rem;
            transition: box-shadow 0.3s ease;
        }

        .team-member:hover .team-avatar {
            box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
        }
        section#team p {
            font-size: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .team-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #e0e0e0;
        }

        .team-role {
            font-size: 0.9rem;
            color: #888;
            margin-top: 0.25rem;
            font-weight: bold;
        }
        .team-role#owner {
            color: #a20000;
        }
        .team-role#techleitung {
            background: linear-gradient(90deg, #DE9DFF, #00B8BF);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
}
        .team-role#admin {
            color: #FF5555;
        }
        .team-role#dev {
            color: #00AAAA;
        }
        .team-role#content {
            color: #00ffff;
        }
        .team-role#mod {
            color: #FF5555;
        }
        .team-role#sup {
            color: #4a64f8;
        }
        .team-role#builder {
            color: #55FFFF;
        }
        /* Footer */
        footer {
            background: #0f0f0f;
            padding: 3rem 5%;
            text-align: center;
            width: 100%;
            margin: 0;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #60a5fa;
        }

        .footer-text {
            color: #666;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Responsive */
        @media (max-width: 1150px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

            section h2 {
                font-size: 2rem;
            }
        }