/*
    ----------------------
    S A V V Y  C L I Q U E
     2025 Neverslain Labs 
    ----------------------
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image:hover .image-overlay {
    opacity: 1;
}

.profile-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3), transparent 70%);
    border-radius: 50%;
    animation: profileGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes profileGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.profile-content {
    padding: 20px 0;
}

.profile-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.profile-bio {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 40px;
    text-align: justify;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-genres {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.genre-tag {
    font-family: 'Oswald', sans-serif;
    padding: 8px 16px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.genre-tag:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.4), rgba(78, 205, 196, 0.4));
}

.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 107, 107, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 107, 107, 0.8), 0 0 40px rgba(255, 107, 107, 0.3); }
}

.music-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.platform-card:hover::before {
    left: 100%;
}

.platform-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 107, 107, 0.15);
    border-color: #ff6b6b;
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);
}

.platform-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    color: #ffffff;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.6));
}

.platform-card:hover .platform-icon svg {
    color: #ff6b6b;
}

.platform-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
}

.videos-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 50px 30px;
    margin-bottom: 80px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
    border-color: #4ecdc4;
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 300% 300%;
    animation: gradientMove 6s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    33% { background-position: 100% 50%; }
    66% { background-position: 50% 100%; }
}

.video-info {
    padding: 20px;
}

.video-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.video-description {
    font-family: 'Oswald', sans-serif;
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 300;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2), transparent);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.social-link:hover::after {
    width: 200px;
    height: 200px;
}

.social-link:hover {
    transform: translateY(-10px) scale(1.1);
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.15);
    border-color: #4ecdc4;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.3);
}

.social-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.8));
}

.social-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

footer {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    color: #888888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    #logo-canvas {
        width: 100px;
        height: 100px;
    }
    
    .profile-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
        text-align: center;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .social-media {
        gap: 20px;
    }
    
    .platform-card, .social-link {
        padding: 20px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    #logo-canvas {
        width: 80px;
        height: 80px;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .section {
        padding: 40px 15px;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .music-platforms {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .profile-title {
        font-size: 2rem;
    }
    
    .profile-bio {
        font-size: 1rem;
    }
    
    .artist-profile {
        margin: 20px;
        border-radius: 20px;
    }
    
    .profile-container {
        padding: 30px 20px;
    }
} #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

#starfield-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 100%);
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 50px 20px 30px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    position: relative;
}

#logo-canvas {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.4));
}



.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #ff6b6b);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

.tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    margin-top: 10px;
    color: #cccccc;
    letter-spacing: 3px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Artist Profile Section */
.artist-profile {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    margin: 40px auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.artist-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1), rgba(69, 183, 209, 0.1));
    opacity: 0.3;
    z-index: -1;
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
}

.profile-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-image {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: