body {
  background-color: #FFF0F5;
  color: #592E40;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #FFF0F5; border-left: 1px solid #592E40; }
::-webkit-scrollbar-thumb { background-color: #FF9FCA; border: 2px solid #FFF0F5; border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background-color: #FF6B9D; }

.hand-border { border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px; }
.hand-border-sm { border-radius: 25px 5px 25px 5px / 5px 25px 5px 25px; }
a
.hyphen-auto {
  hyphens: auto;
  word-break: break-word;
}

#app-loader {
    position: fixed; inset: 0; background: #FFF0F5; z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}

.marker-range {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    background-color: rgba(250, 204, 21, 0.5); 
    border-bottom: 3px solid #EAB308; 
    z-index: 20;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.marker-range:hover {
    background-color: rgba(250, 204, 21, 0.8);
    z-index: 30;
}

.marker-range.active-marker {
    background-color: rgba(255, 107, 157, 0.4); 
    border-bottom-color: #BE185D;
    opacity: 1;
}

.marker-range:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 150%; 
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    color: #592E40;
    padding: 6px 12px;
    border-radius: 8px; 
    font-size: 14px;
    font-family: 'Patrick Hand', cursive;
    font-weight: bold;
    white-space: nowrap;
    pointer-events: none;
    z-index: 40;
    border: 2px solid #592E40;
    box-shadow: 3px 3px 0px 0px rgba(89, 46, 64, 0.2);
    animation: pop-tooltip 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.marker-range:hover::before {
    content: '';
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #592E40 transparent transparent transparent;
    z-index: 39;
    opacity: 0;
    animation: fade-tooltip 0.1s 0.1s forwards; 
}

@keyframes pop-tooltip {
    from { opacity: 0; transform: translateX(-50%) scale(0.8) translateY(5px); }
    to { opacity: 1; transform: translateX(-50%) scale(1) translateY(0); }
}
@keyframes fade-tooltip { to { opacity: 1; } }


.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: black;
    overflow: hidden;
}

.player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; 
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background-color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover.hidden-cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}