* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #fff;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}


.main-content {
    flex: 3;
    position: relative;
    background: 
                url('devl.webp') center/cover; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.logo-text {
    font-size: 80px;
    color: #cc0000;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 0;
}

.subtitle {
    font-size: 20px;
    letter-spacing: 10px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.meta-info {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    color: #ccc;
}

.imdb {
    color: #f5c518;
    font-weight: bold;
}

.genres span, .tags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 14px;
}

.summary {
    max-width: 500px;
    margin: 30px 0;
    line-height: 1.6;
    color: #ddd;
}

.summary h3, .cast h3 {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: bold;
}

.icon-group i {
    margin-left: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    cursor: pointer;
}


.sidebar {
    flex: 1;
    background-color: rgba(15, 15, 15, 0.95);
    padding: 30px 20px;
    border-left: 1px solid #333;
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #888;
    font-size: 14px;
}

.search-bar {
    position: relative;
    margin-bottom: 30px;
}

.search-bar input {
    width: 100%;
    background: #222;
    border: none;
    padding: 12px;
    border-radius: 25px;
    color: white;
}

.search-bar i {
    position: absolute;
    right: 15px;
    top: 12px;
    color: #555;
}

.episode-card {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.episode-card:hover, .episode-card.active {
    background: rgba(255, 255, 255, 0.05);
}

.ep-img {
    width: 100px;
    height: 60px;
    background-size: cover;
    border-radius: 5px;
}

.ep-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.ep-info p {
    font-size: 12px;
    color: #666;
}