/* --- ПЕРЕМЕННЫЕ И ОБЩИЕ СТИЛИ --- */
:root {
    --bg-dark: #0a0c10;
    --accent-orange: #ff6b35;
    --text-main: #94a3b8;
    --text-light: #ffffff;
    --panel-bg: rgba(19, 23, 34, 0.4); 
    --border-color: rgba(255, 255, 255, 0.05);
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html {
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden; 
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.body-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #0a0c10;
    background-image: url('image_685a00.jpg'); 
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    z-index: -1;
    transition: transform 0.15s ease-out;
    will-change: transform; 
    transform: scale(1.05); 
}

/* --- ШАПКА --- */
header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px; 
    z-index: 10;
}

header a { 
    text-decoration: none; 
    color: inherit; 
    display: block; 
}

.logo-area { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    transition: opacity 0.2s ease; 
}

.logo-area:hover { 
    opacity: 0.8; 
}

.logo-box {
    width: 40px; 
    height: 40px; 
    background: var(--accent-orange);
    border-radius: 10px; 
    display: flex; 
    align-items: center;
    justify-content: center; 
    font-weight: 700; 
    color: #000; 
    font-size: 1.1rem;
}

.logo-text h1 { 
    font-size: 1rem; 
    font-weight: 700; 
    letter-spacing: 1px; 
}

.logo-text p { 
    font-size: 0.7rem; 
    color: var(--text-main); 
}

/* --- ОСНОВНАЯ СЕТКА (ПЛЕЕР И ИСТОРИЯ) --- */
.main-container {
    max-width: 1400px; 
    width: 100%;
    margin: 0 !important;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr; 
    gap: 30px; 
    align-items: stretch;
}

/* --- ЛЕВАЯ КОЛОНКА (ПЛЕЕР) --- */
.player-column {
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    min-height: 0;
}

.vinyl-card {
    background: var(--panel-bg); 
    border-radius: 24px; 
    padding: 25px 40px; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    border: 1px solid var(--border-color); 
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3); 
    height: 100%; 
    justify-content: center; 
    position: relative;
}

.status-badge-player {
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    color: var(--accent-orange);
    font-size: 0.8rem; 
    font-weight: 700; 
    letter-spacing: 1px; 
    align-self: flex-start; 
    margin-bottom: 15px; 
    width: max-content;
}

.vinyl-disk {
    width: 240px; 
    height: 240px; 
    border-radius: 50%;
    background-size: cover; 
    background-position: center; 
    border: 8px solid #1a1a1a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6); 
    margin-bottom: 20px; 
}

.vinyl-disk.playing {
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 40px 5px rgba(255, 107, 53, 0.4), 0 0 70px 15px rgba(255, 107, 53, 0.15), 0 20px 40px rgba(0,0,0,0.6);
}

@keyframes rotate { 
    from { transform: rotate(0deg); } 
    to { transform: rotate(360deg); } 
}

.btn-main {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.btn-main:hover {
    transform: scale(1.08) translateY(-2px); 
    background: rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.6); 
    color: #fff;
}

.btn-main svg { 
    width: 22px; 
    height: 22px; 
    fill: currentColor; 
}

.now-playing-box {
    width: 100%; 
    background: rgba(0, 0, 0, 0.2); 
    padding: 15px 20px; 
    border-radius: 16px; 
    border: 1px solid var(--border-color); 
    text-align: center;
    margin-top: 3px;
}

.now-playing-box span { 
    font-size: 0.7rem; 
    color: var(--text-main); 
    text-transform: uppercase; 
    display: block; 
}

.now-playing-box h3 { 
    font-size: 1.15rem; 
    margin-top: 4px; 
    font-weight: 700; 
    color: #fff; 
    display: block; 
}

.now-playing-box p { 
    font-size: 0.85rem; 
    color: var(--accent-orange); 
    margin-top: 2px; 
    display: block; 
}

.progress-container { 
    margin-top: 10px; 
    margin-bottom: 6px; 
    width: 100%; 
}

.progress-time { 
    font-size: 10px; 
    color: rgba(255, 255, 255, 0.5); 
    font-family: monospace; 
    margin-bottom: 4px; 
    text-align: right; 
}

.progress-bg { 
    width: 100%; 
    background: rgba(255, 255, 255, 0.1); 
    height: 4px; 
    border-radius: 2px; 
    overflow: hidden; 
    position: relative; 
}

.progress-bar { 
    width: 0%; 
    background: #ffffff; 
    height: 100%; 
    transition: width 0.3s linear; 
}

