*{  
    margin:0;  
    padding:0;  
    box-sizing:border-box;  
    font-family:'Poppins',sans-serif;  
}  
  
    body{  
      background:#0f0f0f;
      color:white;  
      overflow-x:hidden;  
    }  
  
    a{  
      text-decoration:none;  
      color:white;  
    }  
  
    .container{  
      width:90%;  
      max-width:1200px;  
      margin:auto;  
    }  
  
    /* HERO */  
  
    .hero{  
      min-height:100vh;  
      display:flex;  
      align-items:center;  
      justify-content:center;  
      padding:50px 0;  
      background:
      linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
      url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1974&auto=format&fit=crop');
      background-size:cover;
      background-position:center;
    }  
  
    .hero-content{  
      text-align:center;  
    }  
  
    .profile-img{  
      width:180px;  
      height:180px;  
      border-radius:50%;  
      object-fit:cover;  
      border:5px solid #ff3c00;  
      box-shadow:0 0 30px rgba(255,60,0,.4);  
      margin-bottom:25px;  
    }  
  
    .hero h1{  
      font-size:52px;  
      margin-bottom:10px;  
    }  
  
    .hero p{  
      color:#cfcfcf;  
      max-width:700px;  
      margin:auto;  
      line-height:1.8;  
      font-size:18px;  
    }  
      
.hero-divider{  
  display:flex;  
  justify-content:center;  
  align-items:center;  
  margin:25px auto;  
}  
  
.hero-divider span{  
  width:180px;  
  height:4px;  
  border-radius:50px;  
  background:linear-gradient(  
    90deg,  
    transparent,  
    #ff3c00,  
    #ff9900,  
    #ff3c00,  
    transparent  
  );  
  position:relative;  
  box-shadow:0 0 20px rgba(255,60,0,.7);  
}  
  
.hero-divider span::before{  
  content:'';  
  position:absolute;  
  left:50%;  
  top:50%;  
  transform:translate(-50%,-50%);  
  width:14px;  
  height:14px;  
  background:#fff;  
  border-radius:50%;  
  box-shadow:0 0 15px #fff;  
}  
  
.subscribe-container{  
  margin-top:35px;  
  
  display:inline-flex;  
  align-items:center;  
  gap:18px;  
  
  padding:16px 24px;  
  
  border-radius:80px;  
  
  background:rgba(255,255,255,0.06);  
  
  border:1px solid rgba(255,255,255,0.08);  
  
  backdrop-filter:blur(10px);  
  
  box-shadow:  
    0 8px 30px rgba(0,0,0,.25);  
  
  transition:.3s;  
}  
  
.subscribe-container:hover{  
  transform:translateY(-4px);  
}  
  
.subscribe-text{  
  font-size:22px;  
  font-weight:600;  
  color:#fff;  
  
  letter-spacing:.5px;  
}  
  
.youtube-btn-wrapper{  
  display:flex;  
  align-items:center;  
  justify-content:center;  
  
  transform:scale(1.15);  
}  
  
    /* SECTION */  
  
    section{  
      padding:70px 0;  
    }  
  
    .section-title{  
      text-align:center;  
      font-size:38px;  
      margin-bottom:50px;  
      position:relative;  
    }  
  
    .section-title::after{  
      content:'';  
      width:80px;  
      height:4px;  
      background:#ff3c00;  
      position:absolute;  
      left:50%;  
      transform:translateX(-50%);  
      bottom:-10px;  
      border-radius:20px;  
    }  
  
    /* VIDEOS */  
  
    .video-grid{  
      display:grid;  
      grid-template-columns:repeat(auto-fit,minmax(300px,1fr));  
      gap:25px;  
    }  
  
    .video-card{  
      background:#1b1b1b;  
      border-radius:18px;  
      overflow:hidden;  
      transition:.3s;  
    }  
  
    .video-card:hover{  
      transform:translateY(-5px);  
    }  
  
    iframe{  
      width:100%;  
      height:220px;  
      border:none;  
    }  
  
    .video-info{  
      padding:15px;  
    }  
  
    .video-info h3{  
      font-size:18px;  
    }  
  
    /* PLAYLIST */  
  
    .playlist{  
      width:100%;  
      height:500px;  
      border:none;  
      border-radius:20px;  
    }  

/* Video Thumbnail */

.video-thumbnail{
  position:relative;

  overflow:hidden;
}

.video-thumbnail img{
  width:100%;
  display:block;

  aspect-ratio:16/9;

  object-fit:cover;

  transition:.4s ease;
}

.video-card:hover .video-thumbnail img{
  transform:scale(1.05);
}

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

/* YouTube Player */

.youtube-player{
  position:relative;

  cursor:pointer;

  overflow:hidden;

  border-radius:18px 18px 0 0;
}

