:root{--bg:#0d1117;
  --card:#161b22;
  --accent:#ff0055;
  --accent2:#ff7a00;
  --text:#ffffff;
  --muted:#9ca3af;
  --border:rgba(255,255,255,.08)}

*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Montserrat',sans-serif;background:var(--bg);color:var(--text);line-height:1.6}
a{text-decoration:none;color:inherit}
img{width:100%;display:block;border-radius:16px}
.container{width:min(1200px, calc(100% - 40px));margin:auto}
.logo{display:flex;align-items:center}
.logo img{display:block;width:140px;height:auto}
header{position:sticky;top:0;z-index:100;background:rgba(13,17,23,.92);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
nav{display:flex;gap:28px}
nav a{
  color:#d1d5db;
  font-weight:600;
  transition:.25s;
}

nav a:hover{
  color:#fff;
}
.mobile-menu-btn{
  display:none;
  width:54px;
  height:54px;
  border:none;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.06);
  padding:0;
  cursor:pointer;
  transition:.25s;
  position:relative;
  z-index:1001;
}

.mobile-menu-btn:hover{
  background:rgba(255,255,255,.08);
}

.mobile-menu-btn span{
  position:absolute;
  left:15px;
  width:24px;
  height:2px;
  border-radius:999px;
  background:#fff;
  transition:.3s ease;
}
.mobile-menu-btn span:nth-child(1){top:18px}
.mobile-menu-btn span:nth-child(2){top:26px}
.mobile-menu-btn span:nth-child(3){top:34px}
.mobile-menu-btn.active span:nth-child(1){transform:rotate(45deg);top:26px}
.mobile-menu-btn.active span:nth-child(2){opacity:0}
.mobile-menu-btn.active span:nth-child(3){transform:rotate(-45deg);top:26px}
.hero{padding:90px 0 70px}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:40px;align-items:center}
.hero h1{font-size:3rem;line-height:1.1;margin-bottom:20px}
.hero h1 span{background:var(--accent);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.hero p{color:var(--muted);max-width:650px;margin-bottom:30px;font-size:1.05rem}
.hero-buttons{display:flex;gap:15px;flex-wrap:wrap}
.form-group{margin-bottom:20px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:14px;
  font-weight:700;
  transition:.25s;
}

.btn-primary{
  background:var(--accent);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}

.hero-card{
  background:linear-gradient(180deg,#1b2230,#121821);
  border:1px solid var(--border);
  border-radius:28px;
  padding:30px;
  position:relative;
  overflow:hidden;
}

.hero-card::before{
  content:'';
  position:absolute;
  width:220px;
  height:220px;
  background:var(--accent);
  filter:blur(90px);
  opacity:.25;
  top:-80px;
  right:-50px;
}

.live-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,0,85,.15);
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:700;
  margin-bottom:20px;
}

.live-dot{
  width:10px;
  height:10px;
  background:#ff0055;
  border-radius:50%;
}

section{padding:25px 0}
.section-title{
  font-size:2.3rem;
  margin-bottom:40px;
  font-weight:800;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
  transition:.25s;
}
.card img{
  width:100%;
  height:180px;
  object-fit:cover;
  object-position:center;
  display:block;
  border-radius:22px 22px 0 0;
}


.card:hover{
  transform:translateY(-5px);
}

.card-content{
  padding:22px;
}

.card-category{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#d1d5db;
  font-size:.75rem;
  margin-bottom:14px;
}

.card h3{
  margin-bottom:12px;
  font-size:1.2rem;
}

.card p{
  color:var(--muted);
  font-size:.95rem;
}
.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.section-link{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:10px 16px;

  border-radius:14px;

  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);

  color:#fff;
  text-decoration:none;

  font-size:.92rem;
  font-weight:700;

  transition:.25s ease;
}

.section-link i{
  font-size:.9rem;
  transition:transform .25s ease;
}

.section-link:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(0,212,255,.28);

  transform:translateY(-2px);
}

