#id_comment{
    width: 100%;
    height: 50px;
    background-color: #1e2a36;
    color: floralwhite;
    border-radius: 10px;

}
.comment{
    margin-left: 10px;
    background-color: #69007833;
    border-radius: 10px;
    padding-left: 1px;
    padding-bottom: 1px;
}
.comment-username{
    color: #e9657b;
}
#comment-btn{
    display: inline-block;
    object-fit: contain;
    padding: 2px;
    border-radius: 2px;
    background-color: floralwhite;
    color: black;
}
#comment-btn:hover{
    cursor: pointer;
}
#sign-in-btn{
    background-color: floralwhite;
    height: fit-content;
    width: fit-content;
    font-size: 12px;
    border-radius: 10px;
}
#share-site-box{
    display: block;
    position: fixed;
    width: 80%;
    height: 300px;
    z-index:3;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    background:black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#share-site-box img{
    width: 100%;
    margin: 0;
}
#share-link{
    color: #A6AC82;
    margin-right:10px;
}
#close-share{
    color:grey;
}
#share-site-box div{
    background:#000000;
    color:floralwhite;
}

/* Responsive video detail layout */
#video-box {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #050609;
    border-radius: 14px 14px 0 0;
    aspect-ratio: 16 / 9;
}

#video-box video,
#video-id,
#video-id_fluid_controls_container {
    display: block;
    width: 100% !important;
    max-width: 100%;
    height: 100% !important;
    margin: 0;
    object-fit: contain;
    background: #050609;
}

#misc-content {
    margin: 0 0 20px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
}

#page_video_title {
    margin: 0 0 14px;
    font-size: clamp(20px, 5vw, 30px);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.social-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 14px;
}

.social-btns li {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
}

#tagline ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

#tagline .tags {
    margin: 0;
    padding: 0;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
}

#tagline .tags a {
    padding: 7px 11px;
}

#tagline .tags p {
    margin: 0;
}

#comment-section {
    margin: 20px 0 34px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

#comment-section h4 {
    margin: 0 0 12px;
    font-size: 20px;
}

#id_comment {
    min-height: 88px;
    padding: 12px;
    resize: vertical;
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
}

#id_comment:focus {
    border-color: rgba(236, 59, 131, 0.7);
    box-shadow: 0 0 0 3px rgba(236, 59, 131, 0.14);
}

#comment-btn,
#sign-in-btn {
    min-height: 40px;
    margin-top: 10px;
    padding: 8px 14px;
    background: var(--accent);
    border: 0;
    border-radius: 9px;
    color: white;
    font-weight: 700;
}

.comment {
    margin: 12px 0 0;
    padding: 12px;
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.comment p {
    margin: 0;
}

.comment-username {
    margin-bottom: 4px !important;
    font-weight: 700;
    color: var(--accent);
}

#more-content-header {
    margin: 24px 0 14px;
    font-size: clamp(22px, 5vw, 30px);
}

#share-site-box {
    width: min(420px, calc(100% - 32px));
    height: auto;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

#share-site-box img {
    display: block;
    max-height: 190px;
    object-fit: cover;
}

#share-site-box p {
    padding: 0 16px;
}

#share-site-box div {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 16px 16px;
    background: transparent;
}

@media (max-width: 719px) {
    #content-box {
        width: calc(100% - 16px);
    }

    #video-box {
        border-radius: 10px 10px 0 0;
    }

    #misc-content,
    #comment-section {
        padding: 13px;
    }
}
@media screen and (min-width: 720px) {
  #share-site-box {
    width:400px;
  }
}
