:root {
    --bg-color: #080C16;
    --accent-blue: #162238;
    --primary: #FF8A00; /* Vibrant Orange */
    --secondary: #FFB800; /* Yellow */
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --card-bg: rgba(22, 34, 56, 0.6);
    --border-color: rgba(255, 138, 0, 0.15);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Ambient Glow */
.ambient-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,138,0,0.08) 0%, rgba(0,0,0,0) 60%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
}
.glow-2 {
    top: auto;
    bottom: -20%;
    left: auto;
    right: -10%;
    background: radial-gradient(circle, rgba(255,184,0,0.05) 0%, rgba(0,0,0,0) 60%);
}

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    padding: 1rem 2rem;
    border-radius: 50px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--primary);
}

.logo span {
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav a:hover:not(.btn-primary) {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.4);
}

.spotify-btn {
    background: #1DB954 !important;
    color: white !important;
}

.spotify-btn:hover {
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.4);
}

.youtube-btn {
    background: #FF0000 !important;
    color: white !important;
}

.youtube-btn:hover {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.linkedin-btn {
    background: #0A66C2 !important;
    color: white !important;
}

.linkedin-btn:hover {
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.4);
}

.tiktok-btn {
    background: #000000 !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    transition: all 0.3s ease;
}

.tiktok-btn:hover {
    box-shadow: 0 0 15px rgba(254, 44, 85, 0.5), 0 0 15px rgba(37, 244, 238, 0.5);
    border-color: #fe2c55 !important;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    border: none !important;
}

.instagram-btn:hover {
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 138, 0, 0.1);
}

/* Sections */
section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: rgba(255, 138, 0, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* About */
.about-container {
    padding: 4rem;
    text-align: center;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.host {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.host-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 138, 0, 0.2);
}

.host-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
}

.host h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.host-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.host p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Episodes */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.episode-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid var(--border-color);
}

.episode-info {
    padding: 1.5rem;
}

.ep-number {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.episode-info h3 {
    font-size: 1.2rem;
    line-height: 1.4;
}

.more-episodes {
    text-align: center;
}

/* Footer */
.footer {
    padding: 5rem 5% 2rem;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 4rem 2rem;
}

.footer-content h2 {
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .about-container {
        padding: 2rem;
    }
}

/* Carousel */
.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    scroll-behavior: smooth;
    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 320px;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-5px);
}

.instagram-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 480px;
    text-align: center;
    padding: 2rem;
}

.instagram-placeholder i {
    color: #cc2366;
    margin-bottom: 1rem;
}

.instagram-placeholder h3 {
    margin-bottom: 0.5rem;
}

.instagram-placeholder p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.instagram-btn-secondary {
    border-color: #cc2366 !important;
}

.instagram-btn-secondary:hover {
    background: rgba(204, 35, 102, 0.1) !important;
}
