/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* HLPFL Brand Colors */
    --gold: #c87941;
    --gold-dark: #a56833;
    --gold-light: #daa04d;
    --dark: #0f0f0f;
    --dark-secondary: #1a1a1a;
    --white: #ffffff;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --blue: #0000CD;
    
    /* Semantic Colors */
    --primary-color: var(--gold);
    --primary-dark: var(--gold-dark);
    --primary-light: var(--gold-light);
    --text-dark: var(--white);
    --text-light: var(--gray-300);
    --text-lighter: var(--gray-400);
    --bg-white: var(--white);
    --bg-dark: var(--dark);
    --bg-dark-secondary: var(--dark-secondary);
    --border-color: rgba(200, 121, 65, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--gold), var(--gold-dark));
    --gradient-primary-light: linear-gradient(135deg, var(--gold-light), var(--gold));
    --gradient-secondary: linear-gradient(135deg, var(--dark), var(--dark-secondary));
    --gradient-gold-shimmer: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    
    /* Shadows with gold tint */
    --shadow-sm: 0 1px 2px 0 rgba(200, 121, 65, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(200, 121, 65, 0.15), 0 2px 4px -1px rgba(200, 121, 65, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(200, 121, 65, 0.2), 0 4px 6px -2px rgba(200, 121, 65, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(200, 121, 65, 0.25), 0 10px 10px -5px rgba(200, 121, 65, 0.2);
    --shadow-gold: 0 10px 15px -3px rgba(200, 121, 65, 0.3), 0 4px 6px -2px rgba(200, 121, 65, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

body {
    font-family: 'Montsterrat', -montsterrat, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #000000;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(200, 121, 65, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 121, 65, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(200, 121, 65, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at top, rgba(200, 121, 65, 0.02) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.logo-svg {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    animation: float 3s ease-in-out infinite, pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: var(--shadow-gold);
    }
    50% {
        box-shadow: 0 0 20px rgba(200, 121, 65, 0.4), var(--shadow-gold);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Logo text removed - using SVG logo instead */

.header-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

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

.verified-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
    border: 3px solid var(--white);
    box-shadow: var(--bg-dark);
}

.profile-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-handle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.profile-bio {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(200, 121, 65, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.link-button.primary {
    background: var(--gradient-primary);
    color: var(--dark);
    border-color: var(--gold);
}

.link-button.primary:hover {
    background: var(--gradient-primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.link-button.music-link {
    background: var(--gradient-gold-shimmer);
    color: var(--dark);
    border-color: var(--gold);
}

.link-button.music-link:hover {
    background: var(--gradient-primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.link-button.apple-link {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark));
    color: var(--white);
    border: 1px solid var(--border-color);
}

.link-button.apple-link:hover {
    background: linear-gradient(135deg, var(--dark), var(--dark-secondary));
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.link-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 121, 65, 0.1);
    border: 1px solid rgba(200, 121, 65, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.link-button.primary .link-icon,
.link-button.music-link .link-icon {
    background: rgba(15, 15, 15, 0.2);
    border-color: rgba(15, 15, 15, 0.3);
}

.link-button.apple-link .link-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.link-content {
    flex: 1;
    text-align: left;
}

.link-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
    color: var(--text-dark);
}

.link-url {
    font-size: 0.875rem;
    color: var(--gold);
    opacity: 0.9;
}

.link-description {
    font-size: 0.875rem;
    color: var(--text-lighter);
    opacity: 0.8;
}

.link-arrow {
    font-size: 1.25rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.link-button:hover .link-arrow {
    transform: translateX(4px);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(200, 121, 65, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: auto;
    padding-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.footer-text {
    color: var(--text-lighter);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-lighter);
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 1rem 0.75rem;
    }
    
    .profile-stats {
        gap: 1.5rem;
    }
    
    .link-button {
        padding: 0.875rem 1rem;
    }
    
    .link-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 380px) {
    /* Logo text removed - using SVG logo instead */
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s infinite;
}

/* Focus states for accessibility */
.link-button:focus,
.social-link:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}
