:root {
  --dark: #111c2e;
  --white: #ffffff;

  --text-dark: #202020;
  --text-lightgray: #aaaaaa;

  --grad1-start: #2f55c1;
  --grad1-end: #543dc5;

  --grad2-start: #2334ac;
  --grad2-end: #3c2baa;

  --warm1: #f2a65a;
  --warm2: #ff6f4f;

  --radius: 12px;
  --transition: 0.3s ease;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* GLOBAL */

html, body {
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, .logo {
  font-family: 'Montserrat', sans-serif;
}

/* CONTAINER */
.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1400px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}

/* ========================= */
/*        HEADER             */
/* ========================= */

.main-header {
  background: var(--dark);
  padding: 40px 0 30px 0;
  text-align: center;
}

/* LOGO SVG */
.header-logo-link {
  display: inline-block;
}

.header-logo-link:focus,
.header-logo-link:active {
  outline: none;
}

/* Efectul de hover rămâne pe imagine */
.header-logo-img {
  width: 140px;
  margin-bottom: 40px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

@media (hover: hover) {
  .header-logo-img:hover {
    transform: scale(1.06);
    filter: brightness(1.1);
  }
}


/* LINIE DECORATIVA */
.header-line {
  width: 40%;
  margin: 0 auto 25px auto;
  height: 2px;
  background: linear-gradient(90deg, var(--grad1-start), var(--grad1-end));
  border-radius: 2px;
}

/* ========================= */
/*      MENIU DESKTOP        */
/* ========================= */

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* SPATIERE REALA INTRE BUTOANE */
.main-menu li {
  margin: 0 15px; /* <<< AICI reglezi spatiul intre butoane */
}

/* LINKURI */
.main-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;

  display: flex;
  align-items: center;
  gap: 6px; /* spatiu mic intre icon si text */

  transition: all 0.35s ease;
}

/* ICON */
.menu-icon {
  width: 20px;
  height: 20px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: transform .3s ease, opacity .3s ease, filter .3s ease;
}

/* HOVER (DESKTOP ONLY) */
@media (hover: hover) {
  .main-menu a:hover {
    text-shadow:
      0 0 10px #2f55c1,
      0 0 20px #2f55c1,
      0 0 30px #2f55c1;
  }

  .main-menu a:hover .menu-icon {
    transform: scale(1.18);
    opacity: 1;
    filter: drop-shadow(0 0 8px #2f55c1);
  }
}

/* ACTIVE */
.main-menu a.active {
  text-shadow:
    0 0 10px #2f55c1,
    0 0 20px #2f55c1,
    0 0 30px #2f55c1;
}

.main-menu a.active .menu-icon {
  opacity: 1;
  transform: scale(1.18);
  filter: drop-shadow(0 0 8px #2f55c1);
}




/* ============================================= */
/*            RESPONSIVE DESKTOP → MOBILE        */
/* ============================================= */

@media (max-width: 768px) {
  .main-menu {
    display: none; /* ascundem desktop */
  }
}


/* ============================================= */
/*            MENIU MOBIL (STYLE APP)            */
/* ============================================= */

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {

  .mobile-menu {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: 88%;
    padding: 14px 10px;

    background: var(--dark);
    border-radius: 14px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 10px 35px rgba(0,0,0,0.45);
    z-index: 9999;

    -webkit-tap-highlight-color: transparent;
  }

  /* Linkurile mobile — icon SUS, text JOS */
  .mobile-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    width: 25%;
    transition: color 0.25s ease, text-shadow 0.25s ease;

    /* IMPORTANT: eliminam zoom-ul pe mobil */
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
  }

  /* Iconuri mobile */
  .mobile-menu .mobile-icon {
    width: 22px;
    height: 22px;
    opacity: 0.85;

    /* eliminam scaling pe mobil */
    transform: none !important;
    transition: opacity .25s ease;
  }

  /* Hover → doar culoare, fără zoom (mobil) */
  .mobile-menu a:hover {
    text-shadow: 0 0 8px #2f55c1;
  }

  /* ACTIVE → fără zoom, fără scale, doar glow */
  .mobile-menu a.active {
    text-shadow: 0 0 8px #2f55c1;
  }

  .mobile-menu a.active .mobile-icon {
    opacity: 1;
  }
}


/* ============================================= */
/*                PLAYER SECTION                 */
/* ============================================= */

.radio-player-section {
  padding: 50px 0;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  body .radio-player-section {
    padding: 50px 0 0 !important;
  }
}

/* ============================================= */
/*                 PLAYER CONTAINER              */
/* ============================================= */

.radio-player-card {
  width: 92%;
  max-width: 480px;
  padding: 50px 40px;
  text-align: center;

  position: relative;
  overflow: hidden;
  border-radius: 28px;

  /* BACKGROUND IMAGE + DARK GRADIENT */
  background-image:
    linear-gradient(145deg, rgba(15,23,42,0.85), rgba(30,41,59,0.85)),
    url("../imgs/player-bg.svg");

  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;

  /* SHADOW */
  box-shadow:
    18px 18px 40px #0a0f1a,
    -18px -18px 40px #2a3955;
}

/* ============================================= */
/*              BOTTOM OVERLAY EFFECT            */
/* ============================================= */

.radio-player-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 120px;

  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.0)
  );

  border-radius: inherit;
  pointer-events: none;
}

