:root {
    /* Brand Colors */
    --primary-navy: #0F172A;
    /* Deep Navy */
    --secondary-navy: #1E293B;
    /* Slightly lighter navy for cards */
    --accent-gold: #D4AF37;
    /* Metallic Gold */
    --accent-gold-light: #F3E5AB;
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;

    /* Spacing & Layout */
    --container-max-width: 480px;
    /* Mobile-focused width */
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;

    /* Animations */
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-navy);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Effect (Subtle Gradient) */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.1), transparent 40%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Profile Section */
.profile-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInDown 0.8s ease-out;
}

.profile-image-container {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius-full);
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-gold), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    margin-bottom: 0.5rem;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-full);
    object-fit: contain;
    /* Ensure logo isn't cut off */
    background-color: #fff;
    /* White background for the logo to pop if it has transparency */
    border: 3px solid var(--primary-navy);
    /* Creates a gap effect */
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(30, 41, 59, 0.6);
    /* Glassmorphismish */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: var(--text-light);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--accent-gold);
    transition: transform var(--transition-speed) ease;
}

.link-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.link-text {
    font-weight: 500;
    font-size: 1.05rem;
    flex-grow: 1;
    text-align: center;
    padding-right: 24px;
    /* Balance the icon spacing */
}

/* Specific button styles if needed, but keeping unified for now */

/* Footer */
.footer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Social Section - Refined */
.social-section {
    width: 100%;
    margin-top: 1.5rem;
    /* More space from links */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.social-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    color: var(--accent-gold);
    /* GOLD COLOR !IMPORTANT */
    text-decoration: none;
    /* No underline (purple fix) */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: rgba(30, 41, 59, 0.9);
    transform: translateY(-4px) scale(1.1);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
    color: var(--accent-gold-light);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}