/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background:#050505;
  color:#fff;
  line-height:1.5;
  overflow-x:hidden;
}

body.modal-open{
  overflow:hidden;
}

a{
  color:#fff;
  text-decoration:none;
}

img,
video{
  display:block;
  max-width:100%;
}

button{
  font:inherit;
}

/* VARIABLES */
:root{
  --bg:#050505;
  --bg-soft:#0a0a0d;
  --border:rgba(255,255,255,0.08);
  --text-soft:rgba(255,255,255,0.76);
  --text-fade:rgba(255,255,255,0.58);

  --blue:#2f39af;
  --blue-2:#4a5cff;
  --cyan:#3fd0ff;
  --teal:#2fffcf;

  --accent:#4a5cff;
  --accent-2:#2f39af;
  --accent-glow:rgba(74,92,255,0.28);
  --accent-glow-soft:rgba(74,92,255,0.12);

  --grad-main: linear-gradient(90deg, #2f39af, #4a5cff, #3fd0ff, #2fffcf);
  --grad-main-soft: linear-gradient(90deg, rgba(47,57,175,0.95), rgba(74,92,255,0.95), rgba(63,208,255,0.95));
  --grad-footer: linear-gradient(120deg, #0b0f2a 0%, #1a2d6d 32%, #2f6f9f 68%, #2fffcf 100%);
  --grad-footer-dark: linear-gradient(90deg, rgba(11,15,42,0.96), rgba(26,45,109,0.96), rgba(47,111,159,0.92));

  --shadow:0 18px 40px rgba(0,0,0,0.38);
  --blur:blur(18px);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 265px 100%, 100% 265px;
  opacity:0.18;
  z-index:0;
}

.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
  position:relative;
  z-index:2;
}

.section-pattern{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.section-pattern::before{
  content:"";
  position:absolute;
  width:780px;
  height:780px;
  border-radius:50%;
  background:
    repeating-radial-gradient(
      circle,
      rgba(255,255,255,0.12) 0px,
      rgba(255,255,255,0.12) 2px,
      transparent 12px,
      transparent 26px
    );
  opacity:0.10;
  pointer-events:none;
  z-index:0;
  transform:rotate(-12deg);
}

.pattern-right::before{
  right:-240px;
  top:50%;
  transform:translateY(-50%) rotate(-12deg);
}

.pattern-left::before{
  left:-240px;
  top:50%;
  transform:translateY(-50%) rotate(12deg);
}

.pattern-bottom-right::before{
  right:-220px;
  bottom:-180px;
}

.glow-orb{
  position:absolute;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle, var(--accent-glow) 0%, rgba(74,92,255,0.06) 32%, transparent 70%);
  filter:blur(26px);
  pointer-events:none;
  z-index:0;
  opacity:0.7;
}

.glass-card{
  background:linear-gradient(to bottom, rgba(22,22,30,0.66), rgba(9,9,13,0.58));
  backdrop-filter:var(--blur);
  -webkit-backdrop-filter:var(--blur);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(74,92,255,0.05),
    0 14px 32px rgba(0,0,0,0.34);
}

.glass-accent{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(74,92,255,0.08),
    0 0 26px rgba(63,208,255,0.08),
    0 18px 40px rgba(0,0,0,0.42);
}

/* ANIMATIONS */
.reveal{
  opacity:0;
  transform:translateY(42px) scale(0.98);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(.2,.8,.2,1);
  will-change:transform, opacity;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
}

.reveal-delay-1{ transition-delay:0.08s; }
.reveal-delay-2{ transition-delay:0.16s; }
.reveal-delay-3{ transition-delay:0.24s; }
.reveal-delay-4{ transition-delay:0.32s; }

.parallax{
  will-change:transform;
  transition:transform 0.08s linear;
}

/* HEADER */
.top-bar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:rgba(6,6,10,0.42);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.top-bar-inner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  font-size:1.05rem;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
  white-space:nowrap;
}

