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

body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
    background: #ffecb3;
    background-image: radial-gradient(#ffd54f 20%, transparent 20%), radial-gradient(#ffd54f 20%, transparent 20%);
    background-position: 0 0, 50px 50px;
    background-size: 100px 100px;
    color: #443300;
    min-height: 100vh;
    line-height: 1.6;
}

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

.powered-by {
    text-align: center;
    padding: 12px;
    background: #4dd0e1;
    border-bottom: 5px solid #00acc1;
}

.powered-by span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
}

.powered-by a {
    color: #ffff00;
    text-decoration: none;
    font-weight: 900;
    margin-left: 5px;
    text-shadow: 2px 2px #000;
    font-size: 1.2rem;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border: 6px solid #443300;
    border-radius: 40px;
    margin-bottom: 30px;
    box-shadow: 10px 10px 0px #443300;
}

.podcast-logo {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 10px;
}

h1 {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0px #ffc107;
}

.subtitle {
    color: #795548;
    font-size: 1.3rem;
    font-weight: bold;
}

.hosts {
    color: #ff5722;
    font-size: 1.1rem;
    font-weight: bold;
}

.player-section {
    background: #ffffff;
    border-radius: 40px;
    padding: 30px;
    margin-bottom: 30px;
    border: 6px solid #443300;
    box-shadow: 10px 10px 0px #443300;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.album-art {
    width: 100px;
    height: 100px;
    background: #e91e63;
    border: 4px solid #443300;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    flex-shrink: 0;
    transform: rotate(-5deg);
}

.track-info h2 {
    font-size: 1.8rem;
    color: #443300;
}

.duration {
    color: #e91e63;
    font-size: 1.2rem;
    font-weight: 900;
}

.audio-player {
    background: #f1f8e9;
    border: 4px solid #443300;
    border-radius: 30px;
    padding: 20px;
}

.progress-container {
    width: 100%;
    height: 20px;
    background: #ffffff;
    border: 3px solid #443300;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #8bc34a;
    width: 0%;
}

.time-display {
    font-weight: bold;
    color: #33691e;
    margin: 10px 0;
}

.controls {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.control-btn {
    background: #ffc107;
    border: 3px solid #443300;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    font-size: 1.5rem;
    box-shadow: 4px 4px 0px #443300;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: #e91e63;
    color: white;
}

.transcript-section {
    background: #ffffff;
    border: 6px solid #443300;
    border-radius: 40px;
    box-shadow: 10px 10px 0px #443300;
    overflow: hidden;
}

.transcript-header {
    background: #4dd0e1;
    padding: 20px;
    border-bottom: 6px solid #443300;
}

.transcript-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    text-shadow: 2px 2px #443300;
}

.transcript-btn {
    background: #ffffff;
    border: 3px solid #443300;
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: bold;
    box-shadow: 3px 3px 0px #443300;
}

.transcript-btn.active {
    background: #e91e63;
    color: white;
}

.transcript-segment {
    padding: 15px;
    margin: 10px;
    border: 3px solid transparent;
}

.transcript-segment.active {
    background: #fff9c4;
    border: 3px solid #ffc107;
    border-radius: 20px;
    transform: scale(1.02);
}

.speaker {
    color: #e91e63;
    font-size: 1.2rem;
}

.text {
    font-size: 1.1rem;
    color: #443300;
}

footer {
    padding: 40px;
    font-weight: bold;
    color: #795548;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .now-playing {
        flex-direction: column;
        text-align: center;
    }

    .controls {
        gap: 10px;
    }

    .control-btn {
        width: 50px;
        height: 50px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }
}
