:root {
    --primary-orange: #FF8C42;
    --dark-orange: #FF6B35;
    --light-orange: #FFB366;
    --primary-purple: #4A2C5E;
    --dark-purple: #000000;
    --light-purple: #6B4A7A;
    --accent-pink: #D97398;
    --dark-bg: #000000;
    --darker-bg: #000000;
    --light-text: #ffffff;
    --gray-text: #D97398;
    --card-bg: #4A2C5E;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.1) 2px, rgba(0,0,0,.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.1) 2px, rgba(0,0,0,.1) 4px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}



html {
    scroll-behavior: smooth;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

/* Navigation */
.navbar {
    background-color: transparent;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.navbar.scrolled {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 0;
    box-shadow: 0 5px 0 var(--primary-orange), 0 7px 20px rgba(253, 98, 31, 0.3);
}

.navbar-brand {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    color: var(--primary-orange) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 50%, #D97398 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(253, 98, 31, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
}

.hero-section .row {
    margin-top: -150px;
}

.hero-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 4rem;
    line-height: 1.2;
    color: var(--light-text);
    margin-bottom: 1rem;
}

/* Episode Plug - Hero Version */
.episode-plug-hero {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .episode-plug-hero {
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-image-container {
        margin-bottom: 2rem;
    }
    
    .platform-icons {
        justify-content: center;
    }
}

.plug-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.5);
}

.plug-title-hero {
    display: block;
    font-family: 'Permanent Marker', cursive;
    font-size: 3.5rem;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.plug-title-hero:hover {
    color: var(--primary-orange);
    text-shadow: 0 0 30px rgba(255, 140, 66, 0.8);
    transform: translateX(10px);
}

.hero-saying {
    font-size: 3rem;
    color: var(--light-text);
    position: relative;
    z-index: 2;
}

.podcast-text {
    color: var(--primary-orange);
    display: block;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--primary-orange), 0 0 20px var(--primary-orange);
    }
    to {
        text-shadow: 0 0 20px var(--primary-orange), 0 0 30px var(--primary-orange), 0 0 40px var(--primary-orange);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-orange);
    border: 3px solid #000;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8), 0 10px 25px rgba(253, 98, 31, 0.4);
    border: 3px solid #000;
}

.btn-outline-light {
    border: 2px solid var(--light-text);
}

.btn-outline-light:hover {
    background-color: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.platform-icons {
    display: flex;
    gap: 1rem;
}

.platform-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    background-color: var(--primary-orange);
    transform: translateY(-5px) rotate(5deg);
    color: var(--light-text);
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 98, 31, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(253, 98, 31, 0.4));
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--primary-orange);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styling */
.section-badge {
    display: inline-block;
    background-color: var(--primary-purple);
    color: var(--primary-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-orange);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-text);
    font-family: 'Permanent Marker', cursive;
    text-shadow: 
        4px 4px 0px rgba(0, 0, 0, 0.8),
        -1px -1px 0px rgba(255, 255, 255, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    font-weight: 300;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--dark-purple) 0%, var(--darker-bg) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-text);
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(253, 98, 31, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray-text);
    margin: 0;
}

/* Episodes Section */
.episodes-section {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-purple) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


.episode-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 4px solid var(--primary-orange);
    box-shadow: 
        8px 8px 0px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(253, 98, 31, 0.2);
}

.episode-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 
        12px 12px 0px rgba(0, 0, 0, 0.8),
        0 15px 40px rgba(253, 98, 31, 0.5);
}

.episode-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-orange);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    border: 3px solid #000;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
    font-family: 'Permanent Marker', cursive;
}

.episode-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 98, 31, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.episode-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    color: var(--light-text);
}

.episode-content {
    padding: 1.5rem;
}

.episode-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.episode-meta {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.episode-description {
    color: var(--gray-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-outline-primary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-orange);
    color: var(--light-text);
}

/* Hosts Section */
.hosts-section {
    background: linear-gradient(180deg, var(--dark-purple) 0%, var(--darker-bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.host-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.host-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253, 98, 31, 0.3);
}

.host-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

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

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

.host-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.host-card:hover .host-social {
    opacity: 1;
}

.host-social a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.host-social a:hover {
    background-color: var(--light-text);
    color: var(--primary-orange);
    transform: translateY(-5px);
}

.host-content {
    padding: 2rem;
    text-align: center;
}

.host-content h4 {
    font-family: 'Permanent Marker', cursive;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
    text-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.8),
        -1px -1px 0px rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
}

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

.host-content p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Subscribe Section */
.subscribe-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-purple) 50%, var(--primary-purple) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.subscribe-form {
    max-width: 500px;
}

.subscribe-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    padding: 1rem 1.5rem;
}

.subscribe-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-orange);
    color: var(--light-text);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.subscribe-form .form-control::placeholder {
    color: var(--gray-text);
}

.subscribe-form .btn-primary {
    padding: 1rem 2rem;
}

.form-text {
    color: var(--gray-text);
    margin-top: 0.5rem;
    display: block;
}

.platform-grid h4 {
    color: var(--light-text);
    font-size: 1.5rem;
}

.platform-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.platform-card:hover {
    background-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(253, 98, 31, 0.3);
}

.platform-card i {
    font-size: 2rem;
}

.platform-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Video Modal */
.modal-content {
    background-color: var(--dark-bg);
    border: 2px solid var(--primary-orange);
}

.modal-header {
    border-bottom: 1px solid var(--primary-orange);
}

.modal-title {
    font-family: 'Permanent Marker', cursive;
    color: var(--primary-orange);
}

.modal-body {
    padding: 0;
}

#episodeVideo {
    border-radius: 0 0 8px 8px;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    border-top: 3px solid var(--primary-orange);
}

.footer-brand {
    font-family: 'Permanent Marker', cursive;
    color: var(--primary-orange);
    font-size: 1.5rem;
    line-height: 1.3;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(253, 98, 31, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-orange);
    color: var(--light-text);
    transform: translateY(-5px);
}

.footer-heading {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright {
    color: var(--gray-text);
    margin: 0;
}

.footer-legal {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal:hover {
    color: var(--primary-orange);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    color: var(--light-text);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-orange);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-row {
        gap: 2rem;
    }
    
    .hero-image {
        max-width: 350px;
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .platform-icons {
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
}
