/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

#bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: transparent;
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
}
.avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    background: #232526;
}

.username {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #551642;
    margin-bottom: 0.2em;
    letter-spacing: 1px;
    text-align: center;
}

.subtitle {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5em;
    text-align: center;
    opacity: 0.85;
}

.profile-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    border-radius: 1.5em;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
    padding: 1.1em 2.2em 1.1em 1.1em;
    margin-bottom: 2em;
    position: relative;
    min-width: 320px;
    max-width: 90vw;
    gap: 1em;
    color: #fff;
}
.profile-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    margin-right: 0.8em;
}
.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.profile-name {
    color: #ffe600;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.3em;
}
.profile-status {
    color: #fff;
    font-size: 0.95rem;
    opacity: 0.85;
}
.status-dot {
    position: absolute;
    left: 38px;
    bottom: 18px;
    width: 12px;
    height: 12px;
    background: #00e676;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 8px #00e67699;
}

.social-row {
    display: flex;
    gap: 1.2em;
    margin-bottom: 1.5em;
    justify-content: center;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.7em 1.4em;
    background: #232526;
    color: #fff;
    border: none;
    border-radius: 2em;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}
.social-btn i {
    font-size: 1.2em;
}
.social-btn:hover {
    background: #ffb3fa;
    color: #232526;
    transform: translateY(-2px) scale(1.05);
}

.views {
    color: #ffe600;
    font-size: 1.1rem;
    margin-top: 0.5em;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.3em;
    justify-content: center;
}

@media (max-width: 600px) {
    .profile-card {
        min-width: 0;
        padding: 1em 0.7em 1em 0.7em;
    }
    .avatar {
        width: 90px;
        height: 90px;
    }
    .avatar img {
        width: 70px;
        height: 70px;
    }
    .profile-avatar img {
        width: 36px;
        height: 36px;
    }
    .username {
        font-size: 1.7rem;
    }
    .social-btn {
        font-size: 1.4rem;
    }
}

/* Social Links Section */
.social-links {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.social-links h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

/* Social Link Colors */
.instagram:hover {
    border-color: #e4405f;
    color: #e4405f;
}

.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.tiktok:hover {
    border-color: #000000;
    color: #000000;
}

.linkedin:hover {
    border-color: #0077b5;
    color: #0077b5;
}

.github:hover {
    border-color: #333;
    color: #333;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.contact-btn i {
    margin-right: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links,
.about,
.contact {
    animation: fadeInUp 0.8s ease-out;
}

.spotify-card-modern {
    display: flex;
    align-items: center;
    gap: 1em;
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    border-radius: 1.2em;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
    padding: 0.8em 1.3em;
    margin-top: 0.5em;
    min-width: 0;
    max-width: 340px;
    width: 100%;
    color: #fff;
}
.spotify-album-art {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px #0002;
}
.spotify-info {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
    min-width: 0;
}
.spotify-listening {
    color: #1db954;
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 0.1em;
}
.spotify-song {
    font-weight: 700;
    font-size: 1.08em;
    color: #fff;
    margin-bottom: 0.05em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 180px;
}
.spotify-artist {
    color: #ffb3fa;
    font-size: 1em;
    margin-bottom: 0.05em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 180px;
}
.spotify-album {
    color: #aaa;
    font-size: 0.98em;
    margin-bottom: 0.1em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 180px;
}
.spotify-link {
    color: #1db954;
    text-decoration: underline;
    font-size: 0.98em;
    margin-top: 0.2em;
    font-weight: 600;
    transition: color 0.2s;
}
.spotify-link:hover {
    color: #ffb3fa;
} 