.section-link:hover i{
  transform:translateX(3px);
}
/* PROGRAMS */
.hero-live{
  margin-top:18px;
}

.hero-live-time{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  font-size:.9rem;
  color:#bfc7d4;
  margin-bottom:14px;
}

.hero-live-title{
  font-size:2rem;
  font-weight:800;
  line-height:1.15;
  color:#fff;
  margin-bottom:10px;
}

.hero-next{
  color:#98a2b3;
  font-size:.95rem;
}

.hero-next span{
  color:#fff;
  font-weight:600;
}
.schedule-day{
  display:none;
}

.schedule-day.active{
  display:block;
}

.schedule-track{
  position:relative;
}

.schedule-scroll{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:8px 6px 18px;
  scrollbar-width:none;
}

.schedule-scroll::-webkit-scrollbar{
  display:none;
}

.program-card{
  position:relative;
  flex:0 0 320px;
  min-height:220px;
  padding:26px;
  border-radius:28px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.025)
    );
  border:1px solid rgba(255,255,255,.07);
  overflow:hidden;
  transition:.3s;
}

.program-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:
  radial-gradient(
    circle at top right,
    rgba(0,212,255,.18),
    transparent 55%
  );
  opacity:0;
  transition:.3s;
}

.program-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,.14);
}

.program-card:hover::before{
  opacity:1;
}

.program-card.accent{
  border-color:rgba(0,212,255,.2);
}

.program-card.live{
  border-color:rgba(0,212,255,.45);
  box-shadow:
    0 0 0 1px rgba(0,212,255,.18),
    0 18px 50px rgba(0,212,255,.16);
}

.program-card.live::after{
  content:'В эфире';
  position:absolute;
  top:16px;
  right:16px;
  padding:8px 12px;
  border-radius:999px;
  background:linear-gradient(135deg,#00d4ff,#27f5c5);
  color:#081018;
  font-size:.6rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.program-time{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:22px;
  color:var(--accent);
  font-size:.95rem;
  font-weight:800;
}

.program-time::before{
  content:'';
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 12px var(--accent);
}

.program-main h3{
  margin:0 0 14px;
  font-size:1.55rem;
  line-height:1.15;
}
.program-duration{
  position:absolute;
  left:26px;
  bottom:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-size:.88rem;
  font-weight:700;
  color:#fff;
}

.schedule-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:rgba(15,20,28,.92);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:1.1rem;
  cursor:pointer;
  z-index:5;
  transition:.25s;
  backdrop-filter:blur(10px);
}

.schedule-arrow:hover{
  transform:translateY(-50%) scale(1.06);
  background:rgba(0,212,255,.14);
}

.schedule-arrow.left{
  left:-20px;
}

.schedule-arrow.right{
  right:-20px;
}
.schedule-tabs{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding-bottom:8px;
  margin-bottom:26px;
  scrollbar-width:none;
}

.schedule-tabs::-webkit-scrollbar{
  display:none;
}

.schedule-tab{
  flex:0 0 auto;
  min-width:68px;
  border:none;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  color:#cfcfcf;
  border-radius:16px;
  padding:14px 18px;
  font-size:.95rem;
  font-weight:800;
  cursor:pointer;
  transition:.25s;
}

.schedule-tab:hover{
  transform:translateY(-2px);
  color:#fff;
}

.schedule-tab.active{
  background:linear-gradient(135deg, var(--accent), #00d5ff);
  color:#081018;
  border-color:transparent;
  box-shadow:0 10px 30px rgba(0,212,255,.22);
}
.reviews{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.review{
  background:var(--card);
  border:1px solid var(--border);
  padding:28px;
  border-radius:22px;
}

.review-text{
  color:#d1d5db;
  margin-bottom:20px;
}

.review-author{
  font-weight:700;
}

.review-company{
  color:var(--muted);
  font-size:.9rem;
}

/* =========================
   SHOWS PAGE
========================= */

.dfm-shows{
  padding:70px 0;
}

/* HEAD */

.dfm-page-head{
  text-align:center;

  max-width:760px;

  margin:0 auto 60px;
}

.dfm-page-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:38px;

  padding:0 18px;

  border-radius:999px;

  background:
    linear-gradient(
      90deg,
      rgba(255,0,85,.15),
      rgba(255,122,0,.15)
    );

  border:1px solid rgba(255,255,255,.06);

  color:#fff;

  font-size:.9rem;
  font-weight:700;

  margin-bottom:22px;
}

.dfm-page-head h1{
  font-size:clamp(2.3rem,5vw,4.5rem);

  line-height:1.05;

  margin-bottom:20px;

  color:#fff;
}

.dfm-page-head p{
  color:var(--muted);

  font-size:1.08rem;

  line-height:1.8;
}

/* GRID */

.dfm-shows-grid{
  display:grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap:28px;
}

/* CARD */

.dfm-show-card{
  position:relative;

  overflow:hidden;

  border-radius:32px;

  background:var(--card);

  border:1px solid var(--border);

  transition:.35s ease;

  box-shadow:
    0 15px 40px rgba(0,0,0,.25);
}

.dfm-show-card:hover{
  transform:translateY(-8px);

  box-shadow:
    0 30px 60px rgba(0,0,0,.4);
}

/* IMAGE */

.dfm-show-image{
  position:relative;

  display:block;

  overflow:hidden;
}

.dfm-show-image img{
  width:100%;

  height:260px;

  object-fit:cover;
  object-position:top;

  display:block;

  transition:transform .6s ease;
}

.dfm-show-card:hover .dfm-show-image img{
  transform:scale(1.06);
}

/* OVERLAY */

.dfm-show-overlay{
  position:absolute;

  inset:0;

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

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.05),
      rgba(0,0,0,.55)
    );

  opacity:0;

  transition:.35s;
}

