

.no-data-container {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(15px, 1.1vw, 17px);
}

.no-data-container-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    font-size: clamp(13px, 1.1vw, 15px);
}

.rating {
    color: #f5c518;
}

.shiori-rating {
    color: #ff4d6d;
}

.no-data-msg {
    margin: 0;
    color: inherit;
    font-size: inherit;
}

.media-detail-container {
    display: flex;
    gap: clamp(20px, 4vw, 60px);
    margin-bottom: 20px;
    
    align-items: flex-start;
    
    animation: fadeIn 0.4s ease;
    width: 100%;
    min-height: 800px;
    
}

.media-poster {
    flex: 0 0 clamp(260px, 25vw, 340px);
    
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.media-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--glass-border);
}

.poster-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-top: 0;
    width: 100%;
}

.fav-btn-action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: clamp(10px, 1.2vw, 14px) clamp(10px, 2vw, 28px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: clamp(13px, 1vw, 15px);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.fav-btn-action:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.fav-btn-action.active {
    background: rgba(255, 77, 109, 0.15);
    border-color: #ff4d6d;
    color: #ff4d6d;
    box-shadow: 0 0 15px rgba(255, 77, 109, 0.3);
}

.fav-btn-action i {
    font-size: 1.1rem;
}


.media-links-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
    
}

.links-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.link-divider {
    color: rgba(255, 255, 255, 0.15);
}


.btn-trailer {
    width: 100%;
    padding: clamp(10px, 1.2vw, 14px) clamp(10px, 2vw, 28px);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(13px, 1vw, 15px);
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-trailer:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.poster-actions .btn-report-data-premium {
    width: 100%;
}

.media-carousel {
    padding: 10px 5px 25px 0px;
}


.media-info {
    flex: 1;
    min-width: 0;
    
    background: var(--glass-bg);
    padding: clamp(20px, 4vw, 50px);
    
    border-radius: 32px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    
    transform: translateZ(0);
    will-change: transform;
}

.media-info h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.2;
    display: block;
    
}

.detail-year {
    color: var(--text-muted);
    font-weight: 300;
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-left: 10px;
    display: inline;
    
    vertical-align: baseline;
    white-space: nowrap;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    
    gap: clamp(15px, 2vw, 30px);
    margin-bottom: 40px;
    padding: clamp(15px, 2vw, 25px);
    
    background: rgba(255, 255, 255, 0.04);
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    
    transform: translateZ(0);
    will-change: transform, opacity;
}

.detail-meta p {
    margin-bottom: 0;
    font-size: clamp(13px, 1.25vw, 15px);
    color: var(--text-muted);
}

.detail-meta strong {
    color: var(--text-main);
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-overview {
    margin-bottom: 40px;
}

.detail-overview p:first-child {
    margin-bottom: 0px;
}

.detail-overview p strong {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
    
}

.overview-text {
    line-height: clamp(1.6, 1.8vw, 1.8);
    color: #ddd;
    font-size: clamp(15px, 1.1vw, 17px);
    font-weight: 400;
}


.collection-dropdown {
    position: relative;
    width: 100%;
}

#collection-toggle {
    width: 100%;
    padding: clamp(10px, 1.2vw, 14px) clamp(10px, 2vw, 28px);
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: clamp(13px, 1vw, 15px);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
}

#collection-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.5);
}

#collection-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 100;
    animation: dropdownFade 0.3s ease;
    box-sizing: border-box;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.collection-option {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-muted);
    padding: clamp(8px, 1.1vw, 12px) clamp(12px, 1.5vw, 18px);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-weight: 500;
}

.collection-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 22px;
}

.collection-option.active {
    background: var(--primary-gradient);
    color: white;
}


.detail-season-preview {
    animation: fadeIn 0.4s ease;
    width: 100%;
}

.season-header h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    
}

