*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#050505;
  color:#fff;
  font-family:'Poppins', sans-serif;
  overflow-x:hidden;
}

/* PARTICLES */
.bg-particles{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  overflow:hidden;
}

.bg-particles span{
  position:absolute;
  width:6px;
  height:6px;
  background:rgba(255,255,255,0.18);
  border-radius:50%;
  animation:floatParticle 14s linear infinite;
}

.bg-particles span:nth-child(1){ left:8%; top:90%; animation-delay:0s; }
.bg-particles span:nth-child(2){ left:25%; top:100%; animation-delay:2s; }
.bg-particles span:nth-child(3){ left:52%; top:95%; animation-delay:5s; }
.bg-particles span:nth-child(4){ left:74%; top:100%; animation-delay:7s; }
.bg-particles span:nth-child(5){ left:90%; top:92%; animation-delay:10s; }

@keyframes floatParticle{
  0%{
    transform:translateY(0) scale(1);
    opacity:0;
  }
  20%{
    opacity:1;
  }
  100%{
    transform:translateY(-120vh) scale(1.5);
    opacity:0;
  }
}

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 40px;
  z-index:1000;
  background:rgba(0,0,0,0.35);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
  font-family:'Cinzel', serif;
  font-size:26px;
  letter-spacing:3px;
  color:#fff;
}

.navbar{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.navbar a{
  color:#f5f5f5;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  transition:0.3s ease;
  position:relative;
}

.navbar a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1px;
  background:#f3d8a2;
  transition:0.3s ease;
}

.navbar a:hover{
  color:#f3d8a2;
}

.navbar a:hover::after{
  width:100%;
}

/* HERO */
.hero{
  position:relative;
  height:100vh;
  min-height:760px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(100%) brightness(120%);
}

.overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.82)),
    radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 45%);
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(92%, 980px);
  text-align:center;
}

.eyebrow{
  color:#f3d8a2;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:16px;
}

.typewriter{
  font-family:'Cinzel', serif;
  font-size:76px;
  border-right:3px solid #fff;
  white-space:nowrap;
  overflow:hidden;
  width:0;
  margin:0 auto;
  animation:typing 3s steps(10,end) forwards, blink 0.7s infinite;
}

@keyframes typing{
  to{width:100%}
}

@keyframes blink{
  50%{border-color:transparent}
}

.hero-subtext{
  margin:26px auto 0;
  max-width:820px;
  font-size:18px;
  line-height:1.9;
  color:#e6e6e6;
}

.hero-buttons{
  margin-top:34px;
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.play-btn,
.secondary-btn{
  display:inline-block;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  padding:15px 38px;
  transition:0.35s ease;
}

.play-btn{
  background:#fff;
  color:#000;
  border:1px solid #fff;
}

.play-btn::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:#000;
  transition:0.4s ease;
}

.play-btn:hover::before{
  left:0;
}

.play-btn span{
  position:relative;
  z-index:2;
  font-weight:600;
}

.play-btn:hover span{
  color:#fff;
}

.secondary-btn{
  border:1px solid rgba(255,255,255,0.45);
  color:#fff;
  background:rgba(255,255,255,0.05);
}

.secondary-btn:hover{
  border-color:#fff;
  background:rgba(255,255,255,0.1);
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:0.8s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* SECTIONS */
.info-section,
.gallery-section,
.feature-banner,
.cta-section,
.combat{
  position:relative;
  z-index:2;
}

.info-section{
  padding:95px 8%;
  background:#080808;
}

.info-section.dark{
  background:#0d0d0d;
}

.content-box{
  max-width:1150px;
  margin:0 auto;
}

.section-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.section-head.center{
  justify-content:center;
}

.section-head p{
  color:#f3d8a2;
  letter-spacing:2px;
  font-size:13px;
  font-weight:600;
}

.line{
  width:70px;
  height:1px;
  background:#f3d8a2;
}

.content-box h2{
  font-family:'Cinzel', serif;
  font-size:42px;
  color:#fff;
  margin-bottom:22px;
  line-height:1.3;
}

.content-box p{
  color:#dddddd;
  font-size:17px;
  line-height:1.95;
  margin-bottom:18px;
}

.center-title{
  text-align:center;
}

/* FEATURE BANNER */
.feature-banner{
  padding:0 8% 40px;
  background:#080808;
}

.banner-box{
  max-width:1150px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.banner-item{
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.08);
  padding:26px;
}

.banner-item h3{
  font-family:'Cinzel', serif;
  margin-bottom:10px;
  color:#fff;
}

.banner-item p{
  margin:0;
  color:#cfcfcf;
  line-height:1.8;
}

/* SLIDER AREA */
.combat{
  padding:95px 8%;
  background:#050505;
  text-align:center;
}

.tag-box{
  display:inline-block;
  background:#f3d8a2;
  padding:12px 34px;
  margin-bottom:20px;
}

#feature-title{
  font-family:'Cinzel', serif;
  font-size:32px;
  color:#000;
}