.menu{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.menu a{
  font-size:0.95rem;
  color:rgba(255,255,255,0.90);
  transition:0.25s ease;
  position:relative;
  padding:6px 0;
}

.menu a:hover{
  background:linear-gradient(90deg, #2f39af, #4a5cff, #3fd0ff, #2fffcf);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:none;
}

/* PAGE */
.page{
  position:relative;
  z-index:1;
  padding-top:0;
  padding-bottom:90px;
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#000;
  isolation:isolate;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
  transform:translate3d(0,0,0) scale(1.02);
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.34), rgba(0,0,0,0.62)),
    radial-gradient(circle at 50% 30%, rgba(74,92,255,0.14), transparent 32%),
    linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.08));
}

.hero::after{
  content:"";
  position:absolute;
  right:-220px;
  bottom:-220px;
  width:820px;
  height:820px;
  border-radius:50%;
  background:
    repeating-radial-gradient(
      circle,
      rgba(255,255,255,0.12) 0px,
      rgba(255,255,255,0.12) 2px,
      transparent 12px,
      transparent 26px
    );
  opacity:0.10;
  z-index:2;
  transform:rotate(-18deg);
}

.hero-content{
  position:relative;
  z-index:3;
  text-align:center;
  width:100%;
  max-width:980px;
  padding:120px 20px 40px;
}

.hero-eyebrow{
  display:inline-block;
  padding:10px 18px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-radius:999px;
  font-size:0.82rem;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:18px;
  color:rgba(255,255,255,0.92);
  box-shadow:0 0 18px rgba(74,92,255,0.10);
}

.hero-title{
  margin-bottom:18px;
  line-height:0.95;
  text-transform:uppercase;
  letter-spacing:1px;
}

.hero-title-top{
  display:block;
  font-size:clamp(2.8rem, 6vw, 6rem);
  font-weight:900;
  width:fit-content;
  margin:0 auto 10px;
  background:linear-gradient(90deg, #2f39af, #4a5cff, #3fd0ff, #2fffcf);
  background-size:300% 300%;
  animation:gradientMove 6s ease infinite;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  text-shadow:none;
}

.hero-title-bottom{
  display:block;
  font-size:clamp(2.6rem, 5.7vw, 5.6rem);
  font-weight:500;
  color:#ffffff;
}

@keyframes gradientMove{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}

.hero p{
  max-width:760px;
  margin:0 auto 28px;
  font-size:1.06rem;
  color:rgba(255,255,255,0.84);
  text-shadow:0 3px 14px rgba(0,0,0,0.35);
}

.hero-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  font-size:0.94rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.8px;
  transition:0.24s ease;
  position:relative;
  overflow:hidden;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(90deg, rgba(47,57,175,0.95), rgba(74,92,255,0.95), rgba(63,208,255,0.95));
  box-shadow:0 0 24px rgba(63,208,255,0.20);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 0 28px rgba(63,208,255,0.30);
}

.btn-secondary{
  color:#fff;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.16);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.btn-secondary:hover{
  transform:translateY(-2px);
  border-color:rgba(63,208,255,0.34);
  box-shadow:0 0 20px rgba(63,208,255,0.12);
}

/* COMMON */
.content-wrap{
  padding-top:42px;
  position:relative;
  z-index:2;
}

.section{
  position:relative;
  margin-bottom:54px;
  padding:28px 0;
}

.section-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
  position:relative;
  z-index:2;
}

.section-title .line{
  width:44px;
  height:2px;
  background:linear-gradient(to right, var(--blue-2), rgba(63,208,255,0.4));
  box-shadow:0 0 14px rgba(63,208,255,0.25);
}

.section-title h2{
  font-size:1.45rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.card{
  border-radius:30px;
  overflow:hidden;
  position:relative;
  z-index:2;
}

/* PLAYER */
.player-card{
  padding:18px;
}

.video-shell{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 0 0 1px rgba(74,92,255,0.06), 0 0 24px rgba(63,208,255,0.06);
}

.video-shell iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
  background:#000;
}