.season-card-full {
    display: flex;
    gap: clamp(15px, 3vw, 25px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(15px, 2.5vw, 25px);
    backdrop-filter: blur(15px);
    transition: var(--transition);
    align-items: flex-start;
}

.season-poster-mini {
    flex: 0 0 clamp(100px, 15vw, 135px);
    height: clamp(145px, 21vw, 195px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.season-poster-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    transform: translateZ(0);
}

.season-info-mini {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.season-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(4px, 1vw, 8px);
    width: 100%;
    gap: clamp(8px, 1.5vw, 15px);
    
    
}

.season-title-row h3 {
    font-size: clamp(0.95rem, 1.6vw, 1.5rem);
    
    color: #fff;
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    
}

.season-rating {
    background: rgba(255, 69, 0, 0.1);
    color: var(--primary);
    padding: clamp(4px, 0.6vw, 6px) clamp(8px, 1vw, 14px);
    border-radius: 50px;
    font-weight: 800;
    font-size: clamp(11px, 0.8vw, 13px);
    
    border: 1px solid rgba(255, 69, 0, 0.25);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    
}

.season-rating i {
    font-size: 0.75rem;
}

.season-meta-mini {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    font-size: clamp(12.5px, 1.1vw, 14.5px);
    font-weight: 600;
    color: #fff;
    opacity: 0.95;
    flex-wrap: wrap;
    
}

.season-year strong {
    font-weight: 700;
}

.season-ep-count {
    color: var(--primary);
    
}

.season-dot {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.2rem;
    line-height: 1;
}

.season-overview-mini {
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    display: block;
    
}


.detail-watch {
    margin-bottom: 40px;
}

.detail-watch p:first-child {
    margin-bottom: 10px;
    
    color: var(--primary);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
}

.platform-icons-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
    width: 100%;
}

.platform-circle-detail {
    min-width: 60px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 5px 12px;
}

.platform-circle-detail svg {
    width: 100%;
    height: 100%;
    max-width: 45px;
}

.no-region-msg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.no-region-msg a {
    color: var(--primary);
    text-decoration: underline;
}


.detail-cast {
    margin-bottom: 20px;
}

.detail-cast h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    
}

.cast-scroll-container {
    display: flex;
    gap: clamp(15px, 2vw, 25px);
    overflow-x: auto;
    padding: 15px 5px 10px 5px;
    
    scroll-behavior: smooth;
    width: 100%;
    
    transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    
    -webkit-transform: rotateX(180deg);
    
}


.cast-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.cast-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.cast-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.cast-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 clamp(85px, 10vw, 105px);
    
    transform: rotateX(180deg) translateZ(0);
    -ms-transform: rotateX(180deg) translateZ(0);
    -webkit-transform: rotateX(180deg) translateZ(0);
}

.cast-avatar {
    width: clamp(80px, 10vw, 100px);
    height: clamp(80px, 10vw, 100px);
    border-radius: 50%;
    margin-bottom: 12px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.cast-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cast-card .name {
    display: block;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    text-decoration: none;
    line-height: 1.25;
}

.cast-card .role {
    display: block;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    color: var(--text-muted);
    line-height: 1.3;
}


.detail-keywords {
    margin-top: 50px;
}

.detail-keywords p:first-child {
    margin-bottom: 0px;
}

.detail-keywords p strong {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
    
}

.keywords-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keyword-tag {
    font-size: clamp(11px, 0.8vw, 13px);
    padding: clamp(4px, 0.6vw, 6px) clamp(10px, 1vw, 14px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
    border-radius: 100px;
    transition: var(--transition);
    text-decoration: none;
    text-transform: capitalize;
}

.keyword-tag:hover {
    background: rgba(255, 69, 0, 0.1);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}


.no-avatar {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #555;
    font-size: 2.5rem;
}

.no-data-msg {
    margin: 0;
    text-transform: none;
    color: var(--text-muted);
}






.reviews-shiori-section {
    margin: 20px auto 20px;
    padding: clamp(30px, 5vw, 50px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.reviews-shiori-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.shiori-reviews-toolbar {
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start;
}

.reviews-shiori-header h2 {
    font-size: clamp(1.3rem, 2.5vw, 2.2rem) !important;
    margin: 0 !important;
    color: #fff !important;
    font-weight: 800;
}

.shiori-count {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 3px;
}


.btn-review-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
}

.btn-review-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.5);
}

.btn-review-muted {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.btn-review-muted:hover {
    background: rgba(255, 255, 255, 0.15);
}

.no-reviews-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.015);
    border: 2px dashed rgba(255, 255, 255, 0.04);
    border-radius: 25px;
}

.no-reviews-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.2;
}




.modal-overlay-shiori {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-container-glass {
    width: 95%;
    max-width: 480px;
    background: rgba(20, 20, 20, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 35px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
}

.btn-close-modal:hover {
    opacity: 1;
    transform: rotate(90deg);
}


.rating-display-header {
    text-align: center;
    margin-bottom: 10px;
}

#rating-value-shiori {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.rating-dynamic-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.range-shiori-container {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 360px;
    margin: 15px auto 30px;
    
}

.range-shiori-container i {
    color: var(--text-muted);
    opacity: 0.6;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
}

.range-shiori-container i:hover {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.2);
}

.range-shiori-wrapper {
    flex: 1;
    position: relative;
}

#rating-range-shiori {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

#rating-range-shiori::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 4px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}


.comment-group {
    margin-top: 30px;
}

.comment-group label {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 12px !important;
}

#review-comment {
    width: 100%;
    height: 180px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 18px;
    color: #fff;
    font-family: inherit;
    resize: none;
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


#shiori-review-form.has-alert #review-comment {
    height: 110px;
}

#review-comment:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
}

.char-counter {
    text-align: right;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 8px;
}


