/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #f8f9fa;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #d4af37;
}

.logo-link h2 {
    color: #d4af37;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-link img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo-link:hover img {
    transform: scale(1.1);
}

.logo-link:hover h2 {
    color: #f4e4a6;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #e8e9ea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #d4af37;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e4a6);
}

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

/* ===== SOCIAL BUTTONS ===== */
.social-btn {
    display: flex;
    align-items: center;
    width: 100%;                 /* each card fills its grid cell */
    padding: 1rem 1.5rem; /*1rem 1.5rem; */       /* match reference card padding */
    text-decoration: none;
    border-radius: 12px;
    background: rgba(248, 249, 250, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #f8f9fa;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.1);
}

.social-btn i {
    font-size: 1.5rem;
    margin-right: 1rem;          /* match reference spacing to text */
}

.social-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;      /* match left-aligned info in reference */
}

.social-platform {
    font-weight: 600;
    font-size: 1rem;
}

.social-stats {
    font-size: 0.9rem;           /* reference uses ~0.9rem */
    color: #c7c8ca;
    font-weight: 400;
}

/* Platform specific colors */
.youtube:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    color: #fca5a5;
}

.discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.4);
    color: #a5b4fc;
}

.linkedin:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #93c5fd;
}

.instagram:hover {
    background: rgba(236, 72, 153, 0.2);
    border-color: rgba(236, 72, 153, 0.4);
    color: #f9a8d4;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4e4a6, #d4af37);
    border-color: rgba(212, 175, 55, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-link h2 {
        font-size: 1.3rem;
    }
    
    .logo-link img {
        width: 35px;
        height: 35px;
    }
}