.live-badge{
  position:absolute;
  top:14px;
  left:14px;
  z-index:5;
  background:linear-gradient(90deg, rgba(47,57,175,0.95), rgba(74,92,255,0.95), rgba(63,208,255,0.92));
  color:#fff;
  font-size:0.78rem;
  font-weight:700;
  padding:8px 12px;
  border-radius:999px;
  letter-spacing:0.8px;
  text-transform:uppercase;
  box-shadow:0 0 18px rgba(63,208,255,0.28);
  pointer-events:none;
}

.player-note{
  padding-top:14px;
  color:var(--text-soft);
  text-align:center;
  font-size:0.95rem;
}

/* NEXT EVENT */
.next-event-wrap{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr 1.25fr;
  gap:28px;
  align-items:stretch;
  border-radius:32px;
  overflow:hidden;
  padding:22px;
}

.next-event-wrap .glow-orb{
  right:-60px;
  top:10%;
}

.next-event-media{
  position:relative;
  z-index:2;
}

.next-event-media img{
  width:100%;
  height:100%;
  min-height:460px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:0 0 0 1px rgba(74,92,255,0.06);
}

.next-event-text{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:18px 6px 18px 2px;
}

.next-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:0.98rem;
  color:#fff;
  margin-bottom:18px;
  font-weight:700;
}

.next-kicker-dot{
  width:14px;
  height:14px;
  border:2px solid var(--blue-2);
  border-radius:50%;
  position:relative;
  box-shadow:0 0 14px rgba(63,208,255,0.18);
}

.next-kicker-dot::after{
  content:"";
  position:absolute;
  width:6px;
  height:6px;
  background:var(--cyan);
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

.next-event-text h3{
  font-size:clamp(2rem, 4.8vw, 4.6rem);
  line-height:1.02;
  font-weight:800;
  color:rgba(255,255,255,0.92);
  margin-bottom:18px;
}

.next-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}

.next-meta span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  font-size:0.92rem;
  color:rgba(255,255,255,0.88);
}

.next-event-text p{
  font-size:1.02rem;
  color:var(--text-soft);
  max-width:780px;
  margin-bottom:24px;
}

.next-event-mini{
  align-self:flex-start;
  min-width:260px;
  padding:24px 24px;
  border-radius:26px;
}

.next-event-mini .big{
  font-size:4rem;
  line-height:1;
  font-weight:800;
  color:transparent;
  -webkit-text-stroke:2px var(--blue-2);
  text-shadow:0 0 20px rgba(63,208,255,0.12);
  margin-bottom:10px;
}

.next-event-mini .small{
  color:rgba(255,255,255,0.88);
  font-size:1.05rem;
  font-weight:700;
  line-height:1.35;
}

/* VIDEO GALLERY */
.youtube-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  position:relative;
  z-index:2;
}

.youtube-card{
  position:relative;
  min-height:610px;
  border-radius:30px;
  overflow:hidden;
  background:#0b0b0b;
  transition:transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border:1px solid rgba(255,255,255,0.08);
}

.youtube-card:hover{
  transform:translateY(-5px);
  border-color:rgba(63,208,255,0.20);
  box-shadow:
    0 0 0 1px rgba(74,92,255,0.08),
    0 0 26px rgba(63,208,255,0.10),
    0 20px 34px rgba(0,0,0,0.44);
}

.youtube-card-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1);
  transition:transform 0.35s ease;
}

.youtube-card:hover .youtube-card-bg{
  transform:scale(1.05);
}

.youtube-card-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.88) 18%, rgba(0,0,0,0.34) 64%, rgba(0,0,0,0.20) 100%);
}

.youtube-badge{
  position:absolute;
  top:18px;
  right:18px;
  z-index:3;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(0,0,0,0.54);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.08);
  font-weight:700;
  font-size:0.96rem;
  box-shadow:0 0 18px rgba(63,208,255,0.08);
}

.youtube-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:3;
  padding:26px;
}

.youtube-inner{
  padding:28px;
  border-radius:28px;
  background:rgba(16,16,22,0.62);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.07);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 0 1px rgba(74,92,255,0.05),
    0 0 24px rgba(63,208,255,0.06);
}

