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

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: 100%;
}

:root {
    --primary: #ff4757;
    --secondary: #2ed573;
    --dark: #1e272e;
    --darker: #0a0e27;
    --light: #f1f2f6;
    --accent: #ffa502;
    --gradient: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Header */
.header {
    background: var(--darker);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--light);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
}

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

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* Chat Link */
.chat-link {
    color: var(--light) !important;
    font-weight: 500;
}

.chat-link i {
    color: var(--secondary);
    margin-right: 0.3rem;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.chat-link:hover i {
    color: var(--primary);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light);
    transition: color 0.3s;
}

.mobile-toggle:hover {
    color: var(--primary);
}

/* Hero Player */
.hero-player {
    background: linear-gradient(135deg, #1e272e 0%, #0a0e27 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 71, 87, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(46, 213, 115, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.player-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.now-playing {
    margin-bottom: 2rem;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 71, 87, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.live-badge i {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.now-playing h1 {
    font-size: 1.2rem;
    color: var(--light);
    margin: 1rem 0 0.5rem 0;
    opacity: 0.7;
}

.song-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.song-info p {
    font-size: 1.5rem;
    color: var(--light);
    opacity: 0.8;
}

.dj-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dj-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.dj-info strong {
    display: block;
    font-size: 1.1rem;
}

.dj-info span {
    color: var(--accent);
    font-size: 0.9rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.6);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.volume-control i {
    font-size: 1.5rem;
    color: var(--primary);
}

.volume-control input[type="range"] {
    width: 150px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary) 70%, rgba(255, 255, 255, 0.1) 70%);
    border-radius: 5px;
    outline: none;
    transition: all 0.3s;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.5);
    transition: all 0.3s;
}

.volume-control input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.7);
}

.volume-control input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.5);
    transition: all 0.3s;
}

.volume-control input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.7);
}

/* Hide audio element */
audio {
    display: none;
}

.listener-count {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.listener-count i {
    color: var(--secondary);
    font-size: 1.5rem;
}

/* Equalizer */
.player-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 200px;
}

.equalizer span {
    width: 15px;
    background: var(--gradient);
    border-radius: 10px;
    animation: equalize 1s ease-in-out infinite;
}

.equalizer span:nth-child(1) { animation-delay: 0s; }
.equalizer span:nth-child(2) { animation-delay: 0.1s; }
.equalizer span:nth-child(3) { animation-delay: 0.2s; }
.equalizer span:nth-child(4) { animation-delay: 0.3s; }
.equalizer span:nth-child(5) { animation-delay: 0.4s; }
.equalizer span:nth-child(6) { animation-delay: 0.5s; }
.equalizer span:nth-child(7) { animation-delay: 0.6s; }
.equalizer span:nth-child(8) { animation-delay: 0.7s; }

@keyframes equalize {
    0%, 100% { height: 30px; }
    50% { height: 150px; }
}

/* Quick Request */
.quick-request {
    padding: 2rem 0;
    background: var(--darker);
}

.request-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 71, 87, 0.3);
}

.request-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.request-header i {
    font-size: 2rem;
    color: var(--primary);
}

.request-header h3 {
    font-size: 1.5rem;
}

.request-form {
    display: grid;
    grid-template-columns: 2fr 1.5fr auto;
    gap: 1rem;
}

.request-form input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--light);
    font-size: 1rem;
}

