:root {
    --bg-color: #0a0a0a;
    --card-bg: rgba(21, 21, 21, 0.8);
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
    --accent-color: #8b5cf6;
    --accent-hover: #a78bfa;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    overflow-x: hidden;
    position: relative;
}

/* EPIC Background Texturing */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)),
        url('assets/4506027b-e62f-448a-a1a3-1818fb431be6.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        url('assets/7bff6819-8c6d-4aba-b9e0-979c394d688c.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    mix-blend-mode: overlay;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
    z-index: 1;
}

header {
    margin-bottom: 40px;
}

.cover-art {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    margin: 0 auto 24px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    border: 2px solid var(--accent-color);
    transition: transform var(--transition-speed) ease;
    position: relative;
}

.cover-art::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.cover-art:hover {
    transform: scale(1.05) rotate(1deg);
}

.cover-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
}

.announcement {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
    padding: 12px;
    background: rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    background-color: var(--card-bg);
    backdrop-filter: blur(12px);
    color: var(--text-main);
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 14px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.link-card:hover {
    background-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.link-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

footer {
    margin-top: 60px;
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.7;
}