.youtube-player img{
  width:100%;
  display:block;

  aspect-ratio:16/9;

  object-fit:cover;

  transition:.4s ease;
}

.youtube-player:hover img{
  transform:scale(1.05);
}

.play-btn{
  position:absolute;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  width:72px;
  height:50px;

  border-radius:16px;

  background:#ff0000;

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

  box-shadow:
    0 12px 30px rgba(255,0,0,.4);

  transition:.3s ease;
}

.play-btn::before{
  content:'';

  width:0;
  height:0;

  border-left:18px solid #fff;
  border-top:11px solid transparent;
  border-bottom:11px solid transparent;

  margin-left:5px;
}

.youtube-player:hover .play-btn{
  transform:
    translate(-50%,-50%)
    scale(1.08);

  background:#ff1a1a;

  box-shadow:
    0 14px 30px rgba(255,0,0,.5);
}

.youtube-player iframe{
  width:100%;
  height:220px;
  border:none;
  display:block;
}
  
/* FOOTER */  
  
footer{  
  background:#111;  
  padding:40px 0;  
  text-align:center;  
}  
  
.socials{  
  display:flex;  
  justify-content:center;  
  gap:18px;  
}  
  
.socials a{  
  width:55px;  
  height:55px;  
  display:flex;  
  align-items:center;  
  justify-content:center;  
  border-radius:50%;  
  background:#1d1d1d;  
  color:white;  
  font-size:22px;  
  transition:.3s;  
}  
  
.socials a:hover{  
  transform:translateY(-5px);  
  background:#ff3c00;  
}  
      
footer p{  
    color:#aaa;  
    margin-top:15px;  
}  

/* SUPPORT BUTTON */

.support-trip-section{
  display:flex;
  justify-content:center;

  margin:20px;
}

.support-trip-btn{
  border:none;
  outline:none;

  background:
    linear-gradient(
      135deg,
      #b80780,
      #e66b19
    );

  color:#fff;

  padding:17px 34px;

  border-radius:70px;

  font-size:14px;
  font-weight:600;

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

  cursor:pointer;

  transition:.35s ease;

  box-shadow:
    0 15px 35px rgba(255,60,0,.35);
}

.support-trip-btn:hover{
  transform:
    translateY(-4px)
    scale(1.03);

  box-shadow:
    0 0 15px rgba(57,255,20,.7),
    0 0 45px rgba(57,255,20,.45);
}
    
/* DONATION POPUP */

.donation-popup{
  position:fixed;
  inset:0;

  background:
    radial-gradient(
      circle at top,
      rgba(255,80,0,.18),
      rgba(0,0,0,.92)
    );

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

  padding:20px;
  
  /* BLUR BACKGROUND */

  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);

  z-index:99999;

  opacity:0;
  visibility:hidden;

  transition:.4s ease;
}

.donation-popup.show{
  opacity:1;
  visibility:visible;
}

.donation-box{
  width:100%;
  max-width:460px;

  position:relative;

  overflow:hidden;

  padding:38px 30px;

  border-radius:32px;
  
  text-align:center;
  
  background:
    linear-gradient(
      rgba(0,0,0,.68),
      rgba(0,0,0,.88)
    ),
    url('jyotirlingas.png');

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

  box-shadow:

    0 0 10px rgba(255,80,0,.5),

    0 0 25px rgba(255,80,0,.35),

    0 0 60px rgba(255,80,0,.18),

    0 5px 60px rgba(0,0,0,.5);

  backdrop-filter:blur(15px);

  transform:
    translateY(40px)
    scale(.92);

  transition:.45s ease;
}

.donation-box::before{
  content:'';

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(255,120,0,.12),
      transparent,
      rgba(0,0,0,.55)
    );

  pointer-events:none;
}