.stream-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    margin-top: 8px; 
    font-size: 0.65rem; 
    color: var(--text-main); 
    text-decoration: none; 
    opacity: 0.6; 
}

.stream-link:hover { 
    opacity: 1; 
    color: var(--accent-orange); 
}

.visualizer-container {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 74%;
    margin: 4px auto 0;
    opacity: 1;
}

.visualizer-screen {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 32px;
    gap: 4px;
    width: 100%;
    filter: blur(1.6px);
    opacity: 0.95;
}

.eq-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(255,107,53,0.9), rgba(255,184,138,1));
    height: 2px;
    box-shadow:
        0 0 12px rgba(255,107,53,0.46),
        0 0 28px rgba(255,107,53,0.28),
        0 0 44px rgba(255,107,53,0.18);
}

.visualizer-label {
    display: none;
}

#signal-val {
    color: rgba(255, 150, 102, 0.42);
}

.stream-platforms {
    width: 100%;
    max-width: 420px;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stream-platforms-label {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    text-align: center;
}

.stream-platforms-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.stream-platform-btn {
    min-height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffd8c8;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.18), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 140, 92, 0.28);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.stream-platform-btn:hover {
    transform: translateY(-2px);
    color: #fff5ef;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.28), rgba(255, 107, 53, 0.16));
    border-color: rgba(255, 158, 117, 0.48);
    box-shadow: 0 14px 28px rgba(255, 107, 53, 0.16), 0 8px 18px rgba(0, 0, 0, 0.22);
}

.stream-platform-btn__dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffb07a, var(--accent-orange));
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.65);
}

/* --- ОТКЛЮЧЕННЫЕ ПЛАТФОРМЫ --- */
.stream-platform-btn--disabled {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: none !important;
    cursor: not-allowed;
    pointer-events: none; /* Полностью блокирует любые клики и эффекты */
}

/* Делаем точку индикатора тускло-серой (эфир оффлайн) */
.stream-platform-btn--disabled .stream-platform-btn__dot {
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
}

/* --- ПРАВАЯ КОЛОНКА (ИСТОРИЯ + КНОПКИ) --- */
.right-stack {
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    height: 100%; 
    gap: 20px; 
    min-height: 0;
}

.history-box {
    background: var(--panel-bg); 
    border: 1px solid var(--border-color); 
    border-radius: 24px;
    padding: 25px 30px; 
    backdrop-filter: blur(20px); 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    min-height: 0; 
}

.history-box h4 { 
    font-size: 1.25rem; 
    margin-bottom: 15px; 
    font-weight: 700; 
    color: var(--accent-orange); 
}

.history-list { 
    list-style: none; 
    flex-grow: 1; 
    overflow-y: auto; 
    scrollbar-width: none; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-around; 
}

.history-list::-webkit-scrollbar { 
    display: none; 
}

.history-list li { 
    display: flex; 
    align-items: center; 
    padding: 10px 12px; 
    margin: 2px -12px;   
    border-bottom: 1px solid var(--border-color); 
    font-size: 0.85rem; 
    white-space: nowrap; 
    min-width: 0; 
    cursor: pointer; 
    user-select: none; 
    border-radius: 10px; 
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
}

.history-list li::before {
    content: '►'; 
    color: var(--accent-orange); 
    opacity: 0.4; 
    font-size: 0.65rem; 
    width: 24px; 
    height: 24px; 
    border: 1px solid var(--accent-orange); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-right: 12px; 
    flex-shrink: 0; 
    padding-left: 2px; 
    transition: all 0.25s ease;
}

.history-list li:hover { 
    background: rgba(255, 107, 53, 0.08); 
    border-bottom-color: transparent; 
    transform: translateX(4px); 
}

.history-list li:hover::before { 
    opacity: 1; 
    background-color: var(--accent-orange); 
    color: var(--bg-dark); 
    transform: scale(1.1); 
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.4); 
}

.history-time { 
    color: rgba(255, 107, 53, 0.8); 
    font-family: monospace; 
    font-weight: bold; 
    margin-right: 12px; 
    flex-shrink: 0; 
    transition: color 0.2s ease;
}

.history-list li:hover .history-time { 
    color: #ffffff; 
}

.history-content { 
    display: flex; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    min-width: 0; 
    flex-grow: 1; 
}

