 :root {
            --primary-green: #28a745;
            --dark-bg: #1a1a1a;
            --light-gray: #f8f9fa;
            --text-dark: #333;
            --text-light: #666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-green) !important;
        }

        .navbar-brand i {
            margin-right: 8px;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-green) !important;
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link.active {
            color: var(--primary-green) !important;
            font-weight: 600;
        }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 3px;
            background: var(--primary-green);
            border-radius: 2px;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(16, 60, 37, 0.9), rgba(16, 60, 37, 0.1)),
                        url("../images/Rectangle\ 1050.png") center/cover;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.7s;
        }

        .btn-primary-custom {
            background: var(--primary-green);
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.9s;
        }

        .btn-primary-custom:hover {
            background: #218838;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
        }

        .podcast-host-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateX(50px);
            animation: fadeInRight 1s ease forwards 1.1s;
        }

        .podcast-host-frame img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .podcast-host-frame:hover img {
            transform: scale(1.05);
        }

        .live-indicator {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--primary-green);
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            animation: pulse 2s infinite;
        }

        /* Episodes Section */
        .episodes-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .section-title {
            color: var(--primary-green);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
        }

        .episode-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .episode-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .episode-image {
            position: relative;
            overflow: hidden;
        }

        .episode-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .episode-card:hover .episode-image img {
            transform: scale(1.1);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(40, 167, 69, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .play-button:hover {
            background: var(--primary-green);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .episode-content {
            padding: 2rem;
        }

        .episode-category {
            color: var(--primary-green);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .episode-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        /* Platforms Section */
        .platforms-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(45, 90, 61,0.8), rgba(45, 90, 61,0.8)),
            url("../images/Rectangle\ 1058.png") center/cover;
            color: white;
        }

        .platform-card {
            background: var(--primary-green);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            cursor: pointer;
        }

        .platform-card:hover {
            background: #218838;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(40, 167, 69, 0.3);
        }

        .platform-card i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: white;
        }

        .platform-card h5 {
            color: white;
            font-weight: 600;
            margin: 0;
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: white;
            text-align: center;
            padding: 1rem 0 5px;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .episode-content {
                padding: 1.5rem;
            }
            
            .platform-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .btn-primary-custom {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: white;
        }

        .stat-item {
            text-align: center;
            margin-bottom: 2rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 500;
        }

        .about-image img {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        /* Social Section */
        .social-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .social-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .social-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .social-card i {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .social-card h5 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .social-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .btn-outline-primary {
            border-color: var(--primary-green);
            color: var(--primary-green);
        }

        .btn-outline-primary:hover {
            background: var(--primary-green);
            border-color: var(--primary-green);
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: white;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-right: 1rem;
            margin-top: 0.25rem;
        }

        .contact-item h5 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-item p {
            color: var(--text-light);
            margin: 0;
        }

        .contact-form {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 20px;
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
        }

        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        /* Episodes Modal Styles */
        .modal-xl {
            max-width: 1200px;
        }

        .search-container .input-group-text {
            background: var(--primary-green);
            color: white;
            border: none;
        }

        .search-container .form-control {
            border-left: none;
            padding: 12px 15px;
        }

        .search-container .form-control:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
        }

        .filter-buttons .btn {
            margin-right: 10px;
            margin-bottom: 10px;
            border-radius: 25px;
            padding: 8px 20px;
        }

        .filter-buttons .btn.active {
            background: var(--primary-green);
            border-color: var(--primary-green);
            color: white;
        }

        .episodes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            max-height: 600px;
            overflow-y: auto;
        }

        .episode-modal-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .episode-modal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .episode-modal-image {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .episode-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .episode-modal-card:hover .episode-modal-image img {
            transform: scale(1.05);
        }

        .episode-modal-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: rgba(40, 167, 69, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .episode-modal-play:hover {
            background: var(--primary-green);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .episode-modal-content {
            padding: 1.5rem;
        }

        .episode-modal-category {
            color: var(--primary-green);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .episode-modal-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .episode-modal-description {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .episode-modal-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .episode-duration {
            background: var(--light-gray);
            padding: 4px 8px;
            border-radius: 12px;
            font-weight: 500;
        }

        /* Live Stream Modal Styles */
        .live-stream-modal .modal-content {
            background: linear-gradient(135deg, var(--dark-bg), #2d5a3d);
            color: white;
            border: none;
            border-radius: 20px;
        }

        .live-stream-modal .modal-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem 2rem 1rem;
        }

        .live-stream-modal .modal-body {
            padding: 2rem;
        }

        .live-stream-modal .btn-close {
            filter: invert(1);
        }

        .live-player-container {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .live-status {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .live-status .live-dot {
            width: 12px;
            height: 12px;
            background: #ff4444;
            border-radius: 50%;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }

        .live-status span {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ff4444;
        }

        .current-show {
            margin-bottom: 2rem;
        }

        .current-show h4 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .current-show p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        .audio-player {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .player-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .play-btn {
            width: 60px;
            height: 60px;
            background: var(--primary-green);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            background: #218838;
            transform: scale(1.1);
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .volume-slider {
            width: 100px;
            height: 5px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 5px;
            outline: none;
            cursor: pointer;
        }

        .volume-slider::-webkit-slider-thumb {
            appearance: none;
            width: 15px;
            height: 15px;
            background: var(--primary-green);
            border-radius: 50%;
            cursor: pointer;
        }

        .listener-count {
            text-align: center;
            margin-bottom: 2rem;
        }

        .listener-count i {
            color: var(--primary-green);
            margin-right: 0.5rem;
        }

        .chat-section {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            max-height: 300px;
            overflow-y: auto;
        }

        .chat-message {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 0.8rem;
            margin-bottom: 0.8rem;
        }

        .chat-message .username {
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .chat-input {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .chat-input input {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 0.8rem 1rem;
            color: white;
        }

        .chat-input input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .chat-input button {
            background: var(--primary-green);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: white;
            cursor: pointer;
        }


        /* Responsive adjustments */
        @media (max-width: 768px) {
            .episodes-grid {
                grid-template-columns: 1fr;
                max-height: 500px;
            }
            
            .filter-buttons {
                text-align: center;
            }
            
            .filter-buttons .btn {
                margin: 5px;
                font-size: 0.9rem;
                padding: 6px 15px;
            }

            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .episode-content {
                padding: 1.5rem;
            }
            
            .platform-card {
                padding: 1.5rem;
            }

            .live-stream-modal .modal-body {
                padding: 1rem;
            }

            .current-show h4 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .btn-primary-custom {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }