:root {
    --bg-dark: #0f1115;
    --bg-light: #1c1e26;
    --gray-primary: #8a91a1;
    --gray-light: #d1d5db;
    --accent: #a3b8cc; /* Subtle cool grey/blue accent */
    --accent-glow: rgba(163, 184, 204, 0.4);
    --glass-bg: rgba(28, 30, 38, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--gray-light);
    overflow-x: hidden;
}

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

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--gray-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

/* General Layout */
section {
    min-height: 100vh;
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    align-items: center;
    text-align: center;
}

.avatar-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    position: relative;
    border: 3px solid var(--glass-border);
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(30px);
    opacity: 0.5;
    z-index: 1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.glitch {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--gray-primary);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: var(--gray-light);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(209, 213, 219, 0.2);
}

.btn.primary:hover {
    background: white;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.card-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.about-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-card p {
    line-height: 1.6;
    color: var(--gray-primary);
}

/* Content Section */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.social-card {
    display: flex;
    align-items: center;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: background 0.3s ease;
}

.social-card.youtube::before { background: #ff0000; }
.social-card.discord::before { background: #5865F2; }

.social-card:hover {
    transform: translateX(10px);
    background: rgba(40, 42, 54, 0.8);
}

.social-card.youtube:hover { box-shadow: 0 0 20px rgba(255, 0, 0, 0.15); border-color: rgba(255,0,0,0.3); }
.social-card.discord:hover { box-shadow: 0 0 20px rgba(88, 101, 242, 0.15); border-color: rgba(88,101,242,0.3); }

.social-icon {
    font-size: 3rem;
    margin-right: 25px;
}

.social-card.youtube .social-icon { color: #ff0000; }
.social-card.discord .social-icon { color: #5865F2; }

.social-info h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.social-info p {
    color: var(--gray-primary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--gray-primary);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar { padding: 20px; }
    .nav-links { display: none; } /* Could add a hamburger menu if needed */
    .glitch { font-size: 2.5rem; }
    section { padding: 80px 5%; }
}
