* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a23 0%, #1a0033 100%);
    color: #ffffff;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
    box-sizing: border-box;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

#particles::before,
#particles::after {
    content: '';
    position: absolute;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

#particles::before {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

#particles::after {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 10;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(138, 43, 226, 0.6);
    transform: perspective(500px) rotateX(15deg);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: perspective(500px) rotateX(15deg) scale(1.03);
    text-shadow: 0 0 30px rgba(0, 212, 255, 1), 0 0 60px rgba(138, 43, 226, 0.8);
}

nav {
    display: flex;
    gap: 20px;
}

.menu-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
}

.menu-btn i {
    font-size: 1.2rem;
}

section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 5;
}

section.active {
    opacity: 1;
    visibility: visible;
}

#home {
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.home-image-small {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s ease;
}

.home-image-small:hover {
    transform: translateY(-50%) scale(1.05);
}

.home-image-small-right {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 250px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s ease;
}

.home-image-small-right:hover {
    transform: translateY(-50%) scale(1.05);
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.home-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5), 0 0 60px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease;
}

.home-image:hover {
    transform: scale(1.05);
}

.discord-name {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-bottom: 40px;
}

.header-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.content-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 30px;
    width: 65%;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(138, 43, 226, 0.2);
    text-align: center;
    color: #e0e0e0;
    line-height: 1.6;
}

.links {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 30px;
    width: 65%;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(138, 43, 226, 0.2);
    text-align: center;
    color: #e0e0e0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links a {
    color: #00d4ff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.links a:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

/* Beta Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.8), 0 0 100px rgba(255, 0, 150, 0.6);
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.6;
}

.modal-content button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.modal-content button:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.7);
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    header {
        padding: 15px 10px;
        position: relative;
    }

    .logo {
        font-size: 2rem;
        text-align: center;
    }

    nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .menu-btn {
        padding: 10px 15px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .menu-btn i {
        font-size: 1.1rem;
    }

    #home {
        padding-top: 120px;
        text-align: center;
    }

    .home-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 5px;
    }

    .home-image-small,
    .home-image-small-right {
        display: none;
    }

    .main-content {
        order: 2;
        width: 100%;
        max-width: 350px;
        gap: 15px;
    }

    .home-image {
        max-width: 100%;
        height: auto;
    }

    .home-image-small {
        max-width: 120px;
        height: auto;
    }

    .discord-name {
        font-size: 1.1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        margin-bottom: 20px;
    }

    .header-panel {
        padding: 12px 20px;
        font-size: 1.3rem;
        text-align: center;
    }

    .logo-small {
        font-size: 1.3rem;
    }

    .content-panel, .links {
        width: 95%;
        padding: 20px 15px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .info-blocks {
        width: 95%;
        gap: 15px;
    }

    .info-block {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .info-block h3 {
        font-size: 1.2rem;
    }

    .info-block p {
        font-size: 0.95rem;
    }

    .links {
        gap: 15px;
    }

    .links a {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    #particles {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    header {
        padding: 10px 5px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .menu-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
        max-width: 250px;
    }

    #home {
        padding-top: 100px;
    }

    .home-image-small {
        max-width: 120px;
    }

    .main-content {
        max-width: 300px;
    }

    .home-image {
        max-width: 280px;
    }


    .section-header {
        gap: 8px;
    }

    .header-panel {
        padding: 10px 15px;
        font-size: 1.2rem;
    }

    .logo-small {
        font-size: 1.2rem;
    }

    .content-panel, .links {
        width: 98%;
        padding: 15px 10px;
        font-size: 0.95rem;
    }

    .info-blocks {
        width: 98%;
        gap: 10px;
    }

    .info-block {
        padding: 12px;
    }

    .badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .info-block h3 {
        font-size: 1.1rem;
    }

    .links a {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 65%;
    max-width: 800px;
}

.info-block {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 15px rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.info-block:hover {
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(138, 43, 226, 0.4);
    transform: translateY(-5px);
}

.badge {
    background: linear-gradient(45deg, #00d4ff, #8a2be2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.info-block p {
    color: #cccccc;
    line-height: 1.5;
}