.request-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.request-form button {
    padding: 1rem 2rem;
    background: var(--gradient);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.request-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.request-note {
    margin-top: 1rem;
    color: var(--light);
    opacity: 0.6;
    font-size: 0.9rem;
}

.request-note i {
    color: var(--accent);
}

/* Main Content Layout */
.main-container {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    gap: 2rem;
}

/* Widgets */
.widget {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Schedule */
.schedule-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-item.active {
    background: rgba(255, 71, 87, 0.2);
    border-color: var(--primary);
}

.schedule-item .time {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.schedule-item .program strong {
    display: block;
    margin-bottom: 0.2rem;
}

.schedule-item .program span {
    color: var(--light);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* DJ List */
.dj-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dj-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    position: relative;
}

.dj-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.dj-item strong {
    display: block;
    font-size: 0.95rem;
}

.dj-item span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.online-badge {
    position: absolute;
    right: 1rem;
    color: var(--secondary);
    font-size: 1.5rem;
}

/* Categories */
.categories {
    list-style: none;
}

.categories li {
    margin-bottom: 0.8rem;
}

.categories a {
    color: var(--light);
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.categories a:hover {
    background: rgba(255, 71, 87, 0.2);
    color: var(--primary);
    padding-left: 1rem;
}

/* Main Content */
.main-content {
    min-height: 500px;
}

.main-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

/* Songs List */
.songs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.song-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.song-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.song-cover {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.song-details {
    flex: 1;
}

.song-details strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.song-details span {
    color: var(--light);
    opacity: 0.7;
    display: block;
    margin-bottom: 0.3rem;
}

.song-details small {
    color: var(--accent);
    font-size: 0.85rem;
}

.request-again {
    padding: 0.8rem 1.2rem;
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
}

.request-again:hover {
    background: var(--primary);
    color: white;
}

/* Top Songs */
.top-songs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.top-song {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-song .rank {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
}

.song-info-mini {
    flex: 1;
}

.song-info-mini strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.song-info-mini span {
    color: var(--light);
    opacity: 0.7;
    font-size: 0.9rem;
}

.request-count {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Right Sidebar */
.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s;
}

.app-btn:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

.app-btn strong {
    display: block;
    font-size: 1rem;
}

.popular-programs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.program-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.program-item strong {
    display: block;
    font-size: 0.95rem;
}

.program-item span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.ad-widget .ad-placeholder {
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.ad-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary);
}

.footer-section p {
    color: var(--light);
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a,
.footer-section ul li {
    color: var(--light);
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--light);
    opacity: 0.7;
}

/* Responsive Design - Tüm Mobil Cihazlar */

/* Large Tablets & Small Desktops (1200px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
}

/* Tablets & iPad (768px - 1199px) */
@media (max-width: 1199px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sidebar,
    .right-sidebar {
        display: none;
    }

    .player-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .equalizer {
        height: 180px;
        margin: 2rem auto;
    }
}

/* iPad Portrait & Large Phones (768px - 991px) */
@media (max-width: 991px) {
    .hero-player {
        padding: 2rem 0;
    }

    .player-controls {
        gap: 1rem;
    }

    .volume-control input {
        width: 100px;
    }

    .request-form {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .songs-list {
        gap: 0.8rem;
    }

    .song-card {
        padding: 1rem;
    }
}

/* Mobile Landscape & Small Tablets (640px - 767px) */
@media (max-width: 767px) {
    .header {
        padding: 0.8rem 0;
    }

    .nav {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--darker);
        width: 100%;
        padding: 2rem 0;
        gap: 0;
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-toggle {
        display: block;
    }

    .song-info h2 {
        font-size: 2rem;
    }

    .song-info p {
        font-size: 1.2rem;
    }

    .dj-info {
        flex-direction: column;
        text-align: center;
    }

    .player-controls {
        justify-content: center;
    }

    .equalizer {
        height: 150px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .widget h3 {
        font-size: 1.1rem;
    }
}

/* Mobile Portrait - Large Phones (480px - 639px) */
@media (max-width: 639px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo i {
        font-size: 1.6rem;
    }

    .hero-player {
        padding: 1.5rem 0;
    }

    .song-info h2 {
        font-size: 1.6rem;
    }

    .song-info p {
        font-size: 1.1rem;
    }

    .live-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .player-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .play-btn {
        width: 100%;
        height: 70px;
        border-radius: 15px;
    }

    .volume-control {
        width: 100%;
        justify-content: space-between;
    }

    .volume-control input {
        flex: 1;
    }

    .listener-count {
        justify-content: center;
        width: 100%;
    }

    .equalizer {
        height: 120px;
        gap: 5px;
    }

    .equalizer span {
        width: 10px;
    }

    .request-box {
        padding: 1.5rem;
    }

    .request-header h3 {
        font-size: 1.2rem;
    }

    .request-form input,
    .request-form button {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .main-content h2 {
        font-size: 1.5rem;
    }

    .song-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .song-cover {
        width: 80px;
        height: 80px;
    }

    .top-song {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Mobile Phones (360px - 479px) */
@media (max-width: 479px) {
    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.4rem;
    }

    .song-info h2 {
        font-size: 1.4rem;
    }

    .song-info p {
        font-size: 1rem;
    }

    .now-playing h1 {
        font-size: 1rem;
    }

    .play-btn {
        height: 60px;
        font-size: 1.5rem;
    }

    .dj-avatar {
        width: 50px;
        height: 50px;
    }

    .equalizer {
        height: 100px;
        gap: 4px;
    }

    .equalizer span {
        width: 8px;
    }

    .request-box {
        padding: 1rem;
    }

    .request-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .request-header i {
        font-size: 1.5rem;
    }

    .request-header h3 {
        font-size: 1.1rem;
    }

    .widget {
        padding: 1rem;
    }

    .schedule-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .song-details strong {
        font-size: 1rem;
    }

    .main-content h2 {
        font-size: 1.3rem;
    }
}

/* Extra Small Devices - iPhone SE, Old Androids (< 360px) */
@media (max-width: 359px) {
    .container {
        padding: 0 10px;
    }

    .logo span {
        display: none;
    }

    .logo i {
        font-size: 1.8rem;
    }

    .song-info h2 {
        font-size: 1.2rem;
    }

    .song-info p {
        font-size: 0.9rem;
    }

    .play-btn {
        height: 55px;
        font-size: 1.3rem;
    }

    .equalizer {
        height: 80px;
        gap: 3px;
    }

    .equalizer span {
        width: 6px;
    }

    .request-form input,
    .request-form button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .song-card {
        padding: 0.8rem;
    }

    .song-cover {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .top-song .rank {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section ul li {
        font-size: 0.9rem;
    }
}

/* Landscape Mode Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-player {
        padding: 1rem 0;
    }

    .player-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .equalizer {
        height: 100px;
    }

    .now-playing h1 {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }

    .song-info h2 {
        font-size: 1.5rem;
    }

    .dj-info {
        padding: 0.8rem;
    }

    .request-box {
        padding: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav a,
    .request-form button,
    .play-btn,
    .request-again,
    .app-btn,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
    }

    .request-form input,
    .request-form button {
        padding: 1rem;
    }

    .song-card,
    .top-song,
    .schedule-item {
        padding: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-player,
    .quick-request,
    .footer,
    .mobile-toggle,
    .equalizer,
    .player-controls {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .container {
        max-width: 100%;
    }
}

