#auth-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(18, 18, 18, 0.95); display: none; align-items: center; justify-content: center; z-index: 2000; backdrop-filter: blur(5px); }
.auth-box { background: #1e1e1e; padding: 40px; border-radius: 12px; box-shadow: 0 0 25px rgba(0,0,0,0.5); text-align: center; width: 90%; max-width: 400px; }
.auth-box h1 { color: #e53935; margin-bottom: 12px; font-size: 1.6rem; }
.auth-box p { color: #ccc; margin-bottom: 24px; min-height: 20px;}
.auth-box form input { display: block; width: 100%; padding: 12px; margin-bottom: 16px; border-radius: 8px; border: 1px solid #444; background-color: #333; color: #f0f0f0; font-family: 'Montserrat', sans-serif; font-size: 15px; }
.auth-box form button { width: 100%; padding: 14px; border-radius: 8px; border: none; background-color: #e53935; color: white; font-weight: 600; font-size: 16px; cursor: pointer; transition: background-color 0.3s; }
.auth-box form button:hover { background-color: #c42d2a; }
.auth-toggle { margin-top: 20px; font-size: 14px; color: #ccc; }
.auth-toggle a { color: #e53935; text-decoration: none; font-weight: 600; }

/* ŞİFREMİ UNUTTUM LİNKİ İÇİN STİL */
.forgot-password-link {
    display: block;
    margin: 15px 0 10px;
    color: #a0a0a0;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}
.forgot-password-link:hover {
    color: #fff;
}

.logout-btn { color: #f0f0f0; background: #e53935; padding: 8px 15px; border-radius: 20px; text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: all 0.2s ease-in-out; }
.logout-btn:hover { background: #fff; color: #e53935; }
.header-controls { float: right; margin-top: 6px;}
.desktop-only { display: block; }
.mobile-only  { display: none; }
@media (max-width:650px) { 
  .desktop-only { display: none; } 
  .mobile-only { display: block; } 
  .grid { display: block; padding: 0 20px 20px; }
  .grid .station-card { margin-bottom: 16px; }
  .section-title {margin: 40px 20px 20px;}
  .mobile-only .schedule { margin-top: 30px; margin-left: 20px; margin-right: 20px; }
  hr.section-divider { margin: 20px; }
}
@media (min-width: 480px) and (max-width: 650px) { 
  .section-carousel .station-card { flex-basis: 45%; } 
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: #121212; color: #f0f0f0; }
header { background: #1f1f1f; padding: 16px 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.5); overflow: hidden;}
header h1 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2rem; color: #e53935; letter-spacing: 1px; float: left; }
.section-title { font-size: 1.5rem; color: #f0f0f0; margin: 40px 40px 20px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap:24px; padding:0 40px 40px; }

/* ORİJİNAL KART TASARIMI */
.station-card { 
    background:#1e1e1e; 
    border-radius:12px; 
    box-shadow:0 0 12px rgba(0,0,0,0.3); 
    padding:20px 16px; 
    text-align:center; 
    position: relative;
    cursor:pointer; 
    display:flex; 
    flex-direction:column; 
    align-items:center; 
    transition:transform .2s; 
    user-select: none; 
    -webkit-user-drag: none;
}
.station-card:hover { transform:scale(1.03); box-shadow:0 0 18px rgba(229,57,53,0.5); }
.station-card img { width:90px;height:90px;border-radius:12px;margin-bottom:12px;object-fit:cover; pointer-events: none; }
.station-card h3 { font-size:1.12rem; margin:8px 0 4px; }
.station-card p { font-size:.92rem; color:#ccc; }
.favorite-icon { position: absolute; top: 12px; right: 12px; color: #aaa; cursor: pointer; font-size: 28px; transition: color 0.2s, transform 0.2s; z-index: 5; }
.favorite-icon:hover { transform: scale(1.1); }
.favorite-icon.favorited { color: #e53935; }
/* BİTİŞ */

hr.section-divider { border: 0; height: 1px; background-image: linear-gradient(to right, rgba(42, 42, 42, 0), rgba(42, 42, 42, 0.75), rgba(42, 42, 42, 0)); margin: 20px 40px; }
.schedule { background:#1e1e1e; margin:0 40px 40px; padding:20px; border-radius:8px; }
.schedule h4 { margin-bottom:12px; color:#fdd835; }
.schedule table { width:100%; border-collapse:collapse; }
.schedule th, .schedule td { border-bottom:1px solid #333; padding:8px 4px; text-align:left; font-size:.9rem; }
.schedule th { color:#ccc; font-weight:600; }
.schedule td { color: #e0e0e0; font-weight: 500; }
.about-section { background:#141414; padding:30px 40px; color:#aaa; font-size:.9rem; }
.about-section h4 { margin-bottom:15px; color:#f0f0f0; }
.about-section p { margin-bottom: 10px; line-height: 1.6; }
footer .footer-button { display:inline-block; background:#e53935; color:#fff; padding:10px 20px; border-radius:8px; font-weight:600; text-decoration:none; transition: transform 0.2s ease, background-color 0.2s ease; }
footer .footer-button:hover { background-color: #d93847; transform: scale(1.05); }
.player-bar-dark { position:fixed; bottom:20px; left:50%; transform:translateX(-50%); background:#202020; padding:16px 24px; border-radius:50px; display:none; align-items:center; gap:20px; z-index:1000; box-shadow:0 4px 16px rgba(0,0,0,0.6); max-width:90%; min-width:300px; }
.player-logo { width:50px;height:50px;border-radius:50%; background:#242424; box-shadow:0 2px 12px #0003; }
.player-info-bar { display:flex; align-items:center; gap:8px; font-size:0.9rem; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.live-badge-dot { width: 14px; height: 14px; background: #e53935; border-radius: 50%; animation: blink 1s infinite; margin-left: 8px; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.player-controls { display:flex; align-items:center; gap:16px; }
.circle-btn { background:transparent; border:none; cursor:pointer; }
.circle-btn .material-icons { font-size:30px; color:#f0f0f0; transition:transform .2s; }
.circle-btn:hover .material-icons { transform:scale(1.1); color:#e53935; }
.section-carousel { display:flex; overflow-x:auto; gap:16px; scroll-snap-type:x mandatory; padding:0 20px; -ms-overflow-style: none; scrollbar-width: none; }
.section-carousel::-webkit-scrollbar { display: none; }
.section-carousel .station-card { flex: 0 0 45%; scroll-snap-align: start; }
.heart { display: inline-block; margin-left: .25rem; animation: pulse 1.4s ease-in-out infinite; transform-origin: center; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }
.player-info-bar { overflow: hidden; }
.marquee { display: inline-block; white-space: nowrap; animation: marquee 6s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }