/*
Theme Name: PRTV Media
Author: [Numele tău sau firma]
Version: 1.0
Description: Tema custom PRTV Media
*/

/* HEADER BAR PREMIUM */
.header-bar {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px -10px #04376311;
  max-width: 1140px;
  margin: 32px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 38px;
  position: relative;
  z-index: 30;
}

/* LOGO */
.prtv-logo {
  font-size: 1.43rem;
  font-weight: bold;
  letter-spacing: -1px;
}

/* MENIU DESKTOP */
.prtv-menu-list {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}
.prtv-menu-list li a {
  text-decoration: none;
  color: #043763;
  font-size: 1.11rem;
  font-weight: 600;
  transition: color 0.17s;
}
.prtv-menu-list li a:hover {
  color: #ffd749;
}

/* CTA BUTTONS */
.prtv-header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}
.prtv-btn {
  display: inline-block;
  background: #043763;
  color: #fff;
  font-weight: 700;
  font-size: 1.09rem;
  padding: 11px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.prtv-btn.highlight {
  background: #ffd749;
  color: #043763;
  font-weight: 800;
  box-shadow: 0 2px 9px -4px #ffd74933;
}
.prtv-btn.highlight:hover {
  background: #ffe77d;
  color: #043763;
}

/* HAMBURGER – mobil/tabletă */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #043763;
  cursor: pointer;
  margin-left: 18px;
}

/* MENIU MOBIL */
.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 6px 18px #012c4938;
  z-index: 105;
  flex-direction: column;
  padding: 17px 0 18px 0;
  border-radius: 0 0 16px 16px;
  animation: mobileMenuFade 0.22s ease;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: #043763;
  padding: 17px 26px;
  font-size: 1.18rem;
  text-align: left;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.16s;
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover {
  background: #f7fafd;
  color: #ffcc00;
}

/* ANIMATIE DESCHIDERE MENIU MOBIL */
@keyframes mobileMenuFade {
  from { opacity: 0; transform: translateY(-12px);}
  to { opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .header-bar {
    max-width: 99vw;
    padding: 10px 4vw;
    border-radius: 13px;
    gap: 14px;
  }
  .prtv-menu-list,
  .prtv-header-cta {
    display: none !important;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 111;
  }
}
@media (max-width: 600px) {
  .header-bar {
    padding: 5px 2vw;
    border-radius: 9px;
    flex-direction: row;
    gap: 0;
  }
  .prtv-logo {
    font-size: 1.11rem;
  }
  .mobile-menu a {
    font-size: 1rem;
    padding: 13px 10px;
  }
}

@media (max-width: 950px) {
  .mobile-menu {
    align-items: center;
  }
  .mobile-menu a {
    width: 100%;
    text-align: center;
  }
  .mobile-menu .prtv-btn {
    display: block;
    margin: 16px auto 0 auto;
    width: 90%;
    border-radius: 12px;
    font-size: 1.13rem;
    font-weight: 700;
    padding: 15px 0;
  }
  .mobile-menu .prtv-btn.highlight {
    background: #ffd749;
    color: #043763;
  }
  .mobile-menu .prtv-btn:not(.highlight) {
    background: #043763;
    color: #fff !important;
    border: none;
  }
}
/* Dropdown modern pentru desktop */
.prtv-menu-list .menu-item-has-children {
  position: relative;
}
.prtv-menu-list .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 210px;
  box-shadow: 0 8px 32px -7px #04376313;
  border-radius: 13px;
  z-index: 50;
  padding: 12px 0;
  margin: 0;
}
.prtv-menu-list .menu-item-has-children:hover > .sub-menu,
.prtv-menu-list .menu-item-has-children:focus-within > .sub-menu {
  display: block;
  animation: dropdownIn 0.19s;
}
.prtv-menu-list .sub-menu li {
  display: block;
}
.prtv-menu-list .sub-menu a {
  color: #043763;
  font-size: 1rem;
  padding: 10px 24px;
  display: block;
  text-align: left;
  border-radius: 7px;
  font-weight: 600;
  transition: background 0.13s;
}
.prtv-menu-list .sub-menu a:hover {
  background: #f3f7fa;
  color: #ffd749;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 950px) {
  .mobile-menu-list .menu-item-has-children > a:after {
    content: " ▼";
    font-size: .8em;
    margin-left: 3px;
  }
  .mobile-menu-list .sub-menu {
    display: none;
    padding-left: 0;
    background: #f8fafd;
    border-radius: 0 0 11px 11px;
    box-shadow: 0 4px 16px -9px #04376313;
    margin: 0 12px 0 12px;
  }
  .mobile-menu-list .menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .mobile-menu-list .sub-menu a {
    font-size: 1rem;
    padding: 12px 18px;
    background: none;
    color: #043763;
    border-radius: 7px;
    text-align: center;
    border-bottom: 1px solid #f3f3f3;
  }
}
/* Asigurare ca dropdown-ul nu e taiat */
.header-bar, .prtv-menu {
  overflow: visible !important;
}

/* Dropdown desktop extra safe */
.prtv-menu-list .menu-item-has-children {
  position: relative;
}
.prtv-menu-list .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 210px;
  box-shadow: 0 8px 32px -7px #04376313;
  border-radius: 13px;
  z-index: 9999;
  padding: 12px 0;
  margin: 0;
  border: 1px solid #e2e7ef;
}
.prtv-menu-list .menu-item-has-children:hover > .sub-menu,
.prtv-menu-list .menu-item-has-children:focus-within > .sub-menu {
  display: block;
  animation: dropdownIn 0.19s;
}
.prtv-menu-list .sub-menu li {
  display: block;
}
.prtv-menu-list .sub-menu a {
  color: #043763;
  font-size: 1rem;
  padding: 10px 24px;
  display: block;
  text-align: left;
  border-radius: 7px;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
}
.prtv-menu-list .sub-menu a:hover {
  background: #f3f7fa;
  color: #ffd749;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Dropdown mobil cu săgeată și tap */
@media (max-width: 950px) {
  .mobile-menu-list .menu-item-has-children > a:after {
    content: " ▼";
    font-size: .8em;
    margin-left: 3px;
  }
  .mobile-menu-list .sub-menu {
    display: none;
    padding-left: 0;
    background: #f8fafd;
    border-radius: 0 0 11px 11px;
    box-shadow: 0 4px 16px -9px #04376313;
    margin: 0 12px 0 12px;
    border: 1px solid #e2e7ef;
  }
  .mobile-menu-list .menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .mobile-menu-list .sub-menu a {
    font-size: 1rem;
    padding: 12px 18px;
    background: none;
    color: #043763;
    border-radius: 7px;
    text-align: center;
    border-bottom: 1px solid #f3f3f3;
  }
}
/* Logo wow dinamic */
.prtv-logo-wow {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-size: 1.52rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #043763 70%, #ffd749 98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prtv-logo-main {
  color: #043763;
  font-weight: 900;
  letter-spacing: -2px;
  font-size: 1.09em;
  text-shadow: 0 1px 6px #0437630f;
  text-transform: uppercase;
}

.prtv-logo-accent {
  color: #ffd749;
  font-weight: 700;
  font-size: 1.02em;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px #ffd7491c;
  margin-left: 2px;
  text-transform: uppercase;
}


/* Logo Premium cu text și logo WP */

/* Patch pentru vizibilitate perfectă și responsive pentru logo WP + PRTV Media */
.prtv-logo-premium {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: -1.1px;
  gap: 9px;
  min-width: 0;
  max-width: 97vw;
}
.prtv-logo-premium img.custom-logo {
  height: 54px !important;
  width: auto !important;
  max-width: 120px;
  margin-right: 10px;
  border-radius: 12px;
  background: transparent !important;
  box-shadow: 0 1px 8px #04376319;
  display: inline-block;
  vertical-align: middle;
  transition: height 0.2s;
}

@media (max-width: 800px) {
  .prtv-logo-premium img.custom-logo {
    height: 44px !important;
    max-width: 75px;
    margin-right: 7px;
    border-radius: 9px;
    background: transparent !important;
  }
}
@media (max-width: 480px) {
  .prtv-logo-premium img.custom-logo {
    height: 37px !important;
    max-width: 55px;
    margin-right: 4px;
    border-radius: 7px;
    background: transparent !important;
  }
}
.prtv-logo-prtv {
  color: #043763;
  font-weight: 900;
  font-size: 1.12em;
  letter-spacing: -2px;
  text-transform: uppercase;
  background: none;
  display: inline;
}
.prtv-logo-media {
  color: #ffd749;
  font-weight: 800;
  font-size: 1.03em;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0px;
  background: none;
  display: inline;
}
@media (max-width: 600px) {
  .prtv-logo-premium {
    font-size: 1.12rem;
    gap: 5px;
    max-width: 90vw;
  }
  .prtv-logo-premium img.custom-logo {
    height: 31px !important;
    max-width: 32px;
    background: transparent !important;
  }
}

@media (max-width: 800px) {
  .prtv-logo-premium {
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Patch pentru centrare garantată a logo-ului premium pe mobil */
@media (max-width: 800px) {
  .header-bar {
    justify-content: center !important;
  }
  .prtv-logo-premium {
    justify-content: center !important;
    width: 100%;
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 600px) {
  .header-bar {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 950px) {
  .mobile-menu {
    top: 90px; /* ajustează dacă headerul tău e mai mic sau mai mare */
    z-index: 98;
  }
  .prtv-logo-premium,
  .custom-logo-link {
    z-index: 110;
    position: relative;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    top: 110px;
  }
}
@media (max-width: 950px) {
  .menu-toggle {
    z-index: 120 !important;
    position: absolute;
    top: 18px;
    right: 22px;
  }
  .mobile-menu {
    top: 100px;
    z-index: 98;
    padding-top: 8px;
  }
}
@media (max-width: 600px) {
  .header-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 70px;
  }
  .hero, .hero-section {
    margin-top: 24px !important;
  }
}
/* FOOTER PREMIUM MINIMALIST */
.prtv-footer {
  background: #f6f8fb;
  border-top: 1.5px solid #e7ecf4;
  padding: 36px 0 14px 0;
  text-align: center;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  box-shadow: 0 2px 32px 0 #b5c3d611 inset;
}
.prtv-footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.prtv-footer-brand {
  font-size: 1.19rem;
  font-weight: 800;
  color: #043763;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-right: 18px;
}
.prtv-footer-menu .footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
}
.prtv-footer-menu .footer-nav li a {
  color: #043763;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 5px;
  transition: background 0.17s, color 0.17s;
}
.prtv-footer-menu .footer-nav li a:hover {
  color: #ffd749;
  background: #04376307;
}
.prtv-footer-copy {
  font-size: 0.97rem;
  color: #8d99ae;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Responsive footer */
@media (max-width: 800px) {
  .prtv-footer-inner {
    flex-direction: column;
    gap: 12px;
  }
  .prtv-footer-brand {
    margin-right: 0;
    margin-bottom: 4px;
    font-size: 1.03rem;
  }
  .prtv-footer-menu .footer-nav {
    gap: 14px;
    flex-direction: row;
    justify-content: center;
  }
  .prtv-footer {
    padding: 25px 0 10px 0;
  }
  .prtv-footer-copy {
    font-size: 0.91rem;
  }
}
@media (max-width: 500px) {
  .prtv-footer-inner {
    gap: 5px;
  }
  .prtv-footer-menu .footer-nav li a {
    font-size: 0.96rem;
    padding: 3px 4px;
  }
}

/* FOOTER WOW – Branding + Suport Premium + Linkuri */
.prtv-footer {
  background: #f6f8fb;
  border-top: 1.5px solid #e7ecf4;
  padding: 32px 0 10px 0;
  text-align: center;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  box-shadow: 0 2px 32px 0 #b5c3d611 inset;
}
/* --- WOW PREMIUM FOOTER PATCH --- */
.prtv-footer-wow {
  background: linear-gradient(135deg, #ffffffea 55%, #f6f8fbcc 100%);
  border-radius: 18px;
  box-shadow: 0 6px 36px -12px #04376314, 0 1.5px 12px #ffd7492a inset;
  padding: 32px 18px 18px 18px;
  margin: 0 auto 24px auto;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  position: relative;
  z-index: 2;
}

.prtv-footer-wow .brand {
  font-size: 1.28rem;
  font-weight: 900;
  color: #043763;
  letter-spacing: -1.1px;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  text-shadow: 0 2px 18px #ffd74933, 0 1px 0px #fff;
}

.prtv-footer-wow .desc {
  font-size: 1.07rem;
  font-weight: 500;
  color: #536b8b;
  background: rgba(255,255,255,0.66);
  border-radius: 7px;
  box-shadow: 0 2px 12px #ffd7490f;
  margin-bottom: 0;
  margin-top: 3px;
  line-height: 1.5;
  padding: 9px 14px 8px 14px;
  max-width: 97vw;
  border-left: 4px solid #ffd749;
  border-right: 1.5px solid #ffd74911;
  transition: box-shadow 0.23s;
}
.prtv-footer-wow .desc strong {
  color: #ffd749;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 12px #ffd74955;
}

.prtv-footer-wow .footer-links {
  display: flex;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.prtv-footer-wow .footer-links a {
  color: #043763;
  text-decoration: none;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s, box-shadow 0.2s;
  background: none;
  position: relative;
  z-index: 1;
  box-shadow: none;
}
.prtv-footer-wow .footer-links a:hover,
.prtv-footer-wow .footer-links a:focus {
  color: #ffd749;
  background: #0437630e;
  text-decoration: underline wavy #ffd74948 2px;
  text-underline-offset: 4px;
  box-shadow: 0 4px 16px -6px #ffd74922, 0 1.5px 7px #04376317;
}

.prtv-footer-wow .footer-links a[href*="ajutor"], 
.prtv-footer-wow .footer-links a[href*="knowledge"], 
.prtv-footer-wow .footer-links a[href*="support"] {
  color: #fff;
  background: linear-gradient(90deg, #ffd749 55%, #ffe772 100%);
  font-weight: 900;
  border-radius: 10px;
  box-shadow: 0 4px 22px -8px #ffd7497c, 0 1.5px 8px #ffd74912;
  padding: 5px 15px 5px 15px;
  text-shadow: 0 2px 8px #0437631c;
  border: none;
  transition: filter 0.21s;
}
.prtv-footer-wow .footer-links a[href*="ajutor"]:hover, 
.prtv-footer-wow .footer-links a[href*="knowledge"]:hover, 
.prtv-footer-wow .footer-links a[href*="support"]:hover {
  filter: brightness(0.97) saturate(1.14);
  color: #043763;
  background: linear-gradient(92deg, #fff9d0 60%, #ffd749 100%);
  text-decoration: underline wavy #ffd74977 2px;
}

/* Responsive WOW premium */
@media (max-width: 600px) {
  .prtv-footer-wow {
    max-width: 99vw;
    padding: 0 3vw 16px 3vw;
    gap: 7px;
    border-radius: 12px;
  }
  .prtv-footer-wow .brand {
    font-size: 1.03rem;
  }
  .prtv-footer-wow .desc {
    font-size: 0.99rem;
    padding: 7px 7vw;
  }
  .prtv-footer-wow .footer-links {
    gap: 11px;
  }
}
/* --- END WOW PATCH --- */

/* Stiluri vechi pentru fallback/compatibilitate */
.prtv-footer-wow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 16px auto;
}
.prtv-footer-wow .brand {
  font-size: 1.19rem;
  font-weight: 900;
  color: #043763;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}
.prtv-footer-wow .desc {
  font-size: 1rem;
  font-weight: 500;
  color: #51637b;
  margin-bottom: 0;
  margin-top: 2px;
  line-height: 1.5;
}
.prtv-footer-wow .desc strong {
  color: #ffd749;
  font-weight: 900;
}
.prtv-footer-wow .footer-links {
  display: flex;
  gap: 22px;
  margin-top: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.prtv-footer-wow .footer-links a {
  color: #043763;
  text-decoration: none;
  font-size: 1.03rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  transition: color 0.16s, background 0.14s;
  background: none;
}
.prtv-footer-wow .footer-links a:hover {
  color: #ffd749;
  background: #0437630d;
  text-decoration: underline wavy #ffd74933 2px;
  text-underline-offset: 4px;
}
.prtv-footer-copy {
  font-size: 0.96rem;
  color: #8d99ae;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 7px;
}


@media (max-width: 600px) {
  .prtv-footer-wow {
    max-width: 97vw;
    padding: 0 2vw;
    gap: 7px;
  }
  .prtv-footer-wow .brand {
    font-size: 1rem;
  }
  .prtv-footer-wow .desc {
    font-size: 0.98rem;
  }
  .prtv-footer-wow .footer-links {
    gap: 12px;
  }
  .prtv-footer-copy {
    font-size: 0.89rem;
    margin-top: 4px;
  }
}
html, body {
  height: 100%;
  min-height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}
.site-content, main {
  flex: 1 0 auto;
}
.prtv-footer,
.prtv-footer-wow {
  flex-shrink: 0;
}
.prtv-footer,
.prtv-footer-wow {
  flex-shrink: 0;
}

/* Patch logo PRTV Media - mai mare pe toate device-urile */
.prtv-logo-premium img.custom-logo {
  height: 74px !important;
  max-width: 190px;
  background: transparent !important;
}
.prtv-logo-premium {
  font-size: 1.67rem;
}
@media (max-width: 800px) {
  .prtv-logo-premium img.custom-logo {
    height: 54px !important;
    max-width: 120px;
    background: transparent !important;
  }
  .prtv-logo-premium {
    font-size: 1.29rem;
  }
}
@media (max-width: 480px) {
  .prtv-logo-premium img.custom-logo {
    height: 44px !important;
    max-width: 78px;
    background: transparent !important;
  }
  .prtv-logo-premium {
    font-size: 1.07rem;
  }
}
/* === MENIU MOBIL FULLSCREEN WOW PREMIUM === */
@media (max-width: 950px) {
  .mobile-menu {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 0 32px 0 #0437630a;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    font-family: 'Montserrat', 'Figtree', 'Inter', Arial, sans-serif !important;
    overflow-y: auto;
    animation: menuFullOpen 0.27s cubic-bezier(.48,.38,.27,1.18);
  }
  .mobile-menu.open {
    display: flex !important;
  }
  @keyframes menuFullOpen {
    from { opacity: 0; transform: translateY(-30px);}
    to   { opacity: 1; transform: translateY(0);}
  }
  .mobile-menu a, .mobile-menu li a {
    font-family: 'Montserrat', 'Figtree', 'Inter', Arial, sans-serif !important;
    font-size: 1.23rem !important;
    font-weight: 700;
    color: #043763;
    padding: 22px 7vw !important;
    border: none !important;
    background: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    text-align: left;
    letter-spacing: -0.2px;
    transition: background 0.13s, color 0.13s;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
    border-bottom: 1px solid #f6f6f6 !important;
    display: block;
  }
  .mobile-menu a:last-child {
    border-bottom: none !important;
  }
  .mobile-menu a:hover, .mobile-menu li a:hover, .mobile-menu a:focus {
    background: #f3f8ff !important;
    color: #ffd749 !important;
  }
  .mobile-menu .prtv-btn,
  .mobile-menu .prtv-btn.highlight {
    font-size: 1.14rem !important;
    font-family: 'Montserrat', 'Figtree', 'Inter', Arial, sans-serif !important;
    padding: 18px 0 !important;
    border-radius: 14px !important;
    margin: 24px 7vw 0 7vw !important;
    box-shadow: 0 3px 18px #ffd7492a !important;
  }
  .mobile-menu .prtv-btn.highlight {
    background: #ffd749 !important;
    color: #043763 !important;
  }
  .mobile-menu .prtv-btn:not(.highlight) {
    background: #043763 !important;
    color: #fff !important;
    border: none !important;
  }
  /* Spațiere elemente meniu */
  .mobile-menu ul, .mobile-menu-list {
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
  }
  .mobile-menu li, .mobile-menu-list li {
    margin: 0 !important;
    padding: 0 !important;
  }
  /* Dropdown arrow modern pe mobil */
  .mobile-menu-list .menu-item-has-children > a:after {
    content: " ▼";
    font-size: 0.87em;
    margin-left: 5px;
    color: #ffd749;
    font-weight: bold;
    opacity: 0.95;
  }
  /* Premium, touch-friendly X button */
  .mobile-menu-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 2.35rem;
    color: #043763;
    background: #ffd749;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    box-shadow: 0 2px 12px #ffd74935, 0 1.5px 7px #04376315;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    outline: none;
  }

  .mobile-menu-close:active,
  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    background: #ffe475;
    color: #ff3b00;
    box-shadow: 0 4px 24px #ffd74966, 0 2px 10px #ffd7492f;
  }

  /* Fullscreen X also on small mobile */
  @media (max-width: 600px) {
    .mobile-menu-close {
      top: 8px;
      right: 7px;
      width: 40px;
      height: 40px;
      font-size: 2rem;
    }
  }
}
@media (max-width: 950px) {
  /* Butonul X – central și modern */
  .mobile-menu-close {
    top: 22px !important;
    right: 18px !important;
    width: 46px !important;
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffd749 !important;
    color: #043763 !important;
    border-radius: 50% !important;
    font-size: 2.1rem !important;
    box-shadow: 0 2px 12px #ffd74933;
    font-weight: bold;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 10000 !important;
    border: none !important;
  }
  .mobile-menu-close:active {
    background: #ffe274 !important;
    color: #222;
  }

  /* Meniu mobil – centrare text, inclusiv sub-meniu */
  .mobile-menu, .mobile-menu-list, .mobile-menu ul {
    text-align: center !important;
    align-items: center !important;
  }
  .mobile-menu a, .mobile-menu li a {
    text-align: center !important;
    justify-content: center !important;
    font-size: 1.08rem !important;
  }
  .mobile-menu-list .menu-item-has-children > a:after {
    margin-left: 7px;
    font-size: 1.01em;
    vertical-align: middle;
  }
  /* Sub-meniu */
  .mobile-menu-list .sub-menu {
    text-align: center !important;
    align-items: center !important;
  }

  /* Butoane principale (Testează Gratuit, Contul Meu) – mai mici și premium */
  .mobile-menu .prtv-btn,
  .mobile-menu .prtv-btn.highlight {
    font-size: 1.01rem !important;
    padding: 11px 0 !important;
    margin: 14px auto 0 auto !important;
    width: 93vw !important;
    max-width: 330px !important;
    border-radius: 12px !important;
  }
}
@media (max-width: 950px) {
  /* Elimină punctele din meniul mobil */
  .mobile-menu ul,
  .mobile-menu-list,
  .mobile-menu ul li,
  .mobile-menu-list li {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  /* Elimină orice marker (steluță, punct, disc) și aliniază totul central */
  .mobile-menu li,
  .mobile-menu-list li {
    text-align: center !important;
    display: block !important;
  }
  .mobile-menu li:before,
  .mobile-menu-list li:before {
    display: none !important;
    content: none !important;
  }

  /* Submeniuri cu delimitare discretă, fără puncte sau steluțe */
  .mobile-menu-list .sub-menu {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Rafinează spațiul și separatoarele */
  .mobile-menu a, .mobile-menu li a {
    border-bottom: 1px solid #f2f2f2 !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .mobile-menu li:last-child a {
    border-bottom: none !important;
  }

  /* Butoane premium pe mobil */
  .mobile-menu .prtv-btn,
  .mobile-menu .prtv-btn.highlight {
    font-size: 1.07rem !important;
    padding: 12px 0 !important;
    margin: 14px auto 0 auto !important;
    width: 92vw !important;
    max-width: 320px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 14px #ffd74922 !important;
  }
}
/* === 404 PAGE WOW PREMIUM === */
.notfound-section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(115deg, #fff7de 55%, #f9fbff 100%);
  padding: 80px 0 60px 0;
  box-shadow: 0 8px 44px -24px #ffd7492b;
  border-radius: 0 0 34px 34px;
}
.notfound-message {
  font-size: 3.3rem;
  font-weight: 900;
  color: #ffd749;
  text-shadow: 0 3px 19px #ffd74922, 0 1px 0px #fff;
  margin-bottom: 1.3rem;
  letter-spacing: -2px;
  line-height: 1.07;
  font-family: 'Montserrat', 'Figtree', 'Inter', Arial, sans-serif;
}
.notfound-section .big404 {
  font-size: 7.7rem;
  font-weight: 900;
  color: #ffd749;
  letter-spacing: -9px;
  margin-bottom: 0.3em;
  line-height: 1.03;
  font-family: 'Montserrat', 'Figtree', 'Inter', Arial, sans-serif;
  text-shadow: 0 6px 50px #ffd74955, 0 1px 0px #fff;
}
.notfound-support {
  font-size: 1.16rem;
  color: #043763;
  background: #fffbe6;
  border-radius: 11px;
  padding: 18px 30px;
  margin: 14px 0 0 0;
  box-shadow: 0 4px 18px #ffd74912;
  font-weight: 600;
  border-left: 6px solid #ffd749;
  border-right: 1.5px solid #ffd74911;
  line-height: 1.4;
  max-width: 450px;
}
.notfound-support a {
  color: #043763;
  font-weight: 900;
  background: linear-gradient(90deg,#ffd749 65%,#fff7aa 100%);
  border-radius: 7px;
  padding: 2px 10px;
  text-decoration: none;
  margin-left: 8px;
  margin-right: 8px;
  box-shadow: 0 2px 8px #ffd74918;
  transition: background 0.17s, color 0.17s;
}
.notfound-support a:hover {
  color: #fff;
  background: #043763;
}

.btn.accent, .notfound-section .btn.accent {
  background: #ffd749;
  color: #043763;
  font-weight: 900;
  border-radius: 9px;
  font-size: 1.09rem;
  padding: 15px 30px;
  box-shadow: 0 3px 22px -8px #ffd74933;
  text-decoration: none;
  margin-top: 34px;
  display: inline-block;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.btn.accent:hover, .notfound-section .btn.accent:hover {
  background: #ffea7b;
  color: #223046;
}

@media (max-width: 700px) {
  .notfound-section {
    padding: 50px 0 40px 0;
    min-height: 45vh;
    border-radius: 0 0 21px 21px;
  }
  .notfound-section .big404 {
    font-size: 4.2rem;
    margin-bottom: 0.1em;
  }
  .notfound-message {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }
  .notfound-support {
    padding: 12px 9vw;
    font-size: 1.03rem;
    max-width: 97vw;
  }
  .btn.accent, .notfound-section .btn.accent {
    padding: 13px 13vw;
    font-size: 1rem;
    margin-top: 26px;
  }
}

@media (max-width: 480px) {
  .notfound-section {
    padding: 32px 0 20px 0;
    border-radius: 0 0 10px 10px;
  }
  .notfound-section .big404 {
    font-size: 3rem;
  }
  .notfound-message {
    font-size: 1.4rem;
  }
  .notfound-support {
    padding: 8px 3vw;
    font-size: 0.97rem;
    max-width: 99vw;
  }
  .btn.accent, .notfound-section .btn.accent {
    padding: 11px 7vw;
    font-size: 0.97rem;
    margin-top: 20px;
  }
}
/* HERO PREMIUM MODERN - FINAL PATCH */
.hero-title,
.hero h1,
.hero-section h1 {
  font-family: 'Montserrat', 'Figtree', Arial, sans-serif;
  font-size: clamp(2.25rem, 4vw, 2.65rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 2.1rem;
  color: #fff;
  text-align: center;
  word-break: break-word;
  text-shadow: 0 3px 18px #04376338, 0 1px 0 #fff7;
}
@media (max-width: 700px) {
  .hero-title,
  .hero h1,
  .hero-section h1 {
    font-size: clamp(1.15rem, 6vw, 1.55rem);
    margin-bottom: 1.4rem;
    line-height: 1.15;
    padding: 0 3vw;
  }
}

.hero-desc,
.hero p,
.hero-section .hero-desc {
  font-family: 'Montserrat', 'Figtree', Arial, sans-serif;
  font-size: 1.09rem;
  color: #dbe7fa;
  margin-bottom: 2.1rem;
  line-height: 1.32;
  text-align: center;
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media (max-width: 700px) {
  .hero-desc,
  .hero p,
  .hero-section .hero-desc {
    font-size: 0.99rem;
    margin-bottom: 1.1rem;
    line-height: 1.23;
    padding: 0 6vw;
  }
}

.hero-btns,
.hero-section .hero-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .prtv-btn,
.hero .prtv-btn.highlight,
.hero-section .prtv-btn,
.hero-section .prtv-btn.highlight {
  font-size: 1.11rem !important;
  font-weight: 800 !important;
  padding: 14px 0 !important;
  min-width: 170px;
  max-width: 270px;
  width: 220px;
  border-radius: 14px !important;
  margin: 0 6px 0 0;
  box-shadow: 0 4px 16px #ffd74922;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  white-space: normal;
}
.hero .prtv-btn:last-child,
.hero-section .prtv-btn:last-child {
  margin-right: 0 !important;
}
@media (max-width: 700px) {
  .hero-btns,
  .hero-section .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .hero .prtv-btn,
  .hero .prtv-btn.highlight,
  .hero-section .prtv-btn,
  .hero-section .prtv-btn.highlight {
    font-size: 0.98rem !important;
    padding: 12px 0 !important;
    min-width: 120px;
    max-width: 97vw;
    width: 97vw;
    border-radius: 11px !important;
    margin: 0;
  }
}
/* ===== HEADER BAR WOW PREMIUM - FINAL PATCH 2025-07-29 ===== */
.header-bar {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 36px -10px #04376311;
  max-width: 1260px;
  margin: 32px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px 30px 42px;
  position: relative;
  z-index: 30;
  min-height: 96px;
}
.prtv-logo-premium {
  display: flex;
  align-items: center;
  gap: 7px;         /* REDUS de la 22px la 7px */
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
}
.prtv-logo-premium img.custom-logo {
  height: 64px !important;
  max-width: 66px;
  border-radius: 11px;
  margin-right: 7px;  /* Redus de la 10px la 7px */
  background: transparent !important;
  box-shadow: 0 2px 10px #04376312;
}
.prtv-logo-prtv {
  color: #043763;
  font-weight: 900;
  letter-spacing: -2px;
  font-size: 1.16em;
  text-transform: uppercase;
}
.prtv-logo-media {
  color: #ffd749;
  font-weight: 700;
  font-size: 1.13em;
  margin-left: 0px;   /* Scoate margin-left ca să fie aproape */
  text-transform: uppercase;
}

.prtv-menu-list {
  list-style: none;
  display: flex;
  gap: 44px;
  margin: 0 38px;
  padding: 0;
}
.prtv-menu-list li a {
  text-decoration: none;
  color: #043763;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  padding: 7px 16px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
  background: none;
  box-shadow: none;
}
.prtv-menu-list li a:hover {
  color: #ffd749;
  background: #0437630a;
}
.prtv-header-cta {
  display: flex;
  gap: 18px;
  align-items: center;
}
.prtv-btn, .prtv-btn.highlight {
  border-radius: 16px;
  font-size: 1.13rem;
  font-weight: 800;
  padding: 16px 36px;
  box-shadow: 0 2px 16px -4px #ffd74920;
  letter-spacing: -0.2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.prtv-btn {
  background: #043763;
  color: #fff;
}
.prtv-btn.highlight {
  background: #ffd749;
  color: #043763;
  box-shadow: 0 2px 14px -4px #ffd74938;
}
.prtv-btn.highlight:hover {
  background: #ffe77d;
  color: #043763;
}
.prtv-btn:hover {
  background: #072142;
  color: #ffd749;
}

/* Responsive patch */
@media (max-width: 1100px) {
  .header-bar {
    max-width: 99vw;
    padding: 13px 2vw;
  }
  .prtv-menu-list {
    gap: 14px;
    margin: 0 6px;
  }
  .prtv-logo-premium {
    font-size: 1.09rem;
    gap: 8px;
  }
  .prtv-menu-list li a {
    font-size: 1.08rem;
    font-weight: 700;
    padding: 5px 8px;
  }
}
@media (max-width: 600px) {
  .header-bar {
    padding: 8px 1vw;
    border-radius: 10px;
    min-height: 66px;
    gap: 0;
    flex-direction: column;
    align-items: center;
  }
  .prtv-logo-premium img.custom-logo {
    height: 32px !important;
    max-width: 32px;
  }
  .prtv-logo-premium {
    font-size: 0.97rem;
    gap: 5px;
  }
  .prtv-menu-list li a {
    font-size: 1rem;
    padding: 4px 6px;
    border-radius: 7px;
  }
  .prtv-btn, .prtv-btn.highlight {
    font-size: 0.96rem;
    padding: 11px 9px;
    border-radius: 9px;
  }
}
/* === PATCH PREMIUM: Elimină complet fundalul alb/umbră la logo PNG și la iconițe compatibilitate === */
.prtv-logo-premium img.custom-logo {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
/* Opțional: compatibilitate platform icons fără fundal */
.platform-icon,
.platform-grid li,
.platform-icon.androidtv::before,
.platform-icon.googletv::before,
.platform-icon.firetv::before,
.platform-icon.samsung::before,
.platform-icon.lg::before,
.platform-icon.ios::before {
  background: transparent !important;
  box-shadow: none !important;
}