body {
    background-color: #0F172A;
    overflow-y: visible;
}

.header-auth{
    display: none !important;
}


/* PAGE CENTERING */

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* WRAPPER THAT DEFINES WIDTH */

.content-wrapper {
    width: min(950px, 90vw);
    display: flex;
    flex-direction: column;
}


/* BACK BUTTON */

.back-btn {
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #334155;
    height: 2.5rem;
    width: 11rem;
    font-size: 1.1rem;
    font-family: sans-serif;
    border-radius: 10px;
    text-decoration: none;
    justify-content: center;
    margin: 2.2rem 0;
}

.back-btn:hover {
    border: 2px solid #6366F1;
}


/* VIDEO BOX */

.video-box {
    background-color: #0c2b52;
    height: 80vh;
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    border: 1px solid #6366F1;
    padding: 2rem;
    gap: 1.5rem;
    margin-bottom: 4rem;
}


/* VIDEO HEADER */

.video-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.video-header h1 {
    color: white;
    font-family: sans-serif;
    font-size: 2rem;
    margin: 0;
}


/* VIDEO */

.video-wrapper {
    width: 100%;
    flex: 1;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


/* INFO LIST */

.video-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-item p {
    color: #F1F5F9;
    margin: 0;
    font-family: sans-serif;
}


/* DOTS */

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot1 {
    background: #6366F1;
}

.dot2 {
    background: #06B6D4;
}

.dot3 {
    background: #F97316;
}