/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1b3a 25%, #2a1b4a 50%, #1e2a4f 75%, #0f1a2a 100%);
    position: relative;
    overflow: hidden;
    color: white;
    padding: 25px 0;
    text-align: center;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid rgba(248, 250, 252, 0.3);
    box-shadow: 
        0 0 25px rgba(248, 250, 252, 0.2),
        0 6px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.profile-pic:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 35px rgba(248, 250, 252, 0.3),
        0 10px 35px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3px;
    margin-top: 3px;
    color: #ffffff;
    opacity: 1;
    line-height: 1;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-top: 12px;
    opacity: 0.8;
}

/* Averia Gruesa Libre Font Styling for Profile Handle */
.profile-section h1 {
    font-family: 'Averia Gruesa Libre', cursive;
    font-weight: 400;
    font-size: 1.9rem;
    letter-spacing: -0.02em;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
    margin: 0;
    padding-bottom: 4px;
}

/* Hero Action Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    justify-content: center;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    gap: 16px;
    margin-top: 6px;
    justify-content: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(45, 38, 114, 0.8);
    border: 2px solid rgba(71, 85, 105, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #f8fafc;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

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

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    background: rgba(51, 65, 85, 0.9);
    border-color: rgba(100, 116, 139, 0.8);
}

.social-btn.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
}

.social-btn.tiktok:hover {
    background: #3cbaba;
    border-color: #3cbaba;
    color: white;
}

.social-btn.github:hover {
    background: #d12e84;
    border-color: #d12e84;
    color: white;
}

.social-btn.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
    color: white;
}

.social-btn.x:hover {
    background: #000;
    border-color: #000;
    color: white;
}

.social-btn.email:hover {
    background: #e8754b;
    border-color: #e8754b;
    color: white;
}
