@font-face {
    font-family: 'SiteFont';
    src: url('/assets/fonts/site.ttf') format('truetype');
}

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

body {
    font-family: 'SiteFont', -apple-system, sans-serif;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.bg-layer {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.bg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.back-button {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.back-button:hover {
    color: #fff;
}

.profile-container {
    text-align: center;
    margin-bottom: 20px;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bio, .extra {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.links {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.link-btn.featured {
    background: linear-gradient(135deg, var(--featured-color1), var(--featured-color2));
    border: none;
    animation: flashColor var(--flash-duration) infinite;
}

@keyframes flashColor {
    0%, 100% { background: linear-gradient(135deg, var(--featured-color1), var(--featured-color2)); }
    25% { background: linear-gradient(135deg, var(--featured-color2), var(--featured-color3)); }
    50% { background: linear-gradient(135deg, var(--featured-color3), var(--featured-color4)); }
    75% { background: linear-gradient(135deg, var(--featured-color4), var(--featured-color1)); }
}

.link-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.platform-name {
    font-size: 1.1rem;
}

.arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.artist-footer {
    text-align: center;
    margin-top: 30px;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Snowfall Effect */
.snowfall {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
}

.snowflake {
    position: absolute;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .container {
        padding: 25px;
        margin: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
    }
    
    .bio, .extra {
        font-size: 1rem;
    }
    
    .link-btn {
        padding: 12px 15px;
    }
    
    .platform-name {
        font-size: 1rem;
    }
}