:root {
    --bg-color: #000000;
    --secondary-bg: #0d0d0d;
    --accent-red: #d32f2f;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --tag-bg: #ff0000;
    --border-color: #333333;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-btn {
    width: 30px;
    height: 30px;
    background-color: var(--tag-bg);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.menu-btn div {
    width: 18px;
    height: 2px;
    background-color: white;
    margin: 2px 0;
}

.logo {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--text-white);
}

.logo-icon {
    color: var(--tag-bg);
    margin: 0 5px;
    font-size: 22px;
}

.search-icon {
    font-size: 20px;
    cursor: pointer;
}

/* Latest Video Bar */
.latest-video-bar {
    text-align: center;
    padding: 15px 10px;
    background-color: #050505;
}

.latest-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 5px 15px;
    border: none;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.latest-title {
    font-size: 14px;
    color: var(--text-white);
    display: block;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px;
    font-size: 13px;
    color: var(--text-gray);
}

.breadcrumbs span {
    margin: 0 5px;
}

.breadcrumbs a {
    color: var(--text-gray);
    text-decoration: none;
}

.breadcrumbs .current {
    color: var(--text-white);
    font-weight: bold;
}

/* Video Section */
.video-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    position: relative;

}

video {
    display:block;
    height: 90vw;
}


.video-overlay-controls {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background: #000;
}

.control-icon {
    color: var(--text-white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
}

.video-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    background: #000;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.toggle-switch {
    width: 40px;
    height: 20px;
    background: #444;
    border-radius: 10px;
    position: relative;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #888;
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

/* Video Info */
.video-info {
    padding: 15px;
}

.tags {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.tag {
    background-color: var(--tag-bg);
    color: white;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 2px;
    text-transform: uppercase;
}

.main-title {
    font-size: 22px;
    font-weight: bold;
    margin: 5px 0;
    line-height: 1.2;
}

.video-stats {
    display: flex;
    gap: 15px;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 10px;
}

/* Stars Section */
.section-header {
    display: flex;
    align-items: center;
    padding: 15px;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}

.red-dot {
    width: 6px;
    height: 6px;
    background-color: var(--tag-bg);
    border-radius: 50%;
    margin-left: 8px;
}

.star-profile {
    display: flex;
    padding: 0 15px 20px;
    gap: 15px;
    align-items: center;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    background: #333;
}

.star-details .name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
}

.star-stats {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Related Videos */
.related-videos {
    padding: 15px;
}
.video-card {
    margin-bottom: 25px;
    text-decoration: none;
    display: block;
    color: inherit;
}

.thumbnail-container {
    width: 100%;
    position: relative;
    aspect-ratio: 16/9;
    background: #111;
    margin-bottom: 10px;
}

.thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-tags {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    display: flex;
    gap: 10px;
}

/* Icons placeholder */
.icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}

.icon-like { background-color: #888; }
.icon-dislike { background-color: #888; }
.icon-share { background-color: #888; }