.donation-box::after{
  content:'';

  position:absolute;
  inset:0;

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

  background:linear-gradient(
    135deg,
    #39ff14,
    #ff6f00,
    #39ff14
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;
  mask-composite:exclude;

  animation:neonBorder 3s linear infinite;

  pointer-events:none;
}

@keyframes neonBorder{

  0%{
    filter:hue-rotate(0deg);
  }

  100%{
    filter:hue-rotate(360deg);
  }

}

.donation-box > *{
  position:relative;
  z-index:2;
}

.donation-popup.show .donation-box{
  transform:
    translateY(0)
    scale(1);
}

/* GLOW */

.donation-glow{
  position:absolute;

  width:240px;
  height:240px;

  background:
    radial-gradient(
      circle,
      rgba(255,94,0,.35),
      transparent
    );

  top:-120px;
  left:50%;

  transform:translateX(-50%);

  pointer-events:none;
}

/* CLOSE */

.close-popup{
  position:absolute;

  top:16px;
  right:16px;

  width:42px;
  height:42px;

  border:none;

  border-radius:50%;

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

  color:#fff;

  font-size:18px;

  cursor:pointer;

  transition:.3s;
}

.close-popup:hover{
  background:#ff3c00;
  transform:rotate(90deg);
}

/* BADGE */

.trip-badge{
  display:inline-block;
  
  margin-bottom: -10px;

  padding:10px 18px;

  font-size:20px;
  font-weight:600;

  letter-spacing:.6px;
}

/* TITLE */

.donation-box h2{
  font-size:34px;

  line-height:1.3;

  margin-bottom:20px;

  font-weight:700;
}

/* TEXT */

.donation-box p{
  color:#d4d4d4;

  line-height:1.9;

  font-size:16px;
}

/* BUTTON */

.donate-btn{
  margin-top:32px;

  border:none;
  outline:none;

  background:
    linear-gradient(
      135deg,
      #ff0000,
      #ff7b00
    );

  color:#fff;

  padding:17px 34px;

  border-radius:70px;

  font-size:18px;
  font-weight:600;

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

  cursor:pointer;

  transition:.35s ease;

  box-shadow:
    0 15px 35px rgba(255,60,0,.35);
}

.donate-btn:hover{
  transform:
    translateY(-4px)
    scale(1.03);

  box-shadow:
    0 20px 45px rgba(255,60,0,.45);
}

/* QR */

.qr-section{
  margin-top:32px;

  display:none;

  flex-direction:column;
  align-items:center;

  animation:fadeUp .4s ease;
}

.qr-section.show{
  display:flex;
}

.qr-box{
  background:#fff;

  padding:14px;

  border-radius:24px;

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

.qr-box img{
  width:240px;
  max-width:100%;

  display:block;

  border-radius:14px;
}

.qr-section span{
  margin-top:14px;

  color:#ddd;

  font-size:15px;
}

/* ANIMATION */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}


/* =========================
   LARGE TABLETS
========================= */

@media (max-width: 1024px){

  .hero h1{
    font-size:44px;
  }

  .hero p{
    font-size:17px;
  }

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

}


/* =========================
   TABLETS
========================= */

@media (max-width: 768px){

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:16px;
    line-height:1.7;
  }

  .profile-img{
    width:170px;
    height:170px;
  }

  .section-title{
    font-size:30px;
  }

  .section{
    padding:60px 0;
  }

  .video-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  iframe,
  .youtube-player iframe{
    height:210px;
  }

  .playlist{
    height:300px;
  }

  .subscribe-container{
    gap:12px;
    padding:14px 18px;
    border-radius:25px;
  }

  .subscribe-text{
    font-size:17px;
  }

  .youtube-btn-wrapper{
    transform:scale(1);
  }

  .socials{
    gap:14px;
    flex-wrap:wrap;
  }

  .socials a{
    width:50px;
    height:50px;
    font-size:20px;
  }

  .donation-box{
    padding:34px 22px;
    border-radius:26px;
  }

  .donation-box h2{
    font-size:27px;
  }

  .donation-box p{
    font-size:15px;
  }

  .donate-btn{
    justify-content:center;
  }
  
  footer p{
    font-size:15px;
  }

}


/* =========================
   MOBILE DEVICES
========================= */

@media (max-width: 480px){

  .container{
    width:92%;
  }

  .hero h1{
    font-size:28px;
    line-height:1.3;
  }

  .hero p{
    font-size:15px;
  }

  .profile-img{
    width:160px;
    height:160px;

    border-width:4px;
  }

  .hero-divider span{
    width:130px;
  }

  .section-title{
    font-size:26px;
    margin-bottom:40px;
  }

  .video-info{
    padding:14px;
  }

  .video-info h3{
    font-size:16px;
    line-height:1.5;
  }

  .support-trip-section{
    margin:25px 16px 10px;
  }

  .support-trip-btn{
    width:100%;

    justify-content:center;

    padding:16px 18px;

    font-size:15px;
    line-height:1.5;

    text-align:center;

    gap:10px;
  }

  .support-trip-btn i{
    font-size:16px;
  }

  /* DONATE BUTTON */

  .donate-btn{
    width:100%;

    justify-content:center;

    padding:16px 18px;

    font-size:16px;

    gap:10px;
  }

  .donate-btn i{
    font-size:16px;
  }

  /* FOOTER TEXT */

  footer p{
    font-size:13px;

    line-height:1.7;

    padding:0 12px;

    margin-top:18px;
  }

  .trip-badge{
    font-size:16px;
  }

  .donation-box h2{
    font-size:22px;
  }

  .qr-box img{
    width:200px;
  }

}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 360px){

  .hero h1{
    font-size:24px;
  }

  .hero p{
    font-size:14px;
  }

  .subscribe-text{
    font-size:15px;
  }

  .socials a{
    width:46px;
    height:46px;
    font-size:18px;
  }

  .donation-box{
    padding:28px 18px;
  }

}