.reviews-page-container {
    background: #000;
    min-height: 100vh;
    padding-top: 100px; /* ОТСТУП ОТ ШАПКИ */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

.reviews-content-wrapper {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-fixed {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    background: linear-gradient(180deg, #fff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 8px;
    white-space: nowrap;
    text-transform: uppercase;
}

.auth-box-centered, .premium-editor-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 20px;
    width: 100%;
    margin-top: 20px;
}

.rules-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.rules-modal-overlay.active { display: flex; }

.rules-modal-window {
    background: #050505;
    border: 1px solid #d4af37;
    padding: 30px;
    max-width: 400px;
    text-align: center;
    color: #fff;
}
.editor-tool {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 5px 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
    min-width: 35px;
}

.editor-tool:hover {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

/* Скроллбар для ленты отзывов */
#reviews-feed::-webkit-scrollbar {
    width: 2px;
}
#reviews-feed::-webkit-scrollbar-thumb {
    background: #d4af37;
}
.editor-tool {
    background: #111;
    border: 1px solid #333;
    color: #888;
    padding: 6px 12px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 13px;
}

.editor-tool:hover {
    color: #d4af37;
    border-color: #d4af37;
}

.tool-emoji {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 0 5px;
    transition: transform 0.2s;
}

.tool-emoji:hover {
    transform: scale(1.3);
}
/* Стили для премиального окна "Поделиться" */
#custom-share-modal {
    animation: fadeIn 0.3s ease-out; /* Плавное проявление всего фона */
}

#custom-share-modal > div {
    animation: slideUp 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67); /* Эффект вылета окна снизу */
}

/* Эффект при наведении на плитки соцсетей */
#share-tg:hover, #share-wa:hover {
    background: #111 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

/* Стили для кнопки копирования */
#copy-link-btn:active {
    transform: scale(0.98);
    filter: brightness(1.2);
}

/* Анимации проявления */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Кастомный скроллбар для ленты отзывов (чтобы не портил дизайн) */
#reviews-feed::-webkit-scrollbar {
    width: 3px;
}

#reviews-feed::-webkit-scrollbar-track {
    background: #000;
}

#reviews-feed::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

#reviews-feed::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}
@keyframes chatAppear {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message {
    animation: chatAppear 0.4s ease-out forwards;
}
/* Скрываем мобильную кнопку на компах */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Стили самой кнопки, чтобы она не была точкой */
.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff; /* Цвет полосок */
    margin: 5px auto;
}
/* ============================================
   SAYOH WAY — КАСТОМНЫЙ ЗОЛОТОЙ СКРОЛЛБАР
   Добавить в конец new-styles.css
   ============================================ */

/* ГЛОБАЛЬНЫЙ СКРОЛЛБАР */
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: transparent;
    margin-top: 80px; /* Не заходит под шапку */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #d4af37, #8e6d2f);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e8c84a;
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.5);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* ЖЕНСКАЯ ТЕМА */
.female-theme ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #e2b4bd, #9e5a65);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #d4af37 transparent;
}

.female-theme * {
    scrollbar-color: #e2b4bd transparent;
}