/* ============================================
   RADIO GOSPEL - STYLESHEET
   Author: DaNiLoStOrM
   ============================================ */

/* CSS Variables - Theme System */
:root {
    --primary-color: #667eea;
    --primary-dark: #764ba2;
    --secondary-color: #f093fb;
    --accent-color: #4facfe;
    --text-color: #ffffff;
    --text-secondary: #e0e0e0;
    --bg-primary: #0f0c29;
    --bg-secondary: #1a1a2e;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(15, 12, 41, 0.9) 0%, rgba(48, 43, 99, 0.9) 50%, rgba(36, 36, 62, 0.9) 100%);
}

/* Theme Variations */
[data-theme="blue"] {
    --primary-color: #2193b0;
    --primary-dark: #6dd5ed;
    --secondary-color: #00d2ff;
    --accent-color: #3a7bd5;
}

[data-theme="gold"] {
    --primary-color: #f7971e;
    --primary-dark: #ffd200;
    --secondary-color: #ffb347;
    --accent-color: #ff8c00;
}

[data-theme="green"] {
    --primary-color: #11998e;
    --primary-dark: #38ef7d;
    --secondary-color: #06beb6;
    --accent-color: #48bb78;
}

[data-theme="red"] {
    --primary-color: #eb3349;
    --primary-dark: #f45c43;
    --secondary-color: #ff6b6b;
    --accent-color: #ee5a6f;
}

[data-theme="dark"] {
    --primary-color: #1a1a2e;
    --primary-dark: #16213e;
    --secondary-color: #0f3460;
    --accent-color: #533483;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(at 0% 0%, rgba(102, 126, 234, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(118, 75, 162, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Theme Selector */
.theme-selector {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
}

.theme-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
}

.theme-options {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.theme-options.active {
    display: flex;
    animation: slideIn 0.3s ease;
}

.theme-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-option:hover,
.theme-option.active {
    border-color: white;
    transform: scale(1.1);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(15, 12, 41, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Mobile optimization for main button */
@media (max-width: 768px) {
    .btn-primary {
        padding: 18px 40px;
        font-size: 18px;
        font-weight: 700;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    }
    
    .btn-primary:active {
        transform: scale(0.95);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-secondary:hover {
    background: var(--text-color);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: var(--text-color);
    font-size: 24px;
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 50px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Verse Section */
.verse-section {
    background: var(--bg-secondary);
}

.verse-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.verse-icon {
    font-size: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.verse-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    margin: 30px 0;
    line-height: 1.8;
    color: var(--text-color);
}

.verse-reference {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

/* Radio Player */
.radio-player {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.player-art {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.player-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.player-art:hover img {
    transform: scale(1.05);
}

.audio-visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.bar {
    width: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: visualize 0.8s ease-in-out infinite;
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes visualize {
    0%, 100% { height: 10px; }
    50% { height: 40px; }
}

.player-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.now-playing h3 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.song-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
}

.artist-name {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.player-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat i {
    font-size: 24px;
    color: var(--primary-color);
}

.stat span {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.play-pause-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Mobile: Bigger touch target */
@media (max-width: 768px) {
    .play-pause-btn {
        width: 80px;
        height: 80px;
        font-size: 32px;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    }
    
    .play-pause-btn:active {
        transform: scale(0.95);
    }
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Mobile: Bigger touch target */
@media (max-width: 768px) {
    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.volume-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
}

/* Mobile: Bigger slider thumb */
@media (max-width: 768px) {
    .volume-slider {
        height: 8px;
    }
    
    .volume-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }
}

.recently-played h4 {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.recent-songs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 150px;
    overflow-y: auto;
}

.recent-song {
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.recent-song:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
}

/* Posts Section */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.post-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.post-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.post-card .post-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.post-card .post-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.loading-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.loading-posts i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Social Section */
.social-section {
    background: var(--bg-secondary);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-card i {
    font-size: 2.5rem;
}

.social-card span {
    font-weight: 600;
}

.social-card.facebook:hover { background: #1877f2; border-color: #1877f2; transform: translateY(-5px); }
.social-card.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #e1306c; transform: translateY(-5px); }
.social-card.youtube:hover { background: #ff0000; border-color: #ff0000; transform: translateY(-5px); }
.social-card.whatsapp:hover { background: #25d366; border-color: #25d366; transform: translateY(-5px); }
.social-card.telegram:hover { background: #0088cc; border-color: #0088cc; transform: translateY(-5px); }
.social-card.twitter:hover { background: #1da1f2; border-color: #1da1f2; transform: translateY(-5px); }

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-section p,
.footer-section li {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-bottom i {
    color: #e74c3c;
}

/* Floating Player */
.floating-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: slideInUp 0.3s ease;
    display: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-player-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-player img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.floating-info {
    max-width: 200px;
}

.floating-info span {
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.floating-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-play-btn:hover {
    transform: scale(1.1);
}

/* ===========================================
   MOBILE-FIRST OPTIMIZATIONS
   =========================================== */

/* Enhanced Mobile Floating Player */
@media (max-width: 768px) {
    .floating-player {
        bottom: 10px;
        left: 10px;
        right: 10px;
        border-radius: 20px;
        padding: 15px 20px;
        box-shadow: 0 -5px 40px rgba(0, 0, 0, 0.7);
        background: rgba(15, 12, 41, 0.98);
        border: 2px solid var(--primary-color);
    }
    
    .floating-player-content {
        gap: 12px;
    }
    
    .floating-player img {
        width: 55px;
        height: 55px;
    }
    
    .floating-info {
        flex: 1;
        max-width: none;
    }
    
    .floating-info span {
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .floating-play-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
    }
    
    .floating-play-btn:active {
        transform: scale(0.9);
    }
}

/* Touch-friendly elements */
@media (max-width: 768px) {
    /* Ensure all buttons are touch-friendly (minimum 44x44px) */
    button, .btn, a.btn {
        min-height: 44px;
        min-width: 44px;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
    }
    
    /* Improve text readability */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Remove hover effects on touch devices */
    .btn-primary:hover,
    .play-pause-btn:hover,
    .control-btn:hover {
        transform: none;
    }
    
    /* Add active states instead */
    .btn-primary:active {
        transform: scale(0.95);
    }
}

/* ===========================================
   NEW SECTIONS STYLES
   =========================================== */

/* Schedule Section */
.schedule-section {
    background: var(--bg-secondary);
}

/* Requests Section */
.requests-section {
    background: var(--bg-primary);
}

/* Station Info in Radio Section */
#stationInfoContainer,
#liveStatusContainer {
    animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 968px) {
    .radio-player {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 12, 41, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .verse-card {
        padding: 30px 20px;
    }
    
    .radio-player {
        padding: 25px;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .theme-selector {
        top: 80px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .player-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    /* More space for floating player on mobile */
    section:last-of-type {
        padding-bottom: 120px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Mobile: Thinner scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
}