/* ===== DANIBUIS RÁDIÓ – 2000-es stílus ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 13px;
  background: #cce8ff url('assets/bg-tile.gif') repeat;
  color: #222;
  min-width: 800px;
}

/* ===== HEADER ===== */
#header {
  background: linear-gradient(180deg, #0077cc 0%, #005599 100%);
  border-bottom: 4px solid #ff69b4;
}
#header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 960px;
  margin: 0 auto;
}
#logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}
#logo-img {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  border: 4px solid #ff69b4;
  box-shadow: 0 0 14px #ff69b488;
}
#site-title h1 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 0 #003366;
  letter-spacing: 1px;
}
#site-title p {
  font-size: 13px;
  color: #ffe066;
  font-weight: 700;
  text-shadow: 1px 1px 0 #003366;
}
#live-badge {
  text-align: right;
}
.live-dot {
  color: #00ff88;
  font-size: 12px;
  font-weight: 700;
  animation: blinky 1s infinite;
}
.online-txt {
  color: #ffcc00;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}
@keyframes blinky { 0%,100%{opacity:1} 50%{opacity:0} }

/* ===== MARQUEE ===== */
#marquee-bar {
  background: #ff69b4;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 0;
  border-bottom: 2px solid #cc0077;
}

/* ===== NAV ===== */
#nav {
  background: linear-gradient(180deg, #0055aa 0%, #003388 100%);
  display: flex;
  gap: 2px;
  padding: 0 20px;
  border-bottom: 3px solid #ffcc00;
  max-width: 960px;
  margin: 0 auto;
  flex-wrap: wrap;
}
#nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  display: block;
  border-radius: 4px 4px 0 0;
  white-space: nowrap;
}
#nav a:hover, #nav a.active {
  background: #ffcc00;
  color: #003388;
}

/* ===== PAGE LAYOUT ===== */
#page-body {
  display: flex;
  gap: 14px;
  max-width: 960px;
  margin: 14px auto;
  padding: 0 10px;
  align-items: flex-start;
}
#main-col {
  flex: 1;
  min-width: 0;
}
#sidebar {
  width: 220px;
  flex-shrink: 0;
}

/* ===== BOXES ===== */
.box {
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}
.blue-box {
  background: #fff;
  border: 2px solid #0077cc;
  box-shadow: 3px 3px 0 #0077cc44;
}
.pink-box {
  background: #fff;
  border: 2px solid #ff69b4;
  box-shadow: 3px 3px 0 #ff69b444;
}
.box-title {
  color: #0055aa;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px dashed #cce8ff;
}
.side-title {
  color: #cc0077;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 2px dashed #ffccee;
}

