body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0e0e0e;
    color: #fff;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.shape-1 { width: 80px; height: 80px; top: 10%; left: 15%; }
.shape-2 { width: 120px; height: 120px; top: 30%; left: 75%; }
.shape-3 { width: 100px; height: 100px; top: 60%; left: 50%; }
.shape-4 { width: 90px; height: 90px; top: 80%; left: 20%; }
.shape-5 { width: 110px; height: 110px; top: 40%; left: 40%; }

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

.main-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.text-line.highlight {
    color: #ffdb4d;
    font-weight: bold;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 500px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #333;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    width: 73%;
    height: 100%;
    background: #ffdb4d;
    border-radius: 6px 0 0 6px;
    transition: width 0.3s ease-in-out;
}

.progress-text {
    font-size: 0.9rem;
    color: #ccc;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.discord-btn {
    background: #5865F2;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    transition: background 0.3s;
}

.discord-btn:hover {
    background: #4752c4;
}

.discord-btn svg {
    fill: currentColor;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 15px #5865F2;
    border-radius: 8px;
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.join-text {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 400px;
    text-align: center;
}

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