.dfm-show-card:hover .dfm-show-overlay{
  opacity:1;
}

.dfm-show-overlay span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:52px;

  padding:0 24px;

  border-radius:16px;

  background:#fff;

  color:#111;

  font-weight:800;
}

/* CONTENT */

.dfm-show-content{
  padding:28px;
}

.dfm-show-content h3{
  margin:0;
}

.dfm-show-content h3 a{
  color:#fff;

  font-size:1.25rem;
  font-weight:800;

  line-height:1.4;

  transition:.25s;
}

.dfm-show-content h3 a:hover{
  color:#ff7a00;
}



/* FOOTER */

footer{
  border-top:1px solid var(--border);
  padding:35px 0;
  margin-top:40px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:18px;
  color:#c5c5c5;
}
.footer-bottom-info{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:12px;
  flex-wrap:wrap;
}

.footer-copy{
  margin:0;
  color:var(--muted);
}

.footer-age{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:54px;
  height:34px;
  padding:0 14px;
  border-radius:12px;
  background:
    linear-gradient(
      90deg,
      rgba(255,0,85,.16),
      rgba(255,122,0,.16)
    );
  border:1px solid rgba(255,255,255,.06);
  color:#fff;
  font-size:.95rem;
  font-weight:800;
  letter-spacing:.5px;
}

.footer-links a{
  color:#d3d9e2;
  text-decoration:none;
  transition:.25s;
}

.footer-links a:hover{
  color:#fff;
}

.ntr-short-news{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:28px;

  padding:24px;
  margin-bottom:28px;

  border-radius:28px;
  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.03),
      rgba(255,255,255,.015)
    );

  border:1px solid var(--border);

  transition:.3s ease;
  position:relative;
}

.ntr-short-news:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.14);
}

.ntr-short-news__image{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  min-height:240px;
}

.ntr-short-news__img-link{
  display:block;
  width:100%;
  height:100%;
}

.ntr-short-news__img{
  display:block;
  width:100%;
  height:100%;

  background-size:cover;
  background-position:center;

  transition:transform .5s ease;
}

