body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, #0a0a0a, #000000);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 0;
    font-family: "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
    color: #e0e0e0;
}

.container {
    width: min(98%, 1600px);
    min-height: 90vh;
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 144, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.top {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(30, 144, 255, 0.6);
}

.top-small {
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    color: #1e90ff;
    font-size: clamp(28px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 2px solid #1e90ff;
}

.top-big {
    padding: 40px;
    min-height: 420px;
    display: flex;
    justify-content: center;  
    align-items: center;      
    text-align: center;       
    gap: 30px;
    flex-wrap: wrap;
    font-size: clamp(16px, 2.2vw, 26px);
    color: #cfe6ff;
}

.rechts,
.rechts_2,
.rechts_3,
.rechts_4 {
    color: #cfe6ff;
    line-height: 1.5;
}

.top-big video,
.top-big img {
    width: min(40%, 500px);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.menu a {
    color: #1e90ff;
    text-decoration: none;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
}

.menu a:hover,
.menu a:visited,
.menu a:active {
    color: #1e90ff;
}

.name-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    width: 100%;
}

.tile {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border-radius: 12px;
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.3);
    color: #1e90ff;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    transition: 0.25s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tile:hover {
    background: #1e90ff;
    color: black;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
}

/* 📱 MOBILE */
@media (max-width: 768px) {

    .container {
        width: 95%;
        min-height: 100vh;
    }

    .top-big {
        flex-direction: column;
        padding: 20px;
    }

    .top-big video,
    .top-big img {
        width: 100%;
    }

    .menu {
        flex-direction: column;
        gap: 20px;
    }

    .tile {
        height: 70px;
    }
}