.youtube-category{
  color:var(--cyan);
  font-size:1rem;
  margin-bottom:16px;
  text-shadow:0 0 10px rgba(63,208,255,0.18);
}

.youtube-title{
  font-size:1.2rem;
  font-weight:800;
  line-height:1.2;
  margin-bottom:14px;
  color:#fff;
}

.youtube-desc{
  color:rgba(255,255,255,0.82);
  font-size:0.98rem;
  margin-bottom:22px;
}

.youtube-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  min-height:58px;
  padding:0 0 0 22px;
  border-radius:999px;
  background:rgba(0,0,0,0.58);
  border:1px solid rgba(63,208,255,0.18);
  box-shadow:0 0 18px rgba(63,208,255,0.10);
  color:#fff;
  font-weight:800;
  font-size:0.95rem;
  text-transform:uppercase;
  letter-spacing:0.4px;
  overflow:hidden;
  transition:0.24s ease;
  cursor:pointer;
}

.youtube-btn:hover{
  border-color:rgba(63,208,255,0.34);
  box-shadow:0 0 24px rgba(63,208,255,0.18);
}

.youtube-btn-arrow{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, var(--blue-2), var(--cyan));
  color:#fff;
  font-size:1.8rem;
  font-weight:700;
  flex-shrink:0;
  box-shadow:0 0 18px rgba(63,208,255,0.20);
}

/* IMAGE GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  position:relative;
  z-index:2;
}

.gallery-item{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  background:#0a0a0a;
  cursor:pointer;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border:1px solid rgba(255,255,255,0.08);
}

.gallery-item:hover{
  transform:translateY(-4px);
  border-color:rgba(63,208,255,0.22);
  box-shadow:
    0 0 0 1px rgba(74,92,255,0.06),
    0 0 24px rgba(63,208,255,0.08),
    0 16px 30px rgba(0,0,0,0.42);
}

.gallery-item img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.gallery-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.44), rgba(0,0,0,0.04)),
    radial-gradient(circle at center, rgba(63,208,255,0.18), transparent 56%);
  opacity:0;
  transition:0.25s ease;
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
}

/* CONTACTS */
.contacts-card{
  padding:24px;
  position:relative;
  overflow:hidden;
}

.contacts-card .glow-orb{
  left:-80px;
  bottom:-80px;
}

.contacts-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
  position:relative;
  z-index:2;
}

.contact-box{
  border-radius:22px;
  padding:22px;
  min-height:130px;
}

.contact-box h3{
  font-size:0.95rem;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:10px;
  color:rgba(255,255,255,0.88);
}

.contact-box p,
.contact-box a{
  font-size:1rem;
  color:var(--text-soft);
  word-break:break-word;
}

.contact-box a:hover{
  color:var(--cyan);
}

/* FOOTER PREMIUM */
.footer-premium{
  position:relative;
  padding:74px 0 130px;
  background:var(--grad-footer);
  overflow:hidden;
  isolation:isolate;
}

.footer-premium::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.46);
  z-index:1;
}

.footer-premium::before{
  content:"";
  position:absolute;
  right:-180px;
  bottom:-180px;
  width:920px;
  height:920px;
  border-radius:50%;
  background:
    repeating-radial-gradient(
      circle,
      rgba(255,255,255,0.12) 0px,
      rgba(255,255,255,0.12) 2px,
      transparent 12px,
      transparent 26px
    );
  opacity:0.12;
  pointer-events:none;
  transform:rotate(-18deg);
  z-index:0;
}

.footer-premium .container{
  position:relative;
  z-index:2;
}

.footer-premium .glow-orb{
  right:40px;
  top:60px;
  opacity:0.42;
}

.footer-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:34px;
  margin-bottom:36px;
}

.footer-brand h3{
  font-size:2rem;
  margin-bottom:16px;
  font-weight:800;
}

.footer-brand p{
  color:rgba(255,255,255,0.86);
  font-size:1rem;
  max-width:360px;
  margin-bottom:24px;
}

