@font-face {
    font-family: 'IRANSharp';
    src: url('fonts/eot/iransharp_bold_web.eot');
    src: url('fonts/eot/iransharp_bold_web.eot?#iefix') format('embedded-opentype'),
         url('fonts/woff2/iransharp_bold_web.woff2') format('woff2'),
         url('fonts/woff/iransharp_bold_web.woff') format('woff'),
         url('fonts/ttf/iransharp_bold_web.ttf') format('truetype'),
         url('fonts/svg/iransharp_bold_web.svg#IRANSharp') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'IRANSharp';
    src: url('fonts/eot/iransharp_regular_web.eot');
    src: url('fonts/eot/iransharp_regular_web.eot?#iefix') format('embedded-opentype'),
         url('fonts/woff2/iransharp_regular_web.woff2') format('woff2'),
         url('fonts/woff/iransharp_regular_web.woff') format('woff'),
         url('fonts/ttf/iransharp_regular_web.ttf') format('truetype'),
         url('fonts/svg/iransharp_regular_web.svg#IRANSharp') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IRANSharp';
    src: url('fonts/eot/iransharp_light_web.eot');
    src: url('fonts/eot/iransharp_light_web.eot?#iefix') format('embedded-opentype'),
         url('fonts/woff2/iransharp_light_web.woff2') format('woff2'),
         url('fonts/woff/iransharp_light_web.woff') format('woff'),
         url('fonts/ttf/iransharp_light_web.ttf') format('truetype'),
         url('fonts/svg/iransharp_light_web.svg#IRANSharp') format('svg');
    font-weight: 300;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IRANSharp', sans-serif;
    background: #0a0e17;
    color: #fff;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header h1 {
    font-size: 24px;
    margin-bottom: 30px;
}

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.podcast-card {
    background: #1a2332;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.podcast-card:hover {
    transform: translateY(-5px);
}

.podcast-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.podcast-card h2 {
    font-size: 18px;
    color: #00FF89;
    margin-bottom: 10px;
}

.label {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 8px;
}

.description {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

.back-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 16px;
}

.detail-card {
    background: #1a2332;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.detail-card img {
    width: 200px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.detail-card h1 {
    font-size: 22px;
    color: #00FF89;
    margin-bottom: 10px;
}

.episodes-card {
    background: #1a2332;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.episodes-card h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.episode-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #2d3748;
    cursor: pointer;
}

.episode-item:last-child {
    border-bottom: none;
}

.play-btn {
    background: transparent;
    border: none;
    color: #00FF89;
    cursor: pointer;
    padding: 5px;
}

.episode-item.playing .play-btn svg {
    display: none;
}

.episode-item.playing .play-btn::after {
    content: '⏸';
    font-size: 24px;
}

.author-card {
    background: #1a2332;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.author-card strong {
    color: #00FF89;
}
