:root {
    --primary: #334155; /* Deep slate for text and accents */
    --primary-dark: #1e293b;
    --primary-light: #64748b;
    --secondary: #475569;
    --text: #334155;
    --text-muted: #64748b;
    --bg-gradient: linear-gradient(135deg, #fdf2f8 0%, #f0f9ff 50%, #fefce8 100%);
    --card-bg: rgba(255, 255, 255, 0.7);
    --icon-bg: rgba(255, 255, 255, 0.5);
    --radius: 24px;
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text);
    margin: 0;
    min-height: 100vh;
    line-height: 1.6;
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-header {
    background: transparent;
    color: var(--text);
    padding: 6rem 0 3rem;
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    border: 6px solid white;
    box-shadow: var(--shadow-lg);
}

.app-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.app-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 14px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    color: var(--primary);
    font-size: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 15px 20px -5px rgba(51, 65, 85, 0.2);
}

.app-main {
    flex: 1;
    padding: 2rem 0 5rem;
}

.links-section {
    max-width: 620px;
    margin: 0 auto;
}

.link-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.link-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
    border-color: white;
}

.link-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.link-content {
    flex: 1;
}

.link-content h3 {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
}

.link-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.link-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.5;
}

.app-footer {
    padding: 3rem 0;
    text-align: center;
    margin-top: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.app-footer p {
    margin: 0;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .app-title {
        font-size: 2.2rem;
    }
    
    .profile-avatar {
        width: 110px;
        height: 110px;
    }
    
    .link-card {
        padding: 1rem;
        gap: 1rem;
    }

    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}


