* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    background-color: #050508;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('assets/hero_bg_1772134782510.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(5, 5, 8, 0.7) 0%, rgba(5, 5, 8, 0.95) 100%);
    z-index: -1;
}

.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    justify-content: center;
}

.logo {
    max-width: 400px;
    width: 100%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(179, 0, 255, 0.4));
}

.title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d2ff 0%, #b300ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.team-image-container {
    margin-bottom: 3rem;
}

.team-image {
    max-width: 100%;
    width: 800px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.social-btn i {
    font-size: 1.4rem;
}

.social-btn:hover {
    transform: translateY(-5px);
}

.social-btn.discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865F2;
    color: #5865F2;
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.social-btn.tiktok:hover {
    background: rgba(255, 0, 80, 0.1);
    border-color: #00f2fe;
    color: #fff;
    box-shadow: -5px 5px 15px rgba(0, 242, 254, 0.3), 5px -5px 15px rgba(255, 0, 80, 0.3);
}

.social-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: #DD2A7B;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-image: linear-gradient(45deg, #f09433, #bc1888) 1;
}

.social-btn.instagram:hover i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem auto;
    }

    .social-btn {
        justify-content: center;
    }
}