/* ============================================= */
/*                      TITLE                    */
/* ============================================= */

.player-title {
  font-family: Montserrat;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--white);
  position: relative;
  z-index: 10;
}

/* ============================================= */
/*                 VINYL DISC WRAPPER            */
/* ============================================= */

.vinyl-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 45px;
  z-index: 10;
}

/* DISC */
.vinyl-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  filter: drop-shadow(0 0 25px rgba(0,0,0,0.6));
  transform: rotate(0deg);
}

/* PLAY BUTTON */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #f2a65a, #ff6f4f);
  box-shadow:
    0 0 30px rgba(255,120,60,0.5),
    0 0 45px rgba(255,80,60,0.3);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.25s ease;
}

.play-button img {
  width: 52px;
  height: 52px;
  pointer-events: none;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================= */
/*                 VOLUME CONTROLS               */
/* ============================================= */

.volume-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  z-index: 10;
}

.mute-btn {
  background: none;
  border: none;
  cursor: pointer;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.mute-btn img {
  width: 42px;
  height: 42px;
  pointer-events: none;
}

/* ============================================= */
/*          MODERN UX VOLUME SLIDER              */
/* ============================================= */

#volumeSlider {
  -webkit-appearance: none;
  width: 220px;
  height: 10px;

  border-radius: 10px;
  outline: none;
  cursor: pointer;

  background: linear-gradient(90deg, #f2a65a, #ff6f4f);

  box-shadow: inset 0 0 10px rgba(0,0,0,0.4);
}

/* Track (Firefox) */
#volumeSlider::-moz-range-track {
  background: linear-gradient(90deg, #f2a65a, #ff6f4f);
  height: 10px;
  border-radius: 10px;
}

/* Thumb MODERN (Chrome/Safari) */
#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;

  width: 24px;
  height: 24px;
  border-radius: 50%;

  background: #f2a65a;
  border: 3px solid #ffffff20;

  box-shadow:
    0 0 10px rgba(255,120,60,0.6),
    0 0 20px rgba(255,80,60,0.4);

  cursor: grab;
  transition: 0.15s ease;
}

#volumeSlider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
}

/* Thumb for Firefox */
#volumeSlider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;

  background: #f2a65a;
  border: 3px solid rgba(255,255,255,0.2);

  box-shadow:
    0 0 10px rgba(255,120,60,0.6),
    0 0 20px rgba(255,80,60,0.4);

  cursor: grab;
}

/* ============================================= */
/*                MOBILE OPTIMIZATION            */
/* ============================================= */

@media (max-width: 600px) {

  .radio-player-card {
    padding: 35px 25px;
    max-width: 70%;
    transform: translateY(-40px);
  }

  .player-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .vinyl-wrapper {
    width: 160px;
    height: 160px;
    margin-bottom: 35px;
  }

  .play-button {
    width: 70px;
    height: 70px;
    touch-action: none !important;
    -webkit-user-select: none;
    user-select: none;
  }

  .play-button img {
    width: 40px;
    height: 40px;
  }

  .volume-box {
    gap: 18px;
    margin-top: 15px;
  }

  .mute-btn {
    width: 34px;
    height: 34px;
  }

  .mute-btn img {
    width: 34px;
    height: 34px;
  }

  #volumeSlider {
    width: 170px;
    height: 9px;
  }

  #volumeSlider::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
  }

  #volumeSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
  }

  .radio-player-card::after {
    height: 90px;
  }
}

@media (max-width: 400px) {

  .vinyl-wrapper {
    width: 140px;
    height: 140px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button img {
    width: 36px;
    height: 36px;
  }

  #volumeSlider {
    width: 150px;
  }
}


/* ======================================================== */
/*          SECTION: INSTALL SHORTCUT (FULL WHITE)          */
/* ======================================================== */

.install-shortcut-section {
  width: 100%;
  background: #ffffff;  /* full wide alb */
  padding: 60px 0;
}

.install-box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.install-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.1));
}

.install-title {
  font-size: 32px;
  font-weight: 700;
  color: #111c2e;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.install-subtitle {
  font-size: 17px;
  color: #202020;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
}

/* BUTON */
.install-btn {
  background: #f2a65a;
  color: #ffffff;
  border: none;
  padding: 14px 26px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.install-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.install-btn-icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

/* MOBILE */
@media (max-width: 600px) {
  .install-title {
    font-size: 26px;
  }
  .install-icon {
    width: 65px;
    height: 65px;
  }
}

/* ============================= */
/*    COUNTER – SIMPLE VERSION   */
/* ============================= */

.install-counter {
  margin-top: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #202020;
  opacity: 0.85;

  text-align: center;

  /* fără background, fără border */
  background: none;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;

  transition: all .2s ease;
}

/* Număr */
.install-counter span {
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  background: linear-gradient(90deg, #2f55c1, #543dc5);
  transition: transform .25s ease;
}

/* animația de bounce când numărul crește */
.install-counter span.updated {
  transform: scale(1.18);
}

/* ============================= */
/*          RESPONSIVE           */
/* ============================= */

@media (max-width: 600px) {
  .install-counter {
    font-size: 14px;
  }

  .install-counter span {
    font-size: 16px;
  }
}





/* ============================================= */
/*                  SOCIAL SECTION                */
/* ============================================= */

.social-section {
  padding: 40px 0 80px;
  background: var(--white);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.social-box {
  background: #f7f7f7;
  padding: 40px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.social-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.12);
}

.social-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.social-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark);
}