.ntr-short-news:hover .ntr-short-news__img{
  transform:scale(1.05);
}

.ntr-short-news__image::after{
  content:'';
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.55),
      rgba(0,0,0,.05)
    );

  pointer-events:none;
}

.ntr-short-news__btn{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:5;

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

  padding:12px 18px;

  border-radius:14px;

  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--accent2)
    );

  color:#fff;
  font-size:.92rem;
  font-weight:700;
  text-decoration:none;

  transition:.25s;
}

.ntr-short-news__btn:hover{
  transform:translateY(-2px);
}

.ntr-short-news__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.ntr-short-news__meta{
  margin-bottom:18px;
}

.ntr-short-news__date{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:10px 16px;

  border-radius:999px;

  background:rgba(255,255,255,.05);

  color:#cfd6df;
  font-size:.82rem;
  font-weight:600;
}

.ntr-short-news__date i{
  color:var(--accent);
  font-size:14px;
}

.ntr-short-news__title{
  margin:0 0 18px;
  font-size:2rem;
  line-height:1.25;
  font-weight:800;
}

.ntr-short-news__title a{
  color:var(--text);
  text-decoration:none;
  transition:.25s;
}

.ntr-short-news__title a:hover{
  color:#fff;
}

.ntr-short-news__text{
  color:var(--muted);
  font-size:1rem;
  line-height:1.8;
}

.ntr-short-news__text p{
  margin:0;
}

.ntr-article{
  position:relative;
  margin-bottom:50px;
}

.ntr-article__hero{
  padding:35px;
  border-radius:32px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.03),
      rgba(255,255,255,.015)
    );

  border:1px solid var(--border);

  margin-bottom:40px;
}

.ntr-article__title{
  margin:0;
  font-size:3.2rem;
  line-height:1.15;
  font-weight:800;
  color:var(--text);
}

.ntr-article__top{
  margin-bottom:35px;
}

.ntr-article__grid{
  display:grid;
  grid-template-columns:minmax(320px, 520px) 1fr;
  gap:35px;
  align-items:stretch;
}

.ntr-article__image{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  min-height:420px;

  background:rgba(255,255,255,.03);
}

.ntr-article__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  transition:transform .5s ease;
}

.ntr-article__image:hover img{
  transform:scale(1.03);
}

.ntr-article__info{
  display:flex;
}

.ntr-article__meta{
  width:100%;

  display:flex;
  flex-direction:column;
  gap:18px;

  margin:0;
  padding:0;
  list-style:none;
}

.ntr-article__meta li{
  display:flex;
  flex-direction:column;
  gap:8px;

  padding:20px 24px;

  border-radius:22px;

  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.04);
}

.ntr-article__meta span{
  color:var(--muted);
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:700;
}

.ntr-article__meta strong{
  color:var(--text);
  font-size:1.05rem;
  line-height:1.5;
  font-weight:700;
}

.ntr-article__meta a{
  color:var(--text);
  text-decoration:none;
}

.ntr-article__content{
  color:#d6dce5;
  font-size:1.08rem;
  line-height:1.9;
    max-width:900px;
  margin:0 auto;
  padding:0 20px;
}

.ntr-article__content p{margin:0 0 24px}
.ntr-article__content h2,
.ntr-article__content h3,
.ntr-article__content h4{
  color:var(--text);
  margin:40px 0 20px;
  line-height:1.3;
}

.ntr-article__content img{
  max-width:100%;
  height:auto;
  border-radius:24px;
  margin:30px 0;
}

.ntr-article__content blockquote, .ntr-article__content .quote{
  margin:35px 0;
  padding:30px;
  border-radius:24px;
  background:rgba(255,255,255,.03);
  border-left:4px solid var(--accent);
  color:#fff;
  font-size:1.1rem;
  line-height:1.8;
}
.ntr-article__content ul,
.ntr-article__content ol{
  margin:24px 0;
  padding-left:28px;
}

