.page-header {
    padding: 5rem 2rem 3rem;
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFA000 0%, #FFD04D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.socials-section {
    padding: 2rem 2rem 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.social-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: opacity 0.35s;
}

.social-card:hover {
    transform: translateY(-6px);
}

.social-card.discord::before { background: transparent; }
.social-card.discord:hover   { border-color: #5865F2; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); }

.social-card.youtube::before { background: transparent; }
.social-card.youtube:hover   { border-color: #FF0000; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); }

.social-card.tiktok::before { background: transparent; }
.social-card.tiktok:hover   { border-color: #69C9D0; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); }

.social-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.social-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.discord .social-icon-wrap   { background: rgba(88, 101, 242, 0.15); }
.youtube .social-icon-wrap   { background: rgba(255, 0, 0, 0.15); }
.tiktok .social-icon-wrap    { background: rgba(105, 201, 208, 0.13); }

.social-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.social-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.social-handle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.social-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.social-btn {
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.25s;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    text-decoration: none;
}

.social-btn svg {
    width: 14px;
    height: 14px;
}

.discord .social-btn:hover   { background: #5865F2; border-color: #5865F2; color: #fff; }
.youtube .social-btn:hover   { background: #FF0000; border-color: #FF0000; color: #fff; }
.tiktok .social-btn:hover    { background: #69C9D0; border-color: #69C9D0; color: #000; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.badge-live {
    background: rgba(255, 160, 0, 0.15);
    color: #FFA000;
    border: 1px solid rgba(255, 160, 0, 0.3);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFA000;
    animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::after {
    width: 100%;
}
