:root {
    --bg-black: #0a0a0a;
    --card-grey: #121413;
    --border-grey: #262b28;
    --matrix-green: #00ff66;
    --matrix-dark-green: #008f39;
    --text-light: #e0e0e0;
    --font-mono: 'Courier New', Courier, monospace;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-light);
    font-family: var(--font-mono);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Matrix Background Canvas */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(18, 20, 19, 0.85);
    border: 1px solid var(--matrix-green);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
    backdrop-filter: blur(5px);
}

.glitch {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--matrix-green);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.7);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.tagline {
    color: #a0a0a0;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Social Buttons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-black);
    color: var(--text-light);
    text-decoration: none;
    border: 1px solid var(--border-grey);
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-btn:hover {
    border-color: var(--matrix-green);
    color: var(--matrix-green);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
    transform: translateY(-2px);
}

/* Card Styling */
.card {
    background: rgba(18, 20, 19, 0.9);
    border: 1px solid var(--border-grey);
    padding: 2rem;
    text-align: center;
}

/* Stats Footer */
.stats-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-box {
    font-size: 1.2rem;
}

.stat-value {
    color: var(--matrix-green);
    font-weight: bold;
    text-shadow: 0 0 5px var(--matrix-green);
}

.copyright {
    font-size: 0.75rem;
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .glitch {
        font-size: 1.8rem;
    }
    .social-links {
        flex-direction: column;
    }
}