body {
    margin: 0;
    padding: 0;
    background-color: #181818;
    color: #f0f0f0;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero {
    background: linear-gradient(135deg, #4a148c, #2196f3);
    padding: 80px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, #00bcd4, #e91e63, #673ab7, #00bcd4);
    background-size: 400% 400%;
    animation: gradientAnimation 10s infinite alternate;
    opacity: 0.4;
    filter: blur(100px);
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.nav-bar {
    background-color: #222;
    display: flex;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-top: -60px; /* overlap hero */
    z-index: 2;
    position: relative;
    margin-top: 0;
}

.nav-bar a {
    margin: 0 15px;
    color: #aaa;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-bar a.active, .nav-bar a:hover {
    color: #00bcd4;
    border-bottom-color: #00bcd4;
}

.socials-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    flex-direction: column;
}

.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.social-link.youtube {
    background-color: #FF0000;
    color: white;
    border-color: #FF0000;
    box-shadow: 4px 4px 0 #B30000;
}
.social-link.youtube:hover {
    background-color: #cc0000;
    color: white;
    box-shadow: 6px 6px 0 #990000;
    transform: translateY(-2px);
}

.social-link.twitter {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
    box-shadow: 4px 4px 0 #0d8ddb;
}
.social-link.twitter:hover {
    background-color: #0d8ddb;
    box-shadow: 6px 6px 0 #096bb8;
    transform: translateY(-2px);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    box-shadow: 4px 4px 0 #9e1461;
}
.social-link.instagram:hover {
    box-shadow: 6px 6px 0 #7a0e47;
    transform: translateY(-2px);
}

.social-link.discord {
    background-color: #5865F2;
    color: white;
    border-color: #5865F2;
    box-shadow: 4px 4px 0 #4755d4;
}
.social-link.discord:hover {
    background-color: #4755d4;
    box-shadow: 6px 6px 0 #3c45b2;
    transform: translateY(-2px);
}

.social-link.tiktok {
    background-color: #FF0050;
    color: white;
    border: none;
    box-shadow: 4px 4px 0 #b3003e;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.social-link.tiktok i {
    color: white;
}

.social-link.tiktok:hover {
    background-color: #333333 50%, #cc0045;
    box-shadow: 6px 6px 0 #80002e;
    transform: translateY(-2px);
}

.social-link.twitch {
    background-color: #9146FF;
    color: white;
    border-color: #9146FF;
    box-shadow: 4px 4px 0 #6b35b3;
}
.social-link.twitch:hover {
    background-color: #6b35b3;
    box-shadow: 6px 6px 0 #4c2583;
    transform: translateY(-2px);
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 999px;
    background-color: #222;
    font-size: 1.2em;
    font-weight: 600;
    color: #f0f0f0;
    text-decoration: none;
    border: 3px solid #f0f0f0;
    box-shadow: 4px 4px 0 #000;
    transition: all 0.25s ease;
}

.social-link i {
    margin-right: 0;
    font-size: 1.4em;
}


footer {
    text-align: center;
    color: #aaa;
    padding: 20px;
    border-top: 1px solid #333;
    background-color: #181818;
}