@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Rubik:ital,wght@0,300;0,400;1,300;1,400&display=swap');

body {
    background: radial-gradient(158.02% 50% at 50% 50%,
            rgba(40, 39, 52, 0.95) 0%,
            rgba(14, 14, 20, 0.95) 100%);
    color: #00f8b9;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.custom-border {
    border: 1px solid rgba(0, 248, 185, 0.9);
}

.custom-bg {
    background: radial-gradient(141.63% 67.03% at 50% 50%,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0) 100%);
}

.hover-effect {
    transition: all 0.3s ease-in-out;
}

.hover-effect:hover {
    background-color: rgba(0, 248, 185, 0.1);
    box-shadow: 0 4px 15px rgba(0, 248, 185, 0.2);
    cursor: pointer;
}

.mobile-menu-button span {
    font-size: 2rem;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(14, 14, 20, 0.95);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 248, 185, 0.7);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 248, 185, 0.9);
}

.container {
    padding: 0 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.section {
    padding: 4rem 2rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.features {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.feature-item {
    padding: 2rem;
    background-color: rgba(14, 14, 20, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 248, 185, 0.2);
    transition: transform 0.3s ease-in-out;
    flex: 1;
    min-width: 250px;
}

.feature-item img {
    border-radius: 8px;
    margin-bottom: 1rem;
    width: 100%;
    height: auto;
}

.feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(0, 248, 185, 0.1);
}

.feature-item .icon {
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem;
}

.feature-item.feature-item-large {
    flex: 2;
    transform: scale(1.05);
    z-index: 1;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.artikel-description {
    background: radial-gradient(141.63% 67.03% at 50% 50%,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0) 100%);
    padding: 1rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .features {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .feature-item {
        padding: 2rem;
    }

    header,
    footer {
        padding: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-item.feature-item-large {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .text-4xl {
        font-size: 2.5rem;
    }

    .text-xl {
        font-size: 1.25rem;
    }

    .hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .features {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .feature-item {
        padding: 1rem;
    }

    header,
    footer {
        padding: 1rem;
    }

    .container {
        padding: 0 0.5rem;
    }

    .section {
        padding: 2rem 0.5rem;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-item.feature-item-large {
        transform: scale(1);
    }

    .hero .text-left {
        text-align: center;
    }

    .hero .text-left .inline-block {
        display: inline-block;
        margin-top: 1rem;
    }

    .mobile-menu a {
        margin-bottom: 1rem;
        transition: all 0.3s ease-in-out;
        display: flex;
        align-items: center;
        padding: 1rem;
        width: 100%;
        background: rgba(14, 14, 20, 0.9);
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 248, 185, 0.2);
        justify-content: flex-start;
        width: calc(100% - 2rem);
    }

    .mobile-menu a:hover {
        background: rgba(0, 248, 185, 0.1);
        box-shadow: 0 4px 15px rgba(0, 248, 185, 0.4);
    }

    .mobile-menu a i {
        margin-right: 0.5rem;
    }
}

.logo-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.mobile-menu {
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    max-height: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.mobile-menu.open {
    max-height: 500px;
}

.points-1 {
    color: green;
}

.points-2 {
    color: orange;
}

.points-3 {
    color: red;
}

.instant-permban-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.reglement {
    background: radial-gradient(141.63% 67.03% at 50% 50%,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.reglement ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.instant-permban-section {
    background: radial-gradient(141.63% 67.03% at 50% 50%,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.instant-permban-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.roleplaybeperkte-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.roleplaybeperkte-description {
    padding: 1rem;
    border-radius: 8px;
}