.history-artist { 
    color: rgba(255, 255, 255, 0.9); 
    margin-right: 6px; 
    flex-shrink: 0; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.history-divider { 
    color: rgba(255, 255, 255, 0.2); 
    margin-right: 6px; 
    flex-shrink: 0; 
}

.history-track { 
    color: rgba(255, 255, 255, 0.55); 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
    transition: color 0.2s ease;
}

.history-list li:hover .history-track { 
    color: var(--accent-orange); 
}

.studio-card {
    background: var(--panel-bg); 
    border: 1px solid var(--border-color); 
    border-radius: 24px;
    padding: 20px 30px; 
    backdrop-filter: blur(20px); 
    display: flex; 
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-buttons-studio { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
    width: 100%; 
}

.btn-studio {
    background: rgba(19, 23, 34, 0.4); 
    color: #fff; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px; 
    border-radius: 12px; 
    font-weight: 600; 
    font-size: 0.8rem; 
    cursor: pointer;
    text-decoration: none; 
    transition: all 0.2s ease-in-out; 
    text-align: center;
}

.btn-studio:hover { 
    background: rgba(255,255,255,0.1); 
    border-color: #fff; 
    transform: translateY(-2px); 
}

.btn-collab-studio { 
    grid-column: span 2; 
    border-color: rgba(255, 107, 53, 0.4); 
    color: var(--accent-orange); 
    padding: 12px; 
    font-weight: 700; 
}

.btn-collab-studio:hover { 
    background: rgba(255, 107, 53, 0.1); 
    border-color: var(--accent-orange); 
}

/* --- НИЖНИЙ БЛОК (О ПРОЕКТЕ) --- */
.bottom-sections.full-width {
    max-width: 1400px;
    width: 100%;
    margin: 20px 0 0 0 !important;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr;
}

.bottom-sections.full-width + .top-actions-wrap {
    margin-top: 20px !important;
}

.about-box {
    background: var(--panel-bg); 
    border: 1px solid var(--border-color); 
    border-radius: 24px;
    padding: 20px 35px; 
    backdrop-filter: blur(20px);
}

.about-box h4 { 
    font-size: 1.15rem; 
    margin-bottom: 10px; 
    font-weight: 700; 
    color: var(--accent-orange); 
}

.about-box p { 
    color: var(--text-main); 
    line-height: 1.6; 
    font-size: 0.85rem; 
    margin-bottom: 6px; 
}

.about-box p:last-child { 
    margin-bottom: 0; 
}

/* --- ПОДВАЛ --- */
footer {
    grid-row: 6;
    width: 100%;
    padding: 15px;
    text-align: center;
}

footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* --- РАСКАЛЕННАЯ ТОЧКА ЭФИРА --- */
.live-dot {
    width: 6px; 
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: pulse-spark 2s ease-in-out infinite;
}

@keyframes pulse-spark {
    0%, 100% {
        opacity: 0.6;
        transform: scale(0.9);
        box-shadow: 0 0 4px 1px #ffffff, 0 0 8px 3px #ff8c00;
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 8px 2px #ffffff, 0 0 15px 5px #ffaa00;
    }
}

/* =========================================
АДАПТИВНОСТЬ
========================================= */

@media (max-height: 850px) {
    header { padding: 10px 40px; }
    .vinyl-card { padding: 15px 30px; }
    .vinyl-disk { width: 180px; height: 180px; margin-bottom: 15px; }
    .btn-main { width: 50px; height: 50px; margin-bottom: 15px; }
    .history-box, .studio-card, .about-box { padding: 15px 25px; }
    .bottom-sections.full-width { margin-top: 20px !important; }
}

@media (max-width: 1024px) {
    body {
        justify-content: flex-start;
        height: auto;
        padding-top: 80px;
    }

    header { position: absolute; }
    footer { position: relative; margin-top: 20px; }

    .main-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .bottom-sections.full-width {
        padding: 0 20px;
        margin-top: 25px !important;
        margin-bottom: 20px;
    }

    .player-column, .right-stack {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .top-actions-wrap {
        margin-top: 30px;
    }

    .top-actions-bar {
        flex-wrap: wrap;
        border-radius: 24px;
        justify-content: center;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    header { padding: 15px 15px; }

    .main-container, .bottom-sections.full-width { 
        padding: 0 10px !important; 
    }

    .vinyl-card, .history-box, .studio-card, .about-box { 
        padding: 20px 15px; 
    }

    .vinyl-disk {
        width: 55vw; 
        height: 55vw;
        max-width: 220px; 
        max-height: 220px;
        border-width: 6px; 
        margin-bottom: 15px;
    }

    .visualizer-container { 
        width: 100%; 
        padding: 10px; 
    }

    .stream-platforms { 
        max-width: 100%; 
        margin-top: 16px; 
    }

    .stream-platforms-list { 
        grid-template-columns: 1fr; 
        gap: 8px; 
    }

    .stream-platform-btn { 
        min-height: 44px; 
        font-size: 0.82rem; 
    }

    .now-playing-box { 
        padding: 12px; 
    }

    .now-playing-box h3 { 
        font-size: 1.05rem; 
    }

    .history-list li { 
        font-size: 0.8rem; 
        padding-right: 4px; 
    }

    .history-time { 
        margin-right: 8px; 
    }

    .top-actions-wrap {
        width: 100%;
        max-width: 500px;
        padding: 0 10px !important;
        margin-top: 18px !important;
        margin-bottom: 10px;
    }

    .top-actions-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .top-action-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 0 12px;
        border-radius: 16px;
        background: rgba(19, 23, 34, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(18px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
        color: #fff;
        font-size: 0.92rem;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
    }

    .top-action-btn:hover {
        transform: none;
        background: rgba(26, 31, 45, 0.82);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .top-action-btn-accent {
        grid-column: 1 / -1;
        min-height: 56px;
        margin-top: 2px;
        background: rgba(255, 107, 53, 0.14);
        border: 1px solid rgba(255, 107, 53, 0.32);
        color: var(--accent-orange);
        box-shadow: 0 14px 30px rgba(255, 107, 53, 0.12);
    }
}

/* --- СТИЛИ ДЛЯ СТРАНИЦЫ ОФФЕРА --- */
body.offer-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.offer-container-main {
    flex-grow: 1;
    max-width: 900px;
    width: 90%;
    margin: 20px auto;
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    height: 70vh;
    overflow-y: auto;
}

.offer-container-main::-webkit-scrollbar { 
    width: 4px; 
}

.offer-container-main::-webkit-scrollbar-track { 
    background: rgba(0,0,0,0.2); 
    border-radius: 4px; 
}

.offer-container-main::-webkit-scrollbar-thumb { 
    background: var(--accent-orange); 
    border-radius: 4px; 
}

.offer-box h2 { 
    color: var(--accent-orange); 
    margin-bottom: 20px; 
    text-align: center; 
}

.offer-box h3 { 
    color: var(--text-light); 
    margin: 25px 0 15px; 
    font-weight: 600; 
    border-left: 3px solid var(--accent-orange); 
    padding-left: 15px; 
}

.offer-box p { 
    color: var(--text-main); 
    line-height: 1.6; 
    margin-bottom: 15px; 
}

.offer-box ul { 
    margin-left: 25px; 
    margin-bottom: 20px; 
    color: var(--text-main); 
}

.offer-box li { 
    margin-bottom: 8px; 
}

.offer-box strong { 
    color: var(--text-light); 
}

.offer-box a { 
    color: var(--accent-orange); 
    text-decoration: none; 
}

.contact-info { 
    background: rgba(0,0,0,0.3); 
    padding: 15px; 
    border-radius: 12px; 
    margin-top: 15px; 
}

.falling-sparks {
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
    z-index: 10;
}

.falling-spark {
    position: absolute;
    width: 3px; 
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity, background, box-shadow;
    animation: spark-fall linear forwards;
}

@keyframes spark-fall {
    0% {
        transform: translate(0, 0) scale(1);
        background: #ffffff;
        box-shadow: 0 0 8px 2px #ffffff, 0 0 15px 5px #ffaa00;
        opacity: 1;
    }

    20% {
        background: #ffffff;
        box-shadow: 0 0 10px 2px #ff8c00, 0 0 15px 3px #ff3300;
        opacity: 1;
    }

    80% {
        background: #ffaa00;
        box-shadow: 0 0 5px 1px #ff3300;
        opacity: 0.8;
    }

    100% {
        transform: translate(var(--drift), var(--fall-dist)) scale(0.1);
        background: #ff0000;
        box-shadow: none;
        opacity: 0;
    }
}

.top-actions-wrap {
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    margin: 0 0 18px 0;
}

.top-actions-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(19, 23, 34, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.top-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.top-action-btn:hover {
    transform: translateY(-1px);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.top-action-btn-accent {
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.28);
}

.top-action-btn-accent:hover {
    color: #fff;
    background: rgba(255, 107, 53, 0.22);
    border-color: rgba(255, 107, 53, 0.5);
}

h4, .history-box h4, .about-box h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

#current-title {
    font-size: 1.15rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    color: var(--text-light) !important;
}