:root {
    /* Color Palette */
    --primary-accent: #FF6B00;
    --secondary-accent: #8B2E00;
    --background-color: #0a0a0a;
    --surface-color: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;

    /* Spacing & Layout */
    --container-width: 680px;
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background-image: radial-gradient(circle at top center, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Header */
.profile-header {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
    margin-bottom: 2rem;
}

.profile-image-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-accent);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 107, 0, 0.5);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    /* Small size */
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.subtitle {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Links */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.link-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    background-color: var(--surface-color);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    gap: 12px;
    /* Space between icon and text */
}

.link-icon {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
    transition: stroke 0.3s;
}

.link-card:hover .link-icon {
    stroke: var(--primary-accent);
}

/* Specific styles for multi-line CTA */
.link-card.main-cta {
    background-color: rgba(255, 107, 0, 0.15);
    border-color: var(--primary-accent);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.1);
    padding: 1rem; /* Slightly less padding to balance height */
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.cta-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
}

.cta-icon {
    width: 28px; /* Slightly larger icon */
    height: 28px;
}

.cta-text {
    text-align: center;
}

.highlight-amount {
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    font-size: 1.15em; /* Make it slightly larger */
}

.link-card.main-cta:hover {
    background-color: var(--primary-accent);
    color: #000;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.4);
}

.link-card.main-cta:hover .link-icon {
    stroke: #000;
}

.link-card.main-cta:hover .highlight-amount {
    color: #000;
    text-shadow: none;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.link-card:hover::before {
    transform: translateX(100%);
}

.link-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary-accent);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
    background-color: #252525;
}

.link-text {
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.powered-by {
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.powered-by a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted var(--text-secondary);
}

.powered-by a:hover {
    color: var(--primary-accent);
    border-bottom-color: var(--primary-accent);
}

/* 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);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .profile-logo {
        width: 120px;
    }

    h1 {
        font-size: 1.75rem;
    }
}