/* VEGA FM 99.9 - GENEL STİL DOSYASI */
:root {
    --bg-color: #0d1218;
    --main-font: 'Arial', sans-serif;
    --accent-orange: #f59e0b;
    --accent-pink: #d84384;
    --text-color: #fff;
    --text-secondary: #aaa;
    --border-color: #222;
}

* { box-sizing: border-box; }

body {
    margin: 0; padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--main-font);
    font-size: 14px;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.app-container {
    display: flex;
    min-height: 100vh;
    padding-bottom: 80px;
    background:
        linear-gradient(180deg, rgba(13, 18, 24, 0.88) 0%, rgba(13, 18, 24, 0.63) 100%),
        linear-gradient(220deg, #0d1218 0%, rgba(30, 58, 138, 0.12) 40%, rgba(91, 33, 182, 0.18) 60%, #0d1218 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.sidebar {
    width: 250px; padding: 20px;
    background: linear-gradient(180deg, rgba(26, 30, 38, 0.66) 0%, rgba(26, 30, 38, 0.13) 100%);
    border-right: 1px solid var(--border-color);
    display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
}

.logo-container { text-align: center; margin-bottom: 30px; }
.logo-main { font-family: 'Times New Roman', serif; font-size: 50px; font-weight: bold; color: var(--accent-pink); text-shadow: 0 0 10px var(--accent-pink); margin: 0; }
.logo-subtitle { font-size: 16px; color: #ccc; letter-spacing: 2px; margin: -5px 0 20px 0; }
.logo-desc { font-size: 12px; color: var(--text-secondary); font-style: italic; }

.menu-items { list-style: none; padding: 0; width: 100%; margin: 0; }
.menu-items li { padding: 10px 15px; display: flex; align-items: center; cursor: pointer; transition: all 0.3s; border-left: 3px solid transparent; white-space: nowrap; }
.menu-items li a { display:flex; align-items:center; width:100%; color:inherit; }
.menu-items li:hover { background-color: #2a2f3a; }
.menu-items li.active { color: var(--text-color); font-weight: bold; background: linear-gradient(90deg, rgba(216, 67, 132, 0.4) 0%, rgba(42, 47, 58, 0.13) 100%); border-left: 3px solid var(--accent-pink); border-top-right-radius: 20px; border-bottom-right-radius: 20px; }
.menu-items li i { margin-right: 15px; color: var(--text-secondary); width: 18px; text-align: center; }
.menu-items li.active i { color: var(--accent-orange); }

.follow-us { margin-top: auto; text-align: center; color: var(--text-secondary); font-size: 12px; padding-top: 20px; }
.social-icons { margin-top: 10px; display: flex; gap: 15px; justify-content: center; }
.social-icons a i { color: var(--text-secondary); font-size: 18px; cursor: pointer; }

.main-content { flex: 1; padding: 20px 40px; display: flex; flex-direction: column; min-width: 0; }

.top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; gap: 15px; flex-wrap: wrap; }
.search-container { position: relative; flex: 1; max-width: 300px; }
.search-bar { background-color: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; padding: 8px 15px; border-radius: 20px; width: 100%; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-btn { background-color: transparent; border: 1px solid var(--border-color); color: #fff; padding: 8px 15px; border-radius: 10px; cursor: pointer; white-space: nowrap; }
.top-bar-btn:hover { background-color: rgba(255, 255, 255, 0.05); }
.top-bar-right i { color: var(--text-secondary); cursor: pointer; }
.live-btn { background-color: #e11d48; color: #fff; padding: 10px 20px; border-radius: 20px; border: none; display: flex; align-items: center; gap: 10px; font-weight: bold; cursor: pointer; white-space: nowrap; }

.hero-section { text-align: center; margin-bottom: 40px; position: relative; }
.hero-overlay-text { font-size: 18px; color: var(--text-secondary); letter-spacing: 5px; font-weight: bold; margin-bottom: -20px; }
.hero-main-title { font-family: 'Times New Roman', serif; font-size: clamp(50px, 8vw, 100px); font-weight: bold; color: var(--text-color); text-shadow: 0 0 20px rgba(255,255,255,0.5); margin: 0; letter-spacing: 5px; line-height: 1; }
.hero-pink-title { font-size: clamp(40px, 6vw, 80px); color: var(--accent-pink); font-family: 'Times New Roman', serif; font-weight: bold; text-shadow: 0 0 15px var(--accent-pink); margin: -10px 0 0 0; line-height: 1; }
.live-control { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 15px; }
.live-info-text { font-size: 14px; color: var(--accent-orange); font-weight: bold; margin: 0; text-align: center; }
.live-info-desc { font-size: 14px; color: var(--text-color); margin: 0; text-align: center; }

.section-clips, .section-news, .broadcaster-card, .player-card, .flow-card, .app-ad-card {
    background-color: rgba(26, 30, 38, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
}
.section-clips { margin-bottom: 30px; }

.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.section-header h2 { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: bold; margin: 0; }
.section-header .view-all { color: var(--accent-orange); font-size: 12px; text-decoration: underline; cursor: pointer; }

.clip-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.clip-card { background-color: rgba(255, 255, 255, 0.03); border-radius: 10px; overflow: hidden; position: relative; }
.clip-thumb { width: 100%; height: 120px; object-fit: cover; background: linear-gradient(135deg, #2a2f3a 0%, #1e3a8a 100%); display:block; }
.play-btn-card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 30px; height: 30px; background-color: rgba(255, 255, 255, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; }
.clip-info { padding: 10px; }
.clip-artist { font-size: 12px; color: #ccc; margin: 0; }
.clip-title { font-size: 12px; color: #fff; margin: 0; }

.bottom-grid { display: grid; grid-template-columns: 2fr 1.5fr; gap: 20px; }
.bottom-column { display: flex; flex-direction: column; gap: 20px; }

.broadcaster-card { display: flex; align-items: center; gap: 20px; }
.broadcaster-avatar { width: 100px; height: 100px; border-radius: 50%; border: 3px solid #ff00ff; background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%); flex-shrink: 0; object-fit: cover; }
.broadcaster-info h2 { font-size: 16px; color: var(--text-color); margin: 0 0 10px 0; }
.broadcaster-info p { font-size: 12px; color: var(--text-secondary); margin: 0 0 10px 0; }
.broadcaster-btn { background-color: transparent; border: 1px solid var(--accent-orange); color: var(--accent-orange); padding: 8px 15px; border-radius: 10px; cursor: pointer; font-size: 12px; }

.news-item { display: flex; gap: 15px; margin-bottom: 15px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
.news-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.news-thumb { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; background: linear-gradient(135deg, #1e3a8a 0%, #5b21b6 100%); flex-shrink: 0; }
.news-info { flex: 1; }
.news-title { font-size: 14px; color: #fff; margin: 0 0 5px 0; }
.news-desc { font-size: 12px; color: var(--text-secondary); margin: 0 0 5px 0; }
.news-meta { font-size: 10px; color: #666; margin: 0; }

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

.player-header { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-secondary); margin-bottom: 20px; }
.album-art-large { width: 150px; height: 150px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background-color: #000; margin: 0 auto 20px auto; border: 1px solid #333; overflow:hidden; }
.album-art-thumb { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #d84384 0%, #1e3a8a 100%); }
.song-title-row { margin-bottom: 20px; text-align: center; }
.song-artist { font-size: 16px; color: #fff; margin: 0; font-weight: bold; }
.song-title { font-size: 13px; color: var(--accent-orange); margin: 5px 0 0 0; }
.progress-bar-container { margin-bottom: 10px; }
.progress-bar { height: 4px; background-color: rgba(255, 255, 255, 0.1); border-radius: 2px; position: relative; }
.progress-current { width: 100%; height: 100%; background-color: var(--accent-orange); border-radius: 2px; animation: livePulse 2s infinite alternate; }
@keyframes livePulse { 0% { opacity: 0.4; } 100% { opacity: 1; } }
.time-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-secondary); margin-top: 5px; }
.player-controls { display: flex; justify-content: center; align-items: center; gap: 20px; }
.player-control-icon { color: var(--text-secondary); font-size: 18px; cursor: pointer; }
.play-btn-circle { width: 45px; height: 45px; border-radius: 50%; background-color: var(--accent-orange); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; cursor: pointer; transition: transform 0.2s; }
.play-btn-circle:hover { transform: scale(1.08); }

.flow-item { display: flex; gap: 15px; margin-bottom: 10px; font-size: 12px; }
.flow-time { color: var(--text-secondary); width: 90px; flex-shrink: 0; }
.flow-title { color: #fff; }

.app-ad-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.app-info-ad h2 { font-size: 16px; color: var(--text-color); margin: 0 0 10px 0; }
.app-info-ad p { font-size: 12px; color: var(--text-secondary); margin: 0 0 15px 0; }
.store-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.store-btn { background-color: transparent; border: 1px solid var(--border-color); color: #fff; padding: 5px 10px; border-radius: 5px; cursor: pointer; font-size: 11px; }
.app-mockup { width: 80px; height: 120px; border-radius: 10px; border: 2px solid #333; background: linear-gradient(135deg, rgba(216, 67, 132, 0.2) 0%, rgba(13, 18, 24, 0.67) 100%); flex-shrink: 0; }

.fixed-player { position: fixed; bottom: 0; left: 0; right: 0; height: 70px; background-color: #1a1e26; border-top: 1px solid var(--border-color); display: flex; align-items: center; padding: 0 40px; justify-content: space-between; z-index: 1000; }
.fixed-left { display: flex; align-items: center; gap: 15px; }
.fixed-thumb { width: 40px; height: 40px; border-radius: 5px; background: linear-gradient(135deg, #ccc 0%, #1a1e26 100%); flex-shrink: 0; }
.fixed-song-info h4 { font-size: 14px; color: #fff; margin: 0; }
.fixed-song-info p { font-size: 12px; color: var(--accent-orange); margin: 0; }
.fixed-controls { display: flex; align-items: center; gap: 15px; }
.fixed-control-icon { color: var(--text-secondary); cursor: pointer; }
.play-btn-circle-small { width: 35px; height: 35px; border-radius: 50%; background-color: var(--accent-orange); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; cursor: pointer; }
.fixed-right { display: flex; align-items: center; gap: 15px; }
.volume-control { display: flex; align-items: center; gap: 10px; }
.volume-bar { width: 100px; height: 4px; background-color: rgba(255, 255, 255, 0.1); border-radius: 2px; cursor: pointer; position: relative; }
.volume-current { width: 80%; height: 100%; background-color: var(--accent-orange); border-radius: 2px; }

/* İÇ SAYFALAR İÇİN GENEL KARTLAR */
.page-title { font-size: 24px; margin-bottom: 20px; border-left: 4px solid var(--accent-pink); padding-left: 15px; }
.liste-karti { background-color: rgba(26, 30, 38, 0.4); border: 1px solid var(--border-color); border-radius: 15px; padding: 20px; margin-bottom: 20px; }
.top20-satir { display: flex; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--border-color); }
.top20-satir:last-child { border-bottom: none; }
.top20-sira { font-size: 22px; font-weight: bold; color: var(--accent-orange); width: 40px; text-align:center; }
.dj-kart-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.dj-kart { background-color: rgba(26, 30, 38, 0.4); border: 1px solid var(--border-color); border-radius: 15px; padding: 20px; text-align: center; }
.dj-kart img, .dj-foto-placeholder { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%); }
.pagination { display:flex; gap:8px; justify-content:center; margin-top:20px; }
.pagination a, .pagination span { padding:6px 12px; border:1px solid var(--border-color); border-radius:8px; color:#fff; }
.pagination .aktif { background-color: var(--accent-pink); }

@media (max-width: 1024px) {
    .app-container { flex-direction: column; }
    .sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border-color); padding: 15px 20px; }
    .logo-container { margin-bottom: 15px; }
    .menu-items { display: flex; overflow-x: auto; padding-bottom: 10px; gap: 5px; }
    .menu-items li { border-left: none; border-bottom: 3px solid transparent; border-radius: 8px; }
    .menu-items li.active { border-left: none; border-bottom: 3px solid var(--accent-pink); border-top-right-radius: 8px; border-bottom-right-radius: 8px; }
    .follow-us { display: none; }
    .main-content { padding: 20px; }
    .bottom-grid { grid-template-columns: 1fr; }
    .clip-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .top-bar { flex-direction: column; align-items: stretch; }
    .search-container { max-width: 100%; }
    .top-bar-right { justify-content: space-between; width: 100%; }
    .clip-row { grid-template-columns: 1fr; }
    .broadcaster-card { flex-direction: column; text-align: center; }
    .fixed-player { padding: 0 15px; }
    .fixed-right, .fixed-controls .fa-random, .fixed-controls .fa-redo-alt { display: none; }
    .hero-overlay-text { font-size: 14px; letter-spacing: 3px; }
}