.ntr-article__content li{
  margin-bottom:14px;
  color:#d6dce5;
  line-height:1.8;
}
.ntr-article__content a{color:#fff;
  font-weight:600;
  text-decoration:none;
  position:relative;
  transition:.25s;
}
.ntr-article__content a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-3px;
  width:100%;
  height:2px;
  border-radius:999px;
  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--accent2)
    );
  transform:scaleX(.35);
  transform-origin:left;
  opacity:.75;
  transition:.25s ease;
}
.ntr-article__content a:hover{color:#fff}
.ntr-article__content a:hover::after{transform:scaleX(1);opacity:1}
.ntr-article__content p a,
.ntr-article__content li a{
  word-break:break-word;
}
.ntr-article__video{margin-top:45px}
.video-box{
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--border);
}

.video-box iframe{
  display:block;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:22px;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    filter .35s ease;
  background:#111;
}
.dfm-team-section{

}

.dfm-team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.dfm-team-card{
  overflow:hidden;
  border-radius:26px;
  background:linear-gradient(180deg,#171d27,#10151c);
  border:1px solid var(--border);
  transition:.25s;
}

.dfm-team-card:hover{
  transform:translateY(-6px);
}

.dfm-team-card img{
  width:100%;
  height:320px;
  object-fit:cover;
    object-position: top;
}

.dfm-team-content{
  padding:24px;
}

.dfm-team-content h3{
  font-size:1.3rem;
  margin-bottom:10px;
}
.dfm-contact-page{
  background:var(--bg);
  color:var(--text);
  padding:40px 0 80px;
}

.dfm-page-top{
  margin-bottom:40px;
}

.bread-title h1{
  font-size:3rem;
  font-weight:800;
  margin-bottom:10px;
}

.bread-title p{
  color:var(--muted);
  font-size:1.05rem;
}

.dfm-contact-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  align-items:start;
}

.dfm-form-card,
.dfm-info-card{
  background:linear-gradient(180deg,#171d27,#10151c);
  border:1px solid var(--border);
  border-radius:28px;
  padding:35px;
}

.dfm-section-heading span,
.dfm-section-title span{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:.8rem;
  font-weight:700;
}

.dfm-section-heading h2,
.dfm-section-title h2{
  font-size:2rem;
  margin-top:10px;
  margin-bottom:30px;
  font-weight:800;
}

.dfm-section-title.center{
  text-align:center;
  margin-bottom:40px;
}



.dfm-note{
  margin-top:8px;
  color:var(--muted);
  font-size:.85rem;
  text-align:right;
}

.dfm-btn{
  width:100%;
  border:none;
  padding:18px;
  border-radius:18px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  color:#fff;
  background:#ff2d55;
  transition:.25s;
}

.dfm-btn:hover{
  transform:translateY(-2px);
}

.dfm-contact-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.dfm-contact-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:20px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
}

.dfm-icon{
  width:55px;
  height:55px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,0,85,.12);
  color:var(--accent);
  font-size:22px;
  flex-shrink:0;
}

.dfm-contact-text h4{
  font-size:1.05rem;
  margin-bottom:8px;
}

.dfm-contact-text p{
  color:#c5cad3;
  line-height:1.7;
}

.dfm-review-btn{
  margin-top:25px;
}

.dfm-review-btn a{
  display:block;
  text-align:center;
  padding:16px;
  border-radius:18px;
  font-weight:700;
  color:#fff;
  background:#ff2d55;
}



.dfm-position{
  color:var(--muted);
  margin-bottom:18px;
  line-height:1.5;
  font-size:.95rem;
}

.dfm-phone,
.dfm-mail{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  margin-top:10px;
  background:rgba(255,255,255,.04);
  color:#fff;
  transition:.25s;
  word-break:break-word;
}

.dfm-phone:hover,
.dfm-mail:hover{
  background:rgba(255,255,255,.08);
}

