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

body {
    font-family: 'Unbounded', sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.avatar-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.avatar-image {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007BFF;
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.avatar-image:hover {
    transform: scale(1.05);
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

.cta-button {
    background-color: #007BFF;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease-out;
    position: relative;
    z-index: 11;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 16px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin: 0 auto;
    min-width: 200px;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-8px) scale(1.05);
}

.social-section {
    padding: 100px 20px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.social-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 123, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: transform 0.3s ease;
    color: white;
    position: relative;
    z-index: 2;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.custom-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-card:hover .social-actions {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}

.social-username {
    flex: 1;
    color: white;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.social-visit-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.social-visit-btn:hover {
    background: rgba(0, 200, 83, 0.7);
    transform: scale(1.1);
    color: white;
}

.telegram { background: linear-gradient(135deg, #0088cc, #00b3ff); }
.discord { background: linear-gradient(135deg, #5865F2, #7289da); }
.steam { background: linear-gradient(135deg, #000000, #2a475e); }
.funpay { background: linear-gradient(135deg, #0066cc, #0099ff); }

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.social-description {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #b0b0b0;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.footer-link:hover .footer-logo {
    transform: scale(1.1) rotate(5deg);
}

.footer-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .main-title { font-size: 2.5rem; }
    .subtitle { font-size: 1.2rem; }
    .social-grid { 
        grid-template-columns: 1fr; 
        gap: 25px;
        max-width: 400px;
    }
    .social-card { padding: 30px 20px; }
    .section-title { font-size: 2.5rem; }
    .avatar-image { width: 10rem; height: 10rem; }
    .social-icon { 
        width: 70px; 
        height: 70px; 
        font-size: 1.8rem; 
    }
    .custom-icon {
        width: 40px;
        height: 40px;
    }
    .footer-link {
        padding: 8px 16px;
    }
    .footer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-title { font-size: 2rem; }
    .subtitle { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .avatar-image { width: 8rem; height: 8rem; }
    .social-actions {
        padding: 10px 12px;
    }
    .social-visit-btn {
        width: 32px;
        height: 32px;
    }
    .social-username {
        font-size: 0.9rem;
    }
    .footer {
        padding: 20px 15px;
    }
    .footer-link {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 12px 15px;
    }
    .footer-logo {
        width: 40px;
        height: 40px;
    }
    .footer-text {
        font-size: 0.85rem;
    }
}