* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Minecraft', 'JetBrains Mono', monospace;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
}

.splash-text {
    font-family: 'Minecraft', 'JetBrains Mono', monospace;
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.website-title {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
    font-family: 'Minecraft', 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.website-title::after {
    content: '|';
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content {
    max-width: 600px;
    width: 100%;
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
}

.avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(138, 43, 226, 0.5);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.5);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-family: 'Minecraft', 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #8a2be2, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    display: inline-block;
}

h1:hover {
    background: linear-gradient(135deg, #8a2be2, #da70d6, #8a2be2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.tagline {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.tagline:hover {
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Discord Server Card Styling */
.discord-server-card {
    position: relative;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-server-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.server-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(114, 137, 218, 0.05) 100%);
    z-index: 0;
}

.server-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}

.server-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #5865f2, #7289da);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.server-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-info {
    flex: 1;
    min-width: 0;
}

.server-name {
    font-family: 'Minecraft', 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
}

.server-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #b9bbbe;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ba55d;
    box-shadow: 0 0 6px #3ba55d;
}

.offline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #747f8d;
}

.stat-separator {
    color: #4f545c;
}

.stat-text {
    font-weight: 400;
}

.join-button {
    padding: 0.6rem 1.5rem;
    background: #3ba55d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.join-button:hover {
    background: #2d7d46;
    transform: scale(1.05);
}

.join-button:active {
    transform: scale(0.98);
}

.links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.link:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.bio {
    text-align: center;
    color: #ccc;
    line-height: 1.6;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

.stat-value {
    font-family: 'Minecraft', 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8a2be2, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .server-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .server-stats {
        justify-content: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}