.dfm-phone i{
  color:#25D366;
}

.dfm-map{
  margin-top:10px;
  overflow:hidden;
  border-radius:30px;
  border:1px solid var(--border);
}

.dfm-map iframe{display:block}
.messenger-row{
  display:flex;
  gap:12px;
  margin-top:16px;
}

.messenger-btn{
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.06);
  transition:.25s;
  text-decoration:none;
}

.messenger-btn:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.09);
}

.messenger-btn i{font-size:22px}
.messenger-btn.whatsapp i{color:#25D366}
.messenger-btn.telegram i{color:#2AABEE}
.max-logo{
  width:24px;
  height:24px;
  min-width:24px;
  min-height:24px;
  max-width:24px;
  max-height:24px;
  object-fit:contain;
  display:block;
  flex-shrink:0;
}
.page-hero{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  padding:42px;
  margin-bottom:28px;

  background:
    radial-gradient(circle at top right,
      rgba(0,212,255,.22),
      transparent 35%),

    linear-gradient(135deg,
      #0f1720 0%,
      #162331 50%,
      #0b1118 100%);
}

.page-hero::before{
  content:'';
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.04),
      transparent 45%
    );

  pointer-events:none;
}

.page-hero-content{
  position:relative;
  z-index:2;
}

.page-hero .bread-title h1{
  margin:0;
  color:#fff;
  font-size:clamp(2rem,4vw,3.3rem);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.03em;
}

.page-subtitle{
  margin:18px 0 0;
  max-width:760px;

  color:rgba(255,255,255,.78);

  font-size:1.05rem;
  line-height:1.7;
}

/* ======================================================
   STATIC CONTENT
====================================================== */

.ntr-radio-page .card{
  position:relative;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.96),
      rgba(255,255,255,.92)
    );

  border:1px solid rgba(255,255,255,.7);

  border-radius:28px;

  box-shadow:
    0 10px 40px rgba(10,20,30,.06);

  padding:34px;
  margin:24px auto;

  backdrop-filter:blur(10px);
}

.ntr-radio-page .card h2,
.ntr-radio-page .card h3{
  margin-top:0;

  color:#111827;
  font-weight:800;
}

.ntr-radio-page .card h3{
  font-size:1.35rem;
}

/* BUTTON GROUPS */

.ntr-radio-page .button-group{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}

.ntr-radio-page .btn{
  position:relative;

  border:none;
  border-radius:18px;

  padding:15px 24px;

  font-size:.96rem;
  font-weight:800;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;

  cursor:pointer;
}

.ntr-radio-page .btn:hover{
  transform:translateY(-2px);
}

.ntr-radio-page .btn-primary{
  color:#fff;

  background:
    linear-gradient(
      135deg,
      #00b7ff,
      #00d0c7
    );

  box-shadow:
    0 10px 24px rgba(0,183,255,.24);
}

.ntr-radio-page .btn-primary:hover{
  box-shadow:
    0 14px 32px rgba(0,183,255,.34);
}

.ntr-radio-page .btn-danger{
  color:#fff;

  background:
    linear-gradient(
      135deg,
      #ff5f6d,
      #ff7d7d
    );
}

.ntr-radio-page .btn-outline{
  background:#f4f7fb;
  color:#0f1720;

  border:2px solid transparent;
}

.ntr-radio-page .btn-outline.active{
  color:#fff;

  background:
    linear-gradient(
      135deg,
      #0f1720,
      #1e293b
    );

  box-shadow:
    0 10px 24px rgba(15,23,32,.18);
}

/* INPUTS */

.ntr-radio-page label{
  display:block;

  margin-top:20px;

  color:#1f2937;
  font-weight:700;
}

.ntr-radio-page select,
.ntr-radio-page input[type="number"]{
  width:100%;

  margin-top:10px;
  padding:16px 18px;

  border:none;
  border-radius:18px;

  background:#f4f7fb;

  color:#111827;
  font-size:1rem;

  transition:
    box-shadow .2s ease,
    background .2s ease;
}