/* ===== PLAYER ===== */
.now-playing {
  background: linear-gradient(90deg, #003388, #0055aa);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
}
.now-playing strong { color: #ffcc00; font-size: 14px; }
.note-bounce {
  font-size: 20px;
  animation: bounce 0.6s ease-in-out infinite alternate;
  display: inline-block;
}
@keyframes bounce { from{transform:translateY(0)} to{transform:translateY(-5px)} }

/* ===== TOP 10 ===== */
.hitlista { list-style: none; }
.hitlista li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dotted #cce8ff;
  font-size: 13px;
  color: #003388;
}
.hitlista li:last-child { border-bottom: none; }
.rank {
  background: #0077cc;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rank.gold { background: #ffaa00; color: #5a3000; }
.rank.silver { background: #aaaaaa; color: #333; }
.rank.bronze { background: #cc6633; color: #fff; }
.song-title { font-weight: 700; color: #003388; }
.song-artist { color: #666; font-size: 11px; }

/* ===== MŰSOR ===== */
.prog-grid {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 10px;
  font-size: 13px;
}
.prog-time { color: #ff69b4; font-weight: 700; padding: 2px 0; }
.prog-name { color: #003388; padding: 2px 0; }
.prog-highlight { color: #cc0077; font-weight: 700; }
.prog-active { background: #fffbe6; border-radius: 4px; padding: 2px 4px !important; }

/* ===== KÍVÁNSÁGOK ===== */
.wish-item {
  background: #f0f8ff;
  border: 1px solid #cce8ff;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #003388;
}
.wish-item strong { color: #cc0077; }
.wish-item em { color: #0055aa; }
.wish-msg { color: #555; font-size: 12px; margin-top: 3px; font-style: italic; }
.wish-time { color: #999; font-size: 11px; margin-top: 3px; }

/* ===== SIDEBAR ELEMEK ===== */
#clock {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #0055aa;
  font-family: 'Courier New', monospace;
  letter-spacing: 3px;
  background: #e8f4ff;
  border-radius: 6px;
  padding: 6px;
  border: 1px inset #0077cc44;
}
#date-display {
  text-align: center;
  font-size: 11px;
  color: #666;
  margin-top: 5px;
}
.weather { text-align: center; }
.temp { font-size: 32px; font-weight: 700; color: #ff6600; }
.weather-desc { font-size: 12px; color: #0055aa; font-weight: 700; margin-top: 3px; }
.weather-city { font-size: 11px; color: #666; margin-top: 2px; }

.banner-pink {
  background: linear-gradient(90deg, #ff69b4, #cc0077);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  border: 2px solid #ff0099;
  cursor: pointer;
  box-shadow: 2px 2px 0 #cc007788;
}
.banner-pink:hover { opacity: 0.9; }

.visit-num {
  font-size: 22px;
  font-weight: 700;
  color: #0055aa;
  letter-spacing: 4px;
  font-family: 'Courier New', monospace;
  text-align: center;
  display: block;
}
.visit-label { text-align: center; font-size: 11px; color: #666; margin-top: 2px; }
.stars-rating { color: #ffaa00; letter-spacing: 3px; font-size: 18px; text-align: center; margin: 6px 0 2px; }
.rating-count { text-align: center; font-size: 11px; color: #666; }

.contact-list p {
  padding: 3px 0;
  color: #333;
  font-size: 12px;
}
.contact-list a { color: #0055aa; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.friend-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}
.friend-links a { color: #0055aa; text-decoration: none; }
.friend-links a:hover { text-decoration: underline; }

/* ===== BUTTONS ===== */
.btn-pink {
  background: linear-gradient(180deg, #ff69b4, #cc0077);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #990055;
  cursor: pointer;
  display: inline-block;
}
.btn-pink:hover { opacity: 0.9; }
.btn-blue {
  background: linear-gradient(180deg, #0077cc, #0055aa);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #003388;
  cursor: pointer;
  display: inline-block;
}
.btn-blue:hover { opacity: 0.9; }

/* ===== FORMOK (kívánság, kapcsolat, szavazás) ===== */
.form-group { margin-bottom: 10px; }
.form-group label {
  display: block;
  font-weight: 700;
  color: #003388;
  margin-bottom: 4px;
  font-size: 13px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 6px 10px;
  border: 2px solid #0077cc;
  border-radius: 6px;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 13px;
  color: #003388;
  background: #f0f8ff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff69b4;
  background: #fff;
}
.form-group textarea { min-height: 80px; resize: vertical; }

/* ===== ÜZENET DOBOZOK ===== */
.msg-ok {
  background: #ddffdd;
  border: 2px solid #00aa44;
  border-radius: 8px;
  padding: 10px 14px;
  color: #005522;
  font-weight: 700;
  margin-bottom: 12px;
}
.msg-err {
  background: #ffdddd;
  border: 2px solid #cc0000;
  border-radius: 8px;
  padding: 10px 14px;
  color: #660000;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===== FULL-WIDTH PAGES ===== */
.page-full {
  max-width: 960px;
  margin: 14px auto;
  padding: 0 10px;
}

/* ===== FOOTER ===== */
#footer {
  background: linear-gradient(180deg, #003388, #001a66);
  color: #aaccff;
  font-size: 12px;
  text-align: center;
  padding: 16px;
  border-top: 4px solid #ff69b4;
  margin-top: 10px;
}
#footer a { color: #ffcc00; text-decoration: none; }
#footer a:hover { text-decoration: underline; }
.footer-logo { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.footer-small { font-size: 10px; color: #6688aa; margin-top: 8px; }
