:root {
    --bg-dark: #040406;
    --bg-elevated: rgba(20, 20, 25, 0.6);
    --bg-glass: rgba(30, 30, 40, 0.4);
    --border-glass: rgba(255, 255, 255, 0.08);
    --accent: #FF5A00;
    --accent-hover: #ff762b;
    --accent-glow: rgba(255, 90, 0, 0.4);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
}

/* Background Animations */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at top right, rgba(20, 20, 30, 1) 0%, var(--bg-dark) 100%);
    z-index: -2;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 90, 0, 0.15);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 150, 255, 0.1);
    bottom: -150px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
    100% { transform: translate(-30px, 80px) scale(0.9); }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
    min-height: 100vh;
    align-items: start;
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}

/* Glassmorphism */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
}

@media (max-width: 900px) {
    .sidebar {
        position: relative;
        top: 0;
    }
}

/* Profile Header */
.profile-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 1rem;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 25px;
    z-index: 1;
    overflow: hidden;
    opacity: 0.8;
}

.avatar-ring::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--accent), #ff007b, var(--accent));
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
    background: linear-gradient(to right, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.handle {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(255, 90, 0, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 99px;
}

.bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Platforms Grid */
.platforms-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.platform-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.platform-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.platform-link svg {
    font-size: 1.25rem;
    fill: currentColor;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.platform-link:hover svg {
    color: var(--accent);
}

/* Standout RSS Feed styling */
#link-rss-feed {
    border-color: rgba(242, 101, 34, 0.4);
    background: rgba(242, 101, 34, 0.08);
}

#link-rss-feed:hover {
    background: rgba(242, 101, 34, 0.15);
    border-color: rgba(242, 101, 34, 0.6);
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
}

#link-rss-feed svg {
    color: #f26522;
}

/* Socials */
.socials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
}

.social-link {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
}

.social-link:hover {
    color: var(--text-main);
    background: var(--accent);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Content Area */
.content-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}



.icon-headphones {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.icon-yt {
    width: 24px;
    height: 24px;
    color: #FF0000; /* YouTube Red */
}

.spotify-embed-container {
    border-radius: 12px;
    overflow: hidden;
    background: #121212;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Skeleton Loader */
.skeleton-loader {
    width: 100%;
    height: 352px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.skeleton-pulse {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.spotify-embed-container:hover {
    transform: translateY(-5px);
}

.youtube-embed-container {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.youtube-embed-container:hover {
    transform: translateY(-5px);
}

.mt-6 {
    margin-top: 1.5rem;
}

/* Hosts Section */
.icon-hosts {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.hosts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .hosts-grid {
        grid-template-columns: 1fr;
    }
}

.host-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.host-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.host-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.host-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-glass);
    flex-shrink: 0;
}

.host-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.host-title {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.host-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.host-social-link {
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.host-social-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.host-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Site Footer */
.site-footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-top: 1rem;
    border-top: 1px solid var(--border-glass);
}

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

.site-footer a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
    text-shadow: 0 0 8px var(--accent-glow);
}