.ntr-radio-page select:focus,
.ntr-radio-page input[type="number"]:focus{
  outline:none;

  background:#fff;

  box-shadow:
    0 0 0 4px rgba(0,183,255,.14);
}
.ntr-radio-page .slot{margin-top:18px;padding:24px;border-radius:24px;background:linear-gradient(180deg,#f9fbfd,#f3f7fb);
  border:1px solid #e8eef5}
.ntr-radio-page .totals{margin-top:18px}

.ntr-radio-page .totals p{margin:10px 0}
.ntr-radio-page #totalPrice{
  font-size:2rem;
  font-weight:900;

  color:#00a7d6;
}
#packageInfo{
  margin-top:22px;
  padding:20px;
  border-radius:22px;
  background:
    linear-gradient(
      135deg,
      rgba(0,183,255,.08),
      rgba(0,208,199,.08)
    );
  border:1px solid rgba(0,183,255,.12);
}
#packageInfo p{margin:10px 0}
.radio-note{
  display:flex;
  align-items:flex-start;
  gap:12px;

  margin-top:26px;
  padding:20px 24px;

  border-radius:22px;

  background:
    linear-gradient(
      135deg,
      rgba(255,193,7,.12),
      rgba(255,235,59,.08)
    );

  border:1px solid rgba(255,193,7,.18);

  color:#5f4a00;

  line-height:1.7;
}

