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

:root {
    --gold: #ffcc00;
    --gold-glow: #ffcc0099;
    --gold-dark: #b8860b;
    --electric-blue: #00f2ff;
    --accent: #ff00ea;
    --deep-bg: #010409;
    --card-bg: rgba(5, 7, 12, 0.9);
    --border-gradient: linear-gradient(90deg, #ffcc00, #ffffff, #00f2ff, #ff00ea, #ffcc00);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: #010409;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

/* Animated Vibrant Background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, #ffcc001a 0%, transparent 40%),
        radial-gradient(circle at 70% 20%, #00f2ff1a 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, #ff00ea1a 0%, transparent 40%);
    z-index: -1;
    animation: aurora 20s linear infinite;
    filter: blur(80px);
}

@keyframes aurora {
    0% { transform: rotate(0deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(0.9); }
    100% { transform: rotate(360deg) scale(1.1); }
}

/* Layered glow for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(252, 194, 1, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 210, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bgMovement {
    /* Kept for compatibility if used elsewhere, but gradientFlow is primary now */
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

/* Background Effects */
.glow-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(252, 194, 1, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Container & Centering */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 650px;
    padding: 20px;
}

/* Animated Border Container */
.card-wrapper {
    position: relative;
    padding: 3px; /* Border thickness */
    background: var(--border-gradient);
    background-size: 200% auto;
    border-radius: 30px;
    animation: borderRotate 3s linear infinite;
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.3);
}

@keyframes borderRotate {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Main Content Card */
.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Luxury Badge */
.luxury-badge {
    position: absolute;
    top: 0;
    right: 50px;
    background: var(--gold);
    color: #000;
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Typography */
.game-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #ffcc00 40%, #00f2ff 70%, #ff00ea 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.6));
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.game-title span {
    display: block;
    font-size: 1.6rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 15px;
    margin-top: -10px;
    color: var(--electric-blue);
    -webkit-text-fill-color: var(--electric-blue);
    text-shadow: 0 0 10px var(--electric-blue);
}

.subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.game-subtitle {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
}

.main-announcement h2 {
    font-size: 3.8rem;
    line-height: 0.9;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.glow-text {
    text-shadow: 0 0 20px var(--gold-glow);
}

.main-announcement span {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 194, 1, 0.2);
    padding: 8px 15px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.pill:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

.description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Progress Section */
.status-box {
    margin-bottom: 40px;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.loading-bar .fill {
    height: 100%;
    width: 45%;
    background: var(--border-gradient);
    background-size: 200% auto;
    animation: borderRotate 3s linear infinite;
    box-shadow: 0 0 15px var(--gold-glow);
}

.status-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
}

/* Social Buttons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(252, 194, 1, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.02);
}

.social-btn svg { width: 24px; height: 24px; }

.social-btn:hover {
    background: linear-gradient(45deg, var(--gold), var(--electric-blue));
    color: #000;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 25px var(--gold-glow), 0 0 15px var(--electric-blue);
    border-color: #fff;
}

/* Footer */
.main-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
}

/* Floating Glass Shards Background */
.glass-shards {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shard {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    animation: shardFloat 20s infinite linear;
}

@keyframes shardFloat {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    20% { opacity: 0.4; }
    80% { opacity: 0.4; }
    100% { transform: translate(100px, -100px) rotate(360deg); opacity: 0; }
}

.shard:nth-child(1) { width: 150px; height: 150px; top: 10%; left: 10%; animation-duration: 25s; }
.shard:nth-child(2) { width: 200px; height: 100px; top: 60%; left: 80%; animation-duration: 30s; animation-delay: -5s; }
.shard:nth-child(3) { width: 80px; height: 120px; top: 30%; left: 70%; animation-duration: 22s; animation-delay: -10s; }
.shard:nth-child(4) { width: 120px; height: 180px; top: 80%; left: 15%; animation-duration: 28s; animation-delay: -15s; }
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float 8s infinite ease-in-out;
    filter: grayscale(1) brightness(2);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(30px, -50px) rotate(20deg) scale(1.2); }
    66% { transform: translate(-20px, 40px) rotate(-10deg) scale(0.8); }
}

.icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.icon:nth-child(3) { bottom: 15%; left: 20%; animation-delay: 4s; }
.icon:nth-child(4) { bottom: 25%; right: 10%; animation-delay: 1s; }
.icon:nth-child(5) { top: 50%; left: 5%; animation-delay: 3s; }

/* Responsive */
@media (max-width: 600px) {
    .content-card { padding: 40px 20px; }
    .game-title { font-size: 2.5rem; }
    .main-announcement h2 { font-size: 2.5rem; }
}