.social-box p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Butoane */
.social-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fb-btn {
  background: linear-gradient(90deg, #2f55c1, #543dc5);
  color: #fff;
}

.fb-btn:hover {
  background: linear-gradient(90deg, #2334ac, #3c2baa);
}

.yt-btn {
  background: var(--warm1);
  color: var(--dark);
}

.yt-btn:hover {
  background: var(--warm2);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-box {
    text-align: center;
    padding: 35px 25px;
  }

  .social-icon {
    margin: 0 auto 20px auto;
  }
}


/* ============================================= */
/*                SUPPORT SECTION                */
/* ============================================= */

.support-section {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(180deg, #0e1624, #111c2e);
}

.support-top-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px auto;
  opacity: 0.9;
  display: block;
}

.support-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 18px;
}

.support-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #e8e8e8;
  max-width: 720px;
  margin: 0 auto 15px auto;
  line-height: 1.55;
}

.support-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #cfcfcf;
  max-width: 700px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

.support-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.support-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 32px;
  border-radius: 14px;

  font-size: 17px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* ICONS */
.support-icon {
  width: 22px;
  height: 22px;
}

/* CONTACT BUTTON */
.contact-btn {
  background: linear-gradient(90deg, #2f55c1, #543dc5);
  color: #ffffff;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #2334ac, #3c2baa);
  transform: translateY(-3px);
}

/* DONATE BUTTON */
.donate-btn {
  background: var(--warm2);
  color: #ffffff;
}

.donate-btn:hover {
  background: #ff7f62;
  color: #ffffff;
  transform: translateY(-3px);
}


/* ============================================= */
/*              MOBILE OPTIMIZATION              */
/* ============================================= */

@media (max-width: 768px) {

  .support-section {
    padding: 60px 20px;
  }

  .support-top-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
  }

  .support-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .support-subtitle {
    font-size: 15px;
    margin-bottom: 12px;
    padding: 0 10px;
  }

  .support-text {
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 28px;
  }

  .support-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .support-btn {
    margin: 0 auto;
    width: 80%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
  }

  .support-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 430px) {
  .support-title {
    font-size: 23px;
  }
}


/* ========================================= */
/*                  FOOTER                   */
/* ========================================= */

.site-footer {
  background: #0d1421;
  color: #e9e9e9;
  padding: 60px 0 30px 0;
  font-family: 'Inter', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.footer-left {
  max-width: 50%;
}

.footer-title {
  font-size: 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 15px;
  margin-bottom: 6px;
  color: #e1e1e1;
}

.contact-link {
  color: #e1e1e1;
  text-decoration: none;
  transition: 0.25s ease;
}

.contact-link:hover {
  color: var(--warm1);
  text-shadow: 0 0 6px rgba(242,166,90,0.5);
}

/* RIGHT SIDE */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* AICI aliniem la dreapta pe desktop */
  text-align: right;
}

.footer-social-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social-link img {
  width: 32px;
  height: 32px;
  transition: all .3s ease;
  opacity: 0.85;
}

.footer-social-link:hover img {
  opacity: 1;
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px var(--warm1));
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: #aaaaaa;
}

/* ========================================= */
/*               RESPONSIVE                  */
/* ========================================= */

@media (max-width: 768px) {

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-left {
    max-width: 100%;
    text-align: center;
  }

  .footer-right {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }

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

  /* MARGIN BOTTOM EXTRA DOAR PE MOBIL */
  .footer-bottom {
    margin-bottom: 100px;
  }
}

/* ===================================== */
/*           NOW PLAYING SECTION         */
/* ===================================== */

.now-playing-section {
  width: 100%;
  background: linear-gradient(180deg, #111c2e 0%, #0c1424 100%);

  text-align: center;
  color: #fff;
}

.now-card {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 15px 20px;
  border-radius: 14px;

  backdrop-filter: blur(4px);

  transition: all .25s ease;
}

.now-card:hover {
  background: rgba(255,255,255,0.1);
}

.now-icon {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.now-song {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .5px;

  transition: opacity .25s ease;
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {

  .now-playing-section {
    padding: 5px 0 !important;
  }

  .now-card {
    padding: 15px 22px;
  }

  .now-song {
    font-size: 14px;
  }

  .now-icon {
    width: 35px;
    height: 35px;
  }
}

.live-round {
    background: #ff1e1e;
    color: white;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
}

.pulse {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    animation: pulse2 1.3s infinite;
}

@keyframes pulse2 {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

