* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url(https://r2.guns.lol/dd47eb15-7166-449a-8340-2240ef0ce199.png) 16 16, auto !important;
}

body {
    background-color: #2b2b2b;
    color: #ffffff;
    font-family: 'Anonymous Pro', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    animation: backgroundColorChange 20s infinite alternate;
    position: relative;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

.splash-screen.fade-out {
    opacity: 0;
}

.splash-content {
    text-align: center;
}

.splash-text {
    font-family: 'Anonymous Pro', monospace;
    font-size: 32px;
    color: #ffffff;
    animation: splashPulse 2s ease-in-out infinite;
    letter-spacing: 2px;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    user-select: none;
}

.video-background iframe {
    width: 110vw;
    height: 73.125vw;
    min-height: 130vh;
    min-width: 231.11vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(43, 43, 43, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: -1;
}

.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 50, 50, 0.2);
    border: 2px solid rgba(255, 50, 50, 0.5);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: musicPulse 2s ease-in-out infinite;
    opacity: 0;
    transform: translateY(50px);
}

.music-toggle.show {
    animation: slideUpFade 0.8s ease-out 0.6s forwards, musicPulse 2s ease-in-out 1.4s infinite;
}

.music-toggle:hover {
    background: rgba(255, 50, 50, 0.4);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.container {
    text-align: center;
    animation: containerFloat 10s infinite alternate ease-in-out;
}

.container>* {
    opacity: 0;
    transform: translateY(50px);
}

.container.show>* {
    animation: slideUpFade 0.8s ease-out forwards;
}

.container.show>*:nth-child(1) {
    animation-delay: 0.1s;
}

.container.show>*:nth-child(2) {
    animation-delay: 0.2s;
}

.container.show>*:nth-child(3) {
    animation-delay: 0.3s;
}

.container.show>*:nth-child(4) {
    animation-delay: 0.4s;
}

.container.show>*:nth-child(5) {
    animation-delay: 0.5s;
}

.profile-avatar {
    margin-bottom: 20px;
}

.profile-avatar img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid rgba(255, 50, 50, 0.4);
    animation: avatarGlow 3s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

.profile-avatar img:hover {
    transform: scale(1.15) rotate(10deg);
    filter: brightness(1.2);
}


.logo .s {
    font-family: 'Ancient', serif;
    font-size: 80px;
    color: #4c4c4c;
    animation: rotateLogo 20s linear infinite, logoPulse 5s infinite alternate ease-in-out;
}


.title {
    font-family: 'Ancient', serif;
    font-size: 48px;
    animation: textGlow 3s ease-in-out infinite alternate, textMove 7s infinite alternate ease-in-out;
}


.subtitle {
    font-size: 18px;
    margin-top: 10px;
    animation: moveUpDown 5s infinite alternate ease-in-out;
}


.status-card {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 50, 50, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    animation: cardFloat 6s infinite alternate ease-in-out, cardGlow 3s ease-in-out infinite alternate;
}

.discord-card {
    margin-top: 30px;
    animation: cardFloat 6s infinite alternate ease-in-out;
}

.discord-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(30, 30, 30, 0.9);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 50, 50, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.discord-server-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.discord-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.server-name {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.server-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #b3b3b3;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #43b581;
    animation: pulse 2s infinite;
}

.stats-text {
    color: #b3b3b3;
}

.join-button {
    padding: 10px 25px;
    background: #43b581;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.join-button:hover {
    background: #3ca374;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(67, 181, 129, 0.5);
}

.spotify-info {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.album-art {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    animation: albumPulse 3s infinite ease-in-out;
}

.track-info {
    text-align: left;
}

.track-name {
    font-size: 16px;
    font-weight: bold;
    color: #ff3333;
}

.artist-name {
    font-size: 14px;
    color: #b3b3b3;
    margin-top: 5px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff0000, #ff3333);
    transition: width 1s linear;
}

.hidden {
    display: none;
}

.contact {
    margin-top: 50px;
    animation: skewed 8s infinite alternate ease-in-out;
}


.icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    animation: iconWave 10s infinite ease-in-out;
}

.icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, filter 0.5s ease;
    animation: iconFloat 5s infinite alternate ease-in-out;
}

.icon:hover img {
    transform: scale(1.2) rotate(10deg);
    filter: brightness(1.5) saturate(2);
    animation: hoverBounce 0.5s;
}

.footer {
    font-size: 12px;
    margin-top: 30px;
    color: #6d6d6d;
    animation: glowFooter 5s infinite alternate, fadeInOut 10s infinite alternate;
}


body::before,
body::after {
    display: none;
}

@keyframes rotateLogo {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff;
    }

    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff0000, 0 0 40px #ff0000;
    }
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

@keyframes skewed {
    0% {
        transform: skewX(0deg);
    }

    100% {
        transform: skewX(5deg);
    }
}

@keyframes iconWave {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes iconFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes hoverBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes glowFooter {
    0% {
        text-shadow: none;
    }

    100% {
        text-shadow: 0 0 10px #ffffff;
    }
}

@keyframes containerFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes textMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(10px);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

@keyframes backgroundColorChange {
    0% {
        background-color: #2b2b2b;
    }

    100% {
        background-color: #1a1a1a;
    }
}

@keyframes cardFloat {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-5px) scale(1.02);
    }
}

@keyframes albumPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.05) rotate(2deg);
    }
}

@keyframes avatarGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 0, 0, 0.5);
    }
}

@keyframes cardGlow {
    0% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.4), 0 0 40px rgba(255, 50, 50, 0.2);
    }
}

@keyframes avatarRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes musicPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
}

@keyframes splashPulse {

    0%,
    100% {
        opacity: 0.6;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 0, 0, 0.5);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
