/* 📱 MOBILE PROTOCOL: PRECISION ARROWS & READER CLEANUP */

/* 1. БАЗА */
body {
    background-image: none !important;
    background-color: #050505 !important;
    min-height: 100vh !important;
    margin: 0 !important;
    overflow-y: auto !important; 
}

/* 2. РОДИТЕЛИ */
.screen-area, 
.screen-content {
    width: 100% !important;
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
    position: relative !important;
}

/* 3. СКРЫВАЕМ ЛИШНЕЕ */
.monitor-overlay, .stickers-layer, .glitch-layer, .system-bar, .dust-system-wrapper,
.btn-dark-day, .btn-dark-night, .btn-light-day, .btn-light-night,
.static-label, .coffee-wrapper, #sleep-overlay,
#terminal-footer {
    display: none !important;
}

/* 4. ОБЛОЖКИ И СТРЕЛКИ ВЫБОРА */
.book-viewer {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    padding-top: 60px !important;
    padding-bottom: 40px !important;
    position: relative !important;
    overflow: visible !important;
    align-items: center !important;
}

.book-display {
    flex-direction: column !important; 
    width: 100% !important; 
    height: auto !important;
    gap: 20px !important; 
    align-items: center !important;
}

.book-cover-large {
    width: 65vw !important; /* Обложка занимает 65% ширины */
    max-width: 240px !important; 
    height: auto !important;
    aspect-ratio: 2/3 !important;
    border: 1px solid #005511 !important;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.15) !important;
    margin-bottom: 10px !important;
    display: block !important;
}

/* СТРЕЛКИ ВЫБОРА: Прижаты к обложке */
.nav-arrow {
    display: flex !important; 
    position: absolute !important; 
    top: 180px !important; /* Уровень центра обложки */
    width: 45px !important; 
    height: 45px !important; 
    z-index: 500 !important;
    border-color: #00ff41 !important;
}

/* 18% - это вплотную к обложке шириной 65vw */
.arrow-left { left: 18% !important; } 
.arrow-right { right: 18% !important; }

/* Позволяем JS скрывать стрелки, когда листать некуда */
.nav-arrow.hidden {
    display: none !important;
}

.book-info { 
    width: 100% !important; 
    padding: 0 12px !important; 
    text-align: center !important;
    box-sizing: border-box !important;
}

.book-title-large { 
    font-size: 22px !important; 
    margin-bottom: 15px !important; 
    line-height: 1.3 !important; 
    white-space: normal !important;
    width: 100% !important;
}

.book-desc { font-size: 15px !important; line-height: 1.4 !important; margin-bottom: 30px !important; }
.btn-read { width: 90% !important; max-width: 320px !important; padding: 15px !important; font-size: 18px !important; margin: 10px auto !important; }

/* 5. ЧИТАЛКА */
.reader-layout {
    width: 100% !important; 
    height: 100% !important;
    position: fixed !important; 
    top: 0 !important; 
    left: 0 !important;
    background: #000 !important; 
    z-index: 9000 !important; /* Перекрывает выбор языка */
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important; 
}

.reader-sidebar { display: none !important; }
.reader-content { width: 100% !important; height: 100% !important; display: flex !important; flex-direction: column !important; padding: 0 !important; }
.reader-header { height: 60px !important; flex-shrink: 0 !important; border-bottom: 1px solid #003300 !important; background: #000 !important; display: flex !important; align-items: center; padding: 0 10px; }

.chat-area { 
    flex: 1 !important;
    overflow-y: auto !important; 
    padding: 15px 12px !important; 
    -webkit-overflow-scrolling: touch;
}

.reader-pagination {
    height: 80px !important; 
    flex-shrink: 0 !important;
    display: flex !important; 
    align-items: center !important; 
    justify-content: space-between !important; 
    padding: 0 20px !important;
    background: #050505 !important; 
    border-top: 1px solid #005511 !important;
}

/* ИСПРАВЛЕННЫЙ БЛОК: Убрано свечение */
.page-arrow { 
    width: 50px !important; 
    height: 50px !important; 
    border: 1px solid #00ff41 !important; 
    color: #00ff41 !important; 
    display: flex !important; 
    align-items: center; 
    justify-content: center; 
    background: none !important; /* Убирает заливку цветом */
    -webkit-tap-highlight-color: transparent !important; /* Убирает системное свечение при клике */
    outline: none !important; /* Убирает рамку фокуса */
}

/* 6. ОСТАЛЬНОЕ */
.top-bar { position: absolute !important; top: -40px !important; right: 15px !important; z-index: 5000 !important; }
.lang-switch { font-size: 20px !important; color: #00ff41 !important; }
.author-photo-frame { width: 80% !important; max-width: 280px !important; margin: 0 auto 20px !important; }