/**
 * File: assets/css/style.css
 * Location: /assets/css/style.css
 * Description: สไตล์เพิ่มเติมสำหรับระบบ NovelSoGood (โทนสีส้ม)
 */

@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,300;0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #f97316; /* orange-500 */
    --primary-dark: #ea580c; /* orange-600 */
    --bg-light: #fffcf9;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--bg-light);
    color: #1f2937;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fff7ed;
}
::-webkit-scrollbar-thumb {
    background: #fdba74;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #fb923c;
}

/* Reader Section Styling */
.novel-content {
    line-height: 2;
    letter-spacing: 0.02em;
    font-size: 1.125rem;
}

.novel-content p {
    margin-bottom: 1.5rem;
}

/* Audio Player Customization */
audio::-webkit-media-controls-panel {
    background-color: #ffffff;
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

/* Status Animation */
.status-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f97316;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}