:root {
    --seyir-primary: #FFBA38;
    --seyir-secondary: #EA6630;
    --seyir-dark: #141414;
    --seyir-dark-2: #2B2C46;
    --seyir-text: #FFFFFF;
    --seyir-text-muted: #878585;
    --seyir-border: #3D3D3D;
}

.body {
    background-color: var(--seyir-dark);
    color: var(--seyir-text);
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 24px;
    background-color: var(--seyir-dark-2);
    border-bottom: 1px solid var(--seyir-border);
}

.header__left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 24px;
}

.header__nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--seyir-text);
    padding: 8px 0;
    position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--seyir-primary);
}

.header__nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--seyir-primary);
}

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--seyir-border);
    border-radius: 24px;
    color: var(--seyir-text);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header__search-btn:hover {
    border-color: var(--seyir-primary);
    color: var(--seyir-primary);
}

.header__search-btn img {
    width: 18px;
    height: 18px;
}

.header__search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.header__search-input {
    position: absolute;
    right: 100%;
    width: 0;
    padding: 10px 16px;
    background: var(--seyir-dark-2);
    border: 1px solid var(--seyir-border);
    border-radius: 24px;
    color: var(--seyir-text);
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    width: 0;
}

.header__search-form:focus-within .header__search-input {
    width: 200px;
    opacity: 1;
}

.header__login-btn {
    display: flex;
    align-items: center;
    padding: 12px 28px;
    background-color: var(--seyir-secondary);
    border-radius: 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.header__login-btn:hover {
    background-color: #d55a25;
    color: #fff;
}

.header__profile-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--seyir-primary);
    cursor: pointer;
    border: none;
}

.header__profile-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__profile-avatar span {
    font-size: 16px;
    font-weight: 700;
    color: var(--seyir-dark);
}

.header__profile-menu {
    background-color: var(--seyir-dark-2);
    border: 1px solid var(--seyir-border);
    border-radius: 16px;
    padding: 8px;
    min-width: 220px;
}

.header__profile-info {
    padding: 8px 12px;
}

.header__profile-name {
    display: block;
    font-weight: 600;
    color: var(--seyir-text);
}

.header__profile-email {
    display: block;
    font-size: 13px;
    color: var(--seyir-text-muted);
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background-color: var(--seyir-dark-2);
    border-right: 1px solid var(--seyir-border);
    overflow-y: auto;
    z-index: 50;
}

.sidebar__head {
    padding: 20px;
    border-bottom: 1px solid var(--seyir-border);
}

.sidebar__logo img {
    height: 36px;
    width: auto;
}

.sidebar__content {
    padding: 16px 0;
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
}

.sidebar__nav li {
    list-style: none;
}

.sidebar__nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: var(--seyir-text);
    font-size: 15px;
    transition: all 0.3s ease;
}

.sidebar__nav a:hover,
.sidebar__nav li.active a {
    background-color: rgba(255, 186, 56, 0.1);
    color: var(--seyir-primary);
}

.sidebar__nav svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.main {
    margin-left: 260px;
    min-height: 100vh;
}

.main__content {
    padding: 24px;
}

.footer {
    padding: 24px 0;
    border-top: 1px solid var(--seyir-border);
    margin-top: 48px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copyright {
    font-size: 14px;
    color: var(--seyir-text-muted);
}

.footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__link {
    font-size: 14px;
    color: var(--seyir-text-muted);
}

.footer__link:hover {
    color: var(--seyir-primary);
}

.botbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--seyir-dark-2);
    border-top: 1px solid var(--seyir-border);
    padding: 8px 0;
    z-index: 100;
}

.botbar__content {
    display: flex;
    justify-content: space-around;
}

.botbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    color: var(--seyir-text-muted);
    font-size: 11px;
}

.botbar__item:hover,
.botbar__item.active {
    color: var(--seyir-primary);
}

.botbar__item svg {
    width: 22px;
    height: 22px;
}

.episode-section {
    margin-top: 32px;
}

.episode-section__tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--seyir-border);
}

.episode-section__tab {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--seyir-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.episode-section__tab.active {
    color: var(--seyir-primary);
}

.episode-section__tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--seyir-primary);
}

.episode-section__seasons {
    margin-bottom: 24px;
}

.episode-section__season-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.episode-section__season-btn {
    padding: 10px 24px;
    background-color: var(--seyir-text-muted);
    border-radius: 21px;
    color: var(--seyir-text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.episode-section__season-btn.active,
.episode-section__season-btn:hover {
    background-color: var(--seyir-primary);
    color: var(--seyir-dark);
}

.episode-item {
    display: flex;
    gap: 20px;
    padding: 16px;
    background-color: var(--seyir-dark-2);
    border-radius: 12px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.episode-item:hover {
    background-color: rgba(255, 186, 56, 0.1);
}

.episode-item__thumbnail {
    position: relative;
    width: 180px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.episode-item__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-item__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 186, 56, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.episode-item__play img {
    width: 20px;
    height: 20px;
}

.episode-item__number {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--seyir-primary);
    color: var(--seyir-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.episode-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.episode-item__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--seyir-text);
    margin: 0 0 8px 0;
}

.episode-item__description {
    font-size: 14px;
    color: var(--seyir-text-muted);
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-item__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.episode-item__duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--seyir-text-muted);
}

.episode-item__duration img {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .main {
        margin-left: 0;
    }

    .sidebar {
        display: none;
    }

    .episode-item__thumbnail {
        width: 120px;
        height: 70px;
    }
}