.radio-note i{
  margin-top:3px;
  font-size:1.1rem;
  color:#fff
}
.radio-note p{color:#fff}
.cta-block{
  margin:34px 0;
  text-align:center;
}

.radio-cta-btn{
  display:inline-flex;
  align-items:center;
  gap:14px;

  padding:18px 34px;

  border-radius:999px;

  color:#fff !important;
  text-decoration:none;

  font-size:1rem;
  font-weight:900;

  background:
    linear-gradient(
      135deg,
      #00b7ff,
      #00d0c7
    );

  box-shadow:
    0 14px 34px rgba(0,183,255,.24);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.radio-cta-btn:hover{
  transform:translateY(-3px);

  box-shadow:
    0 18px 40px rgba(0,183,255,.34);
}

.radio-cta-btn i{
  transition:transform .2s ease;
}

.radio-cta-btn:hover i{
  transform:translateX(4px);
}
.radio-bottom-text{
  margin:16px 0 34px;
  color:#fff;
  font-size:.92rem;
  line-height:1.7;
}
.managers-title{
  margin-top:20px;
  border-radius:24px;
}
.user-profile-avatar{display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.03)}
.user-profile-avatar img{width:100%;height:100%;object-fit:contain;padding:20px}
.speedbar{margin: 20px 0 20px 20px}
@media(max-width:1100px){
  .ntr-article__grid{
    grid-template-columns:1fr;
  }

  .ntr-article__image{
    min-height:380px;
  }
  .dfm-team-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:1024px){

  .gallery{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery img:nth-child(n+3){
    display:none;
  }

}

@media(max-width:1000px){

  .hero-grid,
  .cards,
  .programs,
  .reviews{
    grid-template-columns:1fr 1fr;
  }

  .hero h1{
    font-size:3rem;
  }
}
@media(max-width:900px){
  .mobile-menu-btn{
    display:block;
  }

  nav{
    position:fixed;

    top:85px;
    left:15px;
    right:15px;

    display:grid;
    grid-template-columns:repeat(2, 1fr);

    gap:10px;

    padding:18px;

    border-radius:28px;

    background:
      linear-gradient(
        180deg,
        rgba(22,27,34,.98),
        rgba(13,17,23,.98)
      );

    border:1px solid var(--border);

    box-shadow:
      0 20px 50px rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transform:translateY(-10px);

    transition:.3s ease;

    z-index:1000;
  }

  nav.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  nav a{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:54px;

    padding:12px;

    text-align:center;

    border-radius:16px;

    font-size:.95rem;
    font-weight:700;

    background:rgba(255,255,255,.03);

    transition:.25s;
  }

  nav a:hover{
    background:rgba(255,255,255,.08);
  }

  .ntr-short-news{
    grid-template-columns:1fr;
  }

  .ntr-short-news__image{
    min-height:260px;
  }
  .dfm-contact-grid{
    grid-template-columns:1fr;
  }

}
@media (max-width:768px){
.page-hero{padding:28px 22px;border-radius:24px}
.ntr-radio-page .card{padding:24px 18px;border-radius:22px}
.ntr-radio-page .button-group{flex-direction:column}
.ntr-radio-page .btn{width:100%}
.radio-cta-btn{width:100%;justify-content:center}
}
@media(max-width:700px){
      .logo img{
    width:100px;
  }
  .hero-grid,
  .cards,
  .programs,
  .reviews{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:60px;
  }

  .hero h1{
    font-size:2.3rem;
  }

  .section-title{
    font-size:1.8rem;
  }
 
   .ntr-short-news{
    padding:18px;
    border-radius:22px;
    gap:20px;
  }

  .ntr-short-news__image{
    min-height:220px;
    border-radius:18px;
  }

  .ntr-short-news__title{
    font-size:1.45rem;
  }

  .ntr-short-news__text{
    font-size:.95rem;
    line-height:1.7;
  }

  .ntr-short-news__btn{
    left:14px;
    bottom:14px;
    width:calc(100% - 28px);
  }

  .ntr-article__hero{
    padding:20px;
    border-radius:24px;
  }

  .ntr-article__title{
    font-size:2rem;
  }

  .ntr-article__top{
    margin-bottom:25px;
  }

  .ntr-article__grid{
    gap:24px;
  }

  .ntr-article__image{
    min-height:240px;
    border-radius:20px;
  }

  .ntr-article__meta li{
    padding:16px 18px;
    border-radius:18px;
  }

  .ntr-article__content{
    font-size:1rem;
    line-height:1.8;
      padding:0 20px
  }

  .ntr-article__content blockquote{
    padding:22px;
    border-radius:20px;
  } 
  .dfm-shows{
    padding:50px 0;
  }

  .dfm-page-head{
    margin-bottom:40px;
  }

  .dfm-show-image img{
    height:220px;
  }

  .dfm-show-content{
    padding:22px;
  }

  .dfm-show-content h3 a{
    font-size:1.1rem;
  }
  
  .hero-live-title{
    font-size:1.4rem;
  }

  .hero-live-time{
    font-size:.82rem;
    padding:7px 12px;
  }

.schedule-arrow{
    display:none;
  }

  .schedule-scroll{
    gap:14px;
    padding-bottom:10px;
  }

  .program-card{
    flex:0 0 86%;
    min-height:200px;
    padding:22px;
  }

  .program-main h3{
    font-size:1.25rem;
  }
  .dfm-team-grid{
    grid-template-columns:1fr;
  }
   .bread-title h1{
    font-size:2.2rem;
  }

  .dfm-form-card,
  .dfm-info-card{
    padding:24px;
  }

  .dfm-section-heading h2,
  .dfm-section-title h2{
    font-size:1.7rem;
  }

  .messenger-row{
    gap:10px;
  }

  .messenger-btn{
    width:44px;
    height:44px;
    border-radius:14px;
  }
}
@media (max-width:640px){

  .gallery{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .gallery img{
    height:120px;
    border-radius:14px;
  }

  .gallery img:nth-child(n+3){
    display:none;
  }

}

@media(max-width:480px){
  nav{
    grid-template-columns:1fr;
  }
  .program-card.live::after{
    top:auto;
    bottom:14px;
    right:14px;
    font-size:.55rem;
    padding:6px 10px;
  }
   .section-link{padding:8px 12px;font-size:.82rem;margin-bottom:30px}
    }