.strip{
  width:100%;
  height:4px;
  background:#4f4f4f;
  margin:20px 0 30px;
  position:relative;
  overflow:hidden;
}

.strip::after{
  content:'';
  position:absolute;
  width:85px;
  height:4px;
  background:#fff;
  animation:move 3s linear infinite;
}

@keyframes move{
  from{left:-85px}
  to{left:100%}
}

.slider-box{
  width:min(100%, 940px);
  margin:20px auto;
  padding:8px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.16);
  backdrop-filter:blur(10px);
}

.slider-box img{
  width:100%;
  display:block;
}

#feature-desc{
  margin-top:25px;
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
  font-size:18px;
  line-height:1.9;
  color:#ddd;
  white-space:pre-line;
  text-align:left;
  opacity:0;
  transform:translateY(20px);
  transition:0.45s ease;
}

#feature-desc.active{
  opacity:1;
  transform:translateY(0);
}

/* STEPS */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-top:30px;
}

.step-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:24px;
  transition:0.3s ease;
}

.step-card:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,0.06);
}

.step-number{
  display:inline-block;
  font-family:'Cinzel', serif;
  color:#f3d8a2;
  font-size:24px;
  margin-bottom:12px;
}

.step-card h3{
  font-family:'Cinzel', serif;
  font-size:22px;
  margin-bottom:10px;
}

.step-card p{
  margin:0;
  font-size:16px;
  line-height:1.8;
}

/* SHOP GRID */
.shop-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-top:28px;
}

.shop-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.1);
  padding:26px;
  transition:0.3s ease;
}

.shop-card:hover{
  transform:translateY(-4px);
}

.shop-card h3{
  font-family:'Cinzel', serif;
  font-size:24px;
  margin-bottom:10px;
  color:#f3d8a2;
}

.shop-card p{
  margin:0;
  font-size:16px;
  line-height:1.85;
}

.note-text{
  margin-top:20px;
}

/* FEATURE GRID */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
  margin-top:30px;
}

.feature-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
  padding:24px;
  transition:0.3s ease;
}

.feature-card:hover{
  transform:translateY(-5px);
}

.feature-card h3{
  font-family:'Cinzel', serif;
  font-size:24px;
  margin-bottom:10px;
}

.feature-card p{
  margin:0;
  font-size:16px;
  line-height:1.85;
}

/* GALLERY */
.gallery-section{
  padding:95px 8%;
  background:#0a0a0a;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  margin-top:32px;
}

.gallery-card{
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
}

.gallery-card img{
  width:100%;
  display:block;
  transition:0.45s ease;
}

.gallery-card:hover img{
  transform:scale(1.06);
}

/* FAQ */
.faq-list{
  display:grid;
  gap:18px;
  margin-top:28px;
}

.faq-item{
  padding:22px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}

.faq-item h3{
  font-family:'Cinzel', serif;
  margin-bottom:10px;
  font-size:22px;
}

.faq-item p{
  margin:0;
  font-size:16px;
  line-height:1.85;
}

/* CTA */
.cta-section{
  padding:90px 8%;
  text-align:center;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.82)),
    url("images/thumb2.png") center/cover no-repeat;
}

.cta-section h2{
  font-family:'Cinzel', serif;
  font-size:46px;
  margin-bottom:18px;
}

.cta-section p{
  max-width:800px;
  margin:0 auto 28px;
  color:#e4e4e4;
  font-size:17px;
  line-height:1.9;
}