.footer-contact-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-contact-list div,
.footer-contact-list a{
  color:rgba(255,255,255,0.90);
  font-size:1rem;
}

.footer-col h4{
  font-size:1.5rem;
  margin-bottom:20px;
  color:#fff;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-links a{
  color:rgba(255,255,255,0.86);
  transition:0.22s ease;
}

.footer-links a:hover{
  color:#ffffff;
  text-shadow:0 0 12px rgba(63,208,255,0.20);
}

.footer-newsletter input[type="email"]{
  width:100%;
  height:52px;
  background:transparent;
  border:none;
  border-bottom:1px solid rgba(255,255,255,0.24);
  color:#fff;
  font-size:1rem;
  outline:none;
  margin-bottom:18px;
}

.footer-newsletter label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(255,255,255,0.86);
  font-size:0.95rem;
  margin-bottom:18px;
}

.footer-newsletter input[type="checkbox"]{
  width:18px;
  height:18px;
  margin-top:2px;
  accent-color:var(--cyan);
  flex-shrink:0;
}

.footer-socials{
  display:flex;
  gap:14px;
  margin-top:10px;
}

.footer-socials a{
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  transition:0.22s ease;
  background:rgba(255,255,255,0.04);
}

.footer-socials a:hover{
  border-color:rgba(63,208,255,0.34);
  color:#fff;
  box-shadow:0 0 20px rgba(63,208,255,0.18);
}

.footer-cta{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  overflow:hidden;
  margin-bottom:24px;
  border-radius:0;
  box-shadow:0 0 0 1px rgba(63,208,255,0.06);
}

.footer-cta-left{

  background:linear-gradient(90deg, #2f39af, #4a5cff, #3fd0ff);
  color:#fff;
  padding:34px 36px;
  display:flex;
  align-items:center;
  gap:20px;
  font-weight:700;
  font-size:1.2rem;
  box-shadow:0 0 30px rgba(63,208,255,0.20);
}

.footer-cta-left a{
  color:#fff;
  border:1px solid rgba(255,255,255,0.22);
  padding:14px 22px;
  border-radius:999px;
  font-size:0.95rem;
  font-weight:700;
  background:rgba(0,0,0,0.12);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.footer-cta-right{
  background:rgba(6,16,24,0.78);
  color:#fff;
  padding:34px 36px;
  display:flex;
  align-items:center;
  gap:20px;
  font-weight:700;
  font-size:1.1rem;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.footer-cta-right span{
  color:#ffffff;
  display:block;
  margin-top:6px;
  font-size:1.8rem;
  text-shadow:0 0 18px rgba(63,208,255,0.22);
}

.footer-last-row{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.88);
  font-size:0.95rem;
}

.footer-last-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.footer-last-links a{
  color:rgba(255,255,255,0.88);
}

.footer-last-links a:hover{
  color:#ffffff;
  text-shadow:0 0 10px rgba(63,208,255,0.20);
}

/* WHATSAPP */
.whatsapp-btn{
  position:fixed;
  right:18px;
  bottom:72px;
  z-index:10000;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, rgba(47,57,175,0.95), rgba(74,92,255,0.95), rgba(63,208,255,0.95));
  box-shadow:0 10px 22px rgba(0,0,0,0.35), 0 0 18px rgba(63,208,255,0.22);
  transition:transform 0.2s ease;
}

.whatsapp-btn:hover{
  transform:scale(1.06);
}

.whatsapp-btn svg{
  width:28px;
  height:28px;
  fill:#fff;
}

/* LIGHTBOX IMMAGINI */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.94);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:20000;
}

.lightbox.active{
  display:flex;
}

.lightbox img{
  max-width:95vw;
  max-height:88vh;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.6), 0 0 28px rgba(63,208,255,0.10);
}

.lightbox-close{
  position:absolute;
  top:18px;
  right:22px;
  font-size:34px;
  color:#fff;
  cursor:pointer;
  line-height:1;
}

