/* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #E8F5E9; /* Light Green Tint */
        }

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

        /* Header styles */
        header {
            padding: 2rem 0;
            background-color: #009F82;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .logo img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
        }

        .slogan {
            font-style: italic;
            font-size: 1.75rem;
            max-width: 400px;
            text-align: center;
            line-height: 1.4;
            margin-left: 1rem;
            color: #F4F4F4; /* Soft White */
        }

        /* Search bar styles */
        .search-container {
            padding: 1.5rem 0;
        }

        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            border: 2px solid #004D40; /* Deep Teal */
        }

        /* Hosts section */
        .hosts-section {
            padding: 3rem 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #004D40; /* Deep Teal */
        }

        .hosts-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .host-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 300px;
            text-align: center;
        }

        .host-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 5px solid #FFB400;
        }

        .host-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #009578; /* Teal Green */
        }

        .host-bio {
            font-size: 0.9rem;
            color: #555;
        }

        /* Socials section */
        .socials-section {
            padding: 3rem 0;
            background-color: #F4F4F4; /* Light gray background */
        }

        .socials-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background-color: #E4405F; /* Instagram brand color */
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .social-link:hover {
            background-color: #C73650; /* Darker Instagram color on hover */
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .social-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* Episodes section */
        .episodes-section {
            padding: 3rem 0;
            background-color: #E8F5E9;
        }

        .episodes-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .episode-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .episode-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .episode-number {
            font-size: 1.2rem;
            font-weight: bold;
            color: #009577;
        }

        .episode-date {
            color: #777;
            font-size: 0.9rem;
        }

        .episode-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .episode-description {
            color: #555;
            word-wrap: break-word;
        }

        .episode-actions {
            display: flex;
            gap: 1rem;
        }

        .episode-button {
            padding: 0.5rem 1rem;
            background-color: #009577;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .episode-button:hover {
            background-color: #007A5F;
        }

        /* Loading styles */
        .loading-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 300px;
            width: 100%;
        }
        
        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(0, 0, 0, 0.2);
            border-top: 4px solid #333;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Footer styles */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .social-link {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 1rem;
            }
            
            .hosts-container {
                flex-direction: column;
                align-items: center;
            }
            
            .host-card {
                margin-bottom: 2rem;
            }
            
            .logo img {
                width: 150px;
                height: 150px;
            }
            
            .search-form {
                flex-direction: column;
                padding: 0 1rem;
            }
            
            .search-input {
                border-radius: 4px;
                margin-bottom: 0;
            }
        }