.btn-submit-full-shiori {
    width: 100%;
    padding: 18px;
    margin-top: 40px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-full-shiori:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

.hidden {
    display: none !important;
}


.shiori-reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.shiori-review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 25px 25px 12px 25px;
    
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-body-shiori {
    margin-top: 15px;
    
}



.review-footer-shiori {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    
}

.review-engagement-shiori {
    display: flex;
    gap: 15px;
}

.engagement-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 12px;
}

.engagement-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.like-btn.active {
    color: #00d2ff !important;
    background: rgba(0, 210, 255, 0.1) !important;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

.dislike-btn.active {
    color: #ff4757 !important;
    background: rgba(255, 71, 87, 0.1) !important;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.3);
}

.btn-delete-shiori-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 10px;
    display: flex;
}

.btn-delete-shiori-btn:hover {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    transform: scale(1.1);
}

.shiori-review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    
    min-width: 0;
    
}

.user-avatar-shiori {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    
    aspect-ratio: 1 / 1;
}

.user-avatar-initial-shiori {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
    flex-shrink: 0;
    
    aspect-ratio: 1 / 1;
}

.user-text-shiori {
    display: flex;
    flex-direction: column;
    min-width: 0;
    
}

.user-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.review-date-shiori {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-rating-shiori {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    
}

.shiori-heart-rating {
    color: #ff4757;
    
    filter: drop-shadow(0 0 5px rgba(255, 71, 87, 0.4));
    margin-right: 8px;
    font-size: 1.1rem;
}



.rating-num-shiori {
    font-size: 1.15rem;
    font-weight: 850;
    color: var(--primary);
    line-height: 1;
}

.rating-text-shiori {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.review-body-shiori p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-style: italic;
    overflow-wrap: break-word;
    
    word-wrap: break-word;
    word-break: break-word;
}


.btn-report-shiori-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.7;
    margin-left: 10px;
}

.btn-report-shiori-btn:hover {
    color: #ffa502;
    transform: scale(1.15);
    opacity: 1;
}

.shiori-report {
    background: #ffa502 !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 165, 2, 0.4) !important;
}

.shiori-report:hover {
    background: #ffbc4d !important;
    box-shadow: 0 8px 25px rgba(255, 165, 2, 0.6) !important;
}

.report-icon {
    color: #ffa502 !important;
}




.shiori-floating-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    font-size: 0.95rem;
    animation: alertPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.shiori-floating-alert.success {
    border-color: #2ed573;
    box-shadow: 0 10px 30px rgba(46, 213, 115, 0.2);
}

.shiori-floating-alert.info {
    border-color: #1e90ff;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.2);
}

.shiori-floating-alert.error {
    border-color: #ff4757;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
}

@keyframes alertPopIn {
    to {
        transform: translateX(-50%) translateY(0);
    }
}





@media (max-width: 600px) {

    
    .media-detail-container {
        flex-direction: column;
        min-height: auto;
    }

    .media-poster {
        width: 100%;
        position: relative !important;
        top: 0 !important;
        align-items: center;
        text-align: center;
        gap: 15px;
        
    }

    .media-poster img {
        max-width: clamp(200px, 60vw, 250px);
        margin-bottom: 0px;
        
    }

    .media-info {
        width: 100%;
    }

    .media-info h1 {
        justify-content: center;
        text-align: center;
    }

    .detail-year {
        margin: 5px 0 0 10px;
    }

    .detail-meta {
        justify-content: center;
        text-align: center;
    }

    .detail-meta p {
        text-align: center;
    }
}




@media (max-width: 450px) {

    
    .media-info h1 {
        font-size: 1.8rem;
    }

    
    .detail-season-preview h2 {
        justify-content: space-between !important;
        flex-direction: row !important;
        gap: 10px;
    }

    .view-all-link {
        font-size: 0.85rem !important;
    }

    .season-card-full {
        flex-direction: column;
        align-items: center;
        padding: 18px;
        gap: 15px;
    }

    .season-poster-mini {
        width: 100% !important;
        height: 180px !important;
        
        display: flex !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 5px;
        overflow: visible !important;
    }

    .season-poster-mini img {
        width: 120px !important;
        height: 180px !important;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .season-info-mini {
        width: 100%;
    }

    .season-title-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
        gap: 10px;
    }

    .season-title-row h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0;
        text-align: left;
    }

    .season-rating {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        padding: 4px 10px;
        font-size: 0.85rem;
        background: rgba(255, 69, 0, 0.2);
    }

    .season-meta-mini {
        font-size: 0.85rem;
        margin-bottom: 12px;
        justify-content: flex-start;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .season-overview-mini {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: left;
        display: block !important;
        -webkit-line-clamp: none !important;
        line-clamp: none !important;
        overflow: visible !important;
    }
}