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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #082341 0%, #305d69 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 180px 180px;
    background-repeat: repeat;
    opacity: 0.08;
    transform: rotate(-15deg) scale(1.5);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

header {
    padding: 40px 0 15px;
    text-align: center;
    position: relative;
}

.logo {
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #5c9484 0%, #ecf6f1 100%);
    color: #082341;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 25px 0;
    position: relative;
    z-index: 1;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(92, 148, 132, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
    animation: morphGlow 4s ease-in-out infinite;
}

@keyframes morphGlow {
    0%, 100% {
        width: 120%;
        height: 180%;
        opacity: 0.7;
    }
    25% {
        width: 150%;
        height: 200%;
        opacity: 1;
    }
    50% {
        width: 130%;
        height: 220%;
        opacity: 0.8;
    }
    75% {
        width: 160%;
        height: 190%;
        opacity: 0.9;
    }
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 0 60px 0;
}

.hero-section {
    text-align: center;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #efbf3;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #b8d0cc;
    font-weight: 300;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #5c9484 0%, #ecf6f1 100%);
    margin: 50px auto;
}

.podcast-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(184, 208, 204, 0.2);
    border-radius: 12px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.podcast-section h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #eff6ef;
    font-weight: 600;
}

.podcast-host {
    font-size: 1.1rem;
    color: #b8d0cc;
    margin-bottom: 30px;
    font-style: italic;
}

.podcast-details {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.podcast-description {
    color: #b8d0cc;
    line-height: 1.8;
    font-size: 1.05rem;
}

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(184, 208, 204, 0.2);
    margin-top: 60px;
}

footer p {
    color: #b8d0cc;
    font-size: 0.9rem;
}

.coming-soon {
    display: inline-block;
    background: linear-gradient(135deg, #5c9484 0%, #305d69 100%);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .podcast-section {
        padding: 30px 20px;
    }

    .podcast-section h2 {
        font-size: 1.75rem;
    }

    .logo {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 20px 0;
    }

    h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .podcast-section h2 {
        font-size: 1.5rem;
    }
}

