:root {
    --bg-color: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --accent: #3b82f6;
    --accent-hover: #60a5fa;
    --gradient-start: #3b82f6;
    --gradient-end: #8b5cf6;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.15) 0px, transparent 50%);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow-x: hidden;
}

/* Language Selector */
.lang-selector {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.5);
    padding: 0.5rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.flag-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.flag-btn.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Main Container */
.container {
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Top Link */
.top-link-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.see-links-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent-hover);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.see-links-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Avatar */
.avatar-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
    animation: pulse 4s infinite alternate;
}

.avatar {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.subtitle {
    text-align: center;
    color: var(--accent-hover);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 2rem 0;
}

/* Info Section */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-block:hover {
    transform: translateY(-2px) translateX(4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3);
}

.info-block .icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.info-block p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.info-block strong {
    color: var(--text-main);
}

.info-block a {
    color: var(--accent-hover);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--accent-hover);
    transition: all 0.3s ease;
}

.info-block a:hover {
    color: var(--text-main);
    border-bottom: 1px solid var(--text-main);
}

/* Social Section */
.social-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.social-section > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-btn.youtube:hover { border-color: #ef4444; }
.social-btn.tiktok:hover { border-color: #06b6d4; }
.social-btn.appstore:hover { border-color: var(--accent); }
.social-btn.vidoleo:hover { border-color: #8b5cf6; }

.social-btn .icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-btn.youtube .icon { background: rgba(239, 68, 68, 0.15); }
.social-btn.tiktok .icon { background: rgba(6, 182, 212, 0.15); }
.social-btn.appstore .icon { background: rgba(59, 130, 246, 0.15); }
.social-btn.vidoleo .icon { background: rgba(139, 92, 246, 0.15); }

.social-btn:hover .icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.social-btn.youtube:hover .icon { background: rgba(239, 68, 68, 0.3); }
.social-btn.tiktok:hover .icon { background: rgba(6, 182, 212, 0.3); }
.social-btn.appstore:hover .icon { background: rgba(59, 130, 246, 0.3); }
.social-btn.vidoleo:hover .icon { background: rgba(139, 92, 246, 0.3); }

.svg-icon {
    width: 24px;
    height: 24px;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text strong {
    font-size: 1.1rem;
}

.btn-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */
.footer-msg {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.footer-msg p {
    margin-bottom: 0.5rem;
}

.signature {
    margin-top: 1.5rem !important;
    font-weight: 600;
    color: var(--accent-hover);
    font-style: italic;
}

/* Animations */
@keyframes pulse {
    0% { opacity: 0.4; transform: scale(0.95); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 4rem 1rem 2rem;
    }

    .glass {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .gradient-text {
        font-size: 2.2rem;
    }
    
    .lang-selector {
        top: 1rem;
        right: 1rem;
    }

    .info-block {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .info-block .icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .avatar-container {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gradient-text {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }

    .glass {
        padding: 1.25rem;
    }
}