.cta-btn{
  margin-top:6px;
}

/* FOOTER */
footer{
  padding:34px 20px;
  text-align:center;
  background:#070707;
  border-top:1px solid rgba(255,255,255,0.08);
  position:relative;
  z-index:2;
}

footer p{
  color:#d9d9d9;
  font-size:15px;
}

.footer-links{
  margin-top:14px;
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
  transition:0.3s ease;
}

.footer-links a:hover{
  color:#f3d8a2;
}

/* MOBILE */
@media(max-width:992px){
  .banner-box,
  .steps-grid,
  .shop-grid,
  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .typewriter{
    font-size:56px;
  }

  .content-box h2,
  .cta-section h2{
    font-size:34px;
  }
}

@media(max-width:768px){
  .site-header{
    padding:14px 18px;
    flex-direction:column;
    gap:10px;
  }

  .logo{
    font-size:22px;
  }

  .navbar{
    justify-content:center;
    gap:14px;
  }

  .navbar a{
    font-size:14px;
  }

  .hero{
    min-height:100vh;
  }

  .typewriter{
    font-size:40px;
  }

  .hero-subtext{
    font-size:15px;
    line-height:1.8;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .play-btn,
  .secondary-btn{
    width:220px;
    text-align:center;
  }

  .content-box h2,
  .cta-section h2{
    font-size:28px;
  }

  .content-box p,
  #feature-desc,
  .cta-section p{
    font-size:15px;
  }

  .banner-box,
  .steps-grid,
  .shop-grid,
  .feature-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  #feature-title{
    font-size:22px;
  }
}

@media(max-width:480px){
  .typewriter{
    font-size:31px;
  }

  .hero-content{
    width:92%;
  }

  .eyebrow{
    font-size:11px;
    letter-spacing:2px;
  }

  .tag-box{
    padding:10px 18px;
  }

  #feature-title{
    font-size:19px;
  }

  .content-box h2,
  .cta-section h2{
    font-size:24px;
  }
}
.inner-hero{
  position:relative;
  min-height:58vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.82)),
    url("images/thumb2.png") center/cover no-repeat;
  padding:120px 20px 60px;
  text-align:center;
}

.page-title{
  font-family:'Cinzel', serif;
  font-size:58px;
  color:#fff;
}

.article-content{
  max-width:900px;
}

.article-content h2{
  margin-top:30px;
  margin-bottom:14px;
  font-size:32px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.blog-card{
  display:block;
  text-decoration:none;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
  transition:0.35s ease;
}

.blog-card:hover{
  transform:translateY(-6px);
}

.blog-card img{
  width:100%;
  display:block;
}

.blog-card-content{
  padding:22px;
}

.blog-card-content h3{
  font-family:'Cinzel', serif;
  font-size:24px;
  color:#fff;
  margin-bottom:12px;
}

.blog-card-content p{
  color:#d7d7d7;
  margin:0;
  line-height:1.8;
  font-size:16px;
}

@media(max-width:768px){
  .page-title{
    font-size:34px;
  }

  .blog-grid{
    grid-template-columns:1fr;
  }

  .article-content h2{
    font-size:24px;
  }
}
.top-header{
  position:fixed;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 25px;
  background:rgba(0,0,0,0.7);
  z-index:999;
}

.logo{
  font-family:'Cinzel', serif;
  font-size:22px;
}

.menu-toggle{
  font-size:26px;
  cursor:pointer;
}

.mobile-menu{
  position:absolute;
  top:60px;
  right:0;
  background:#000;
  width:200px;
  display:none;
  flex-direction:column;
}

.mobile-menu a{
  padding:15px;
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid #333;
}

.mobile-menu.active{
  display:flex;
}
.menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

@media(max-width:768px){
  .menu-toggle{
    display:block;
  }

  .navbar{
    display:none;
    position:absolute;
    top:70px;
    right:20px;
    width:220px;
    background:#000;
    padding:10px 0;
    border:1px solid rgba(255,255,255,0.1);
    z-index:1000;
  }

  .navbar.active{
    display:flex;
    flex-direction:column;
  }

  .navbar a{
    padding:12px 18px;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }

  .navbar a:last-child{
    border-bottom:none;
  }
}