:root {
    --bg-base: #1E2124;
    --bg-card: #282B30;
    --bg-card-hover: #36393e;
    --accent-green: #6B8E23;
    --accent-red: #ef4444;
    --accent-yellow: #f59e0b;
    --text-main: #F5F5F5;
    --text-muted: #868E96;
    --border-color: #3e434a;
    --gradient-green: linear-gradient(90deg, #6B8E23 0%, #80a82a 100%);
    --shadow-glow: 0 0 30px rgba(107, 142, 35, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Background Decoration */
body::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(107, 142, 35, 0.03) 0%, transparent 50%);
    animation: drift 20s linear infinite;
    z-index: 0;
}

@keyframes drift {
    from { transform: translate(-25%, -25%) rotate(0deg); }
    to { transform: translate(-25%, -25%) rotate(360deg); }
}

.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo Section */
.logo-container {
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.logo-container img {
    height: 60px;
    animation: float 4s ease-in-out infinite;
}

.ascii-logo {
    font-family: monospace;
    font-size: 5px;
    line-height: 1.1;
    color: var(--accent-green);
    white-space: pre;
    margin-bottom: 2rem;
    opacity: 0.8;
}

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

/* Card Styling */
.construction-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 142, 35, 0.1);
    border: 1px solid rgba(107, 142, 35, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Progress bar placeholder */
.progress-container {
    background: rgba(0,0,0,0.2);
    height: 8px;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-green);
    width: 65%;
    box-shadow: 0 0 15px var(--accent-green);
    border-radius: 10px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.social-btn.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.social-btn.telegram:hover {
    background: #26A1DE;
    border-color: #26A1DE;
    box-shadow: 0 10px 20px rgba(38, 161, 222, 0.3);
}

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

/* Footer info */
.footer-info {
    margin-top: 3rem;
    color: #555;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    .social-links { flex-direction: column; }
    .social-btn { justify-content: center; }
}