/* LIGHTBOX VIDEO */
.video-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:30000;
}

.video-lightbox.active{
  display:flex;
}

.video-lightbox-box{
  position:relative;
  width:min(1100px, 96vw);
  background:rgba(12,12,18,0.92);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  padding:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.55);
}

.video-lightbox-close{
  position:absolute;
  top:-10px;
  right:-10px;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  cursor:pointer;
  color:#fff;
  font-size:1.8rem;
  line-height:1;
  background:linear-gradient(180deg, rgba(47,57,175,0.95), rgba(74,92,255,0.95), rgba(63,208,255,0.95));
  box-shadow:0 0 18px rgba(63,208,255,0.20);
  transition:0.2s;
}

.video-lightbox-close:hover{
  transform:scale(1.08);
}

.video-lightbox-frame-wrap{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:16px;
  overflow:hidden;
  background:#000;
}

.video-lightbox-frame-wrap iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* BOTTOM TICKER */
.bottom-fixed-bar{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  z-index:9999;
  background:var(--grad-footer-dark);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-top:1px solid rgba(255,255,255,0.08);
  box-shadow:0 -1px 0 rgba(63,208,255,0.12), 0 -10px 30px rgba(0,0,0,0.28);
  overflow:hidden;
}

.bottom-ticker{
  width:100%;
  overflow:hidden;
  white-space:nowrap;
  min-height:54px;
  display:flex;
  align-items:center;
}

.bottom-ticker-track{
  display:flex;
  width:max-content;
  animation:tickerMove 28s linear infinite;
}

.bottom-ticker-track span{
  display:inline-block;
  padding-right:60px;
  font-size:0.92rem;
  font-weight:700;
  letter-spacing:0.4px;
  color:#ffffff;
}

@keyframes tickerMove{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .next-event-wrap{
    grid-template-columns:1fr;
  }

  .next-event-media img{
    min-height:360px;
  }

  .youtube-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-cta{
    grid-template-columns:1fr;
  }
}

@media (max-width: 991px){
  .top-bar-inner{
    min-height:auto;
    padding-top:14px;
    padding-bottom:14px;
    flex-direction:column;
    justify-content:center;
  }

  .menu{
    justify-content:center;
  }

  .page{
    padding-top:0;
  }

  .hero{
    min-height:100vh;
  }

  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .contacts-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .container{
    padding-left:14px;
    padding-right:14px;
  }

  .hero{
    min-height:100vh;
  }

  .hero-content{
    padding:120px 14px 40px;
  }

  .hero p{
    font-size:0.95rem;
  }

  .hero-actions{
    flex-direction:column;
    align-items:center;
  }

  .btn{
    width:100%;
    max-width:300px;
  }

  .section-title h2{
    font-size:1.18rem;
  }

  .youtube-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .youtube-card{
    min-height:520px;
  }

  .brand{
    text-align:center;
    font-size:0.95rem;
  }

  .menu{
    gap:14px;
  }

  .menu a{
    font-size:0.88rem;
  }

  .player-card,
  .contacts-card{
    padding:14px;
  }

  .next-event-text h3{
    font-size:2rem;
  }

  .next-event-mini{
    min-width:100%;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-cta-left,
  .footer-cta-right{
    padding:26px 22px;
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-last-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .whatsapp-btn{
    width:54px;
    height:54px;
    right:14px;
    bottom:68px;
  }

  .bottom-ticker-track span{
    font-size:0.82rem;
    padding-right:40px;
  }

  .video-lightbox{
    padding:12px;
  }

  .video-lightbox-box{
    width:100%;
    padding:12px;
    border-radius:18px;
  }

  .video-lightbox-close{
    width:38px;
    height:38px;
    font-size:1.5rem;
    top:-6px;
    right:-6px;
  }
}

@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal.is-visible,
  .parallax,
  .youtube-card,
  .gallery-item,
  .btn,
  .hero-title-top,
  .bottom-ticker-track{
    transition:none !important;
    transform:none !important;
    animation:none !important;
  }
}