/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins,sans-serif;
}

body{
  background:#0a0a0a;
  color:#fff;
  line-height:1.6;
}

/* CONTAINER */
.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* NAV */
header{
  position:fixed;
  width:100%;
  background:rgba(0,0,0,0.85);
  z-index:1000;
}

.nav{
  display:flex;
  justify-content:space-between;
  height:70px;
  align-items:center;
}

nav a{
  margin-left:20px;
  color:#aaa;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:#00ffcc;
}

/* HERO */
.hero{
  padding:150px 0;
  text-align:center;
}

.hero h1{
  font-size:48px;
  font-weight:600;
}

.hero p{
  color:#aaa;
  margin-top:10px;
  font-size:16px;
}

.hero-buttons{
  margin-top:20px;
}

/* BUTTON SYSTEM (IMPORTANT FIX) */
button, .btn-primary{
  margin-top:10px;
  padding:12px 20px;
  background:#00ffcc;
  border:none;
  border-radius:6px;
  cursor:pointer;
  color:#000;
  text-decoration:none;
  display:inline-block;
  font-weight:600;
  transition:0.3s;
}

button:hover, .btn-primary:hover{
  opacity:0.85;
}

/* SECONDARY BUTTON */
.secondary{
  background:transparent;
  border:1px solid #333;
  color:#aaa;
  margin-left:10px;
}

.secondary:hover{
  border-color:#00ffcc;
  color:#00ffcc;
}

/* SECTION */
.section{
  padding:80px 0;
  text-align:center;
}

.section h2{
  font-size:32px;
  margin-bottom:20px;
}

/* GRID */
.grid{
  display:flex;
  gap:20px;
  margin-top:30px;
  flex-wrap:wrap;
}

/* CARD */
.card{
  background:#141414;
  padding:20px;
  border-radius:10px;
  flex:1;
  min-width:250px;
  transition:0.3s;
}

/*  CLICKABLE CARD FIX  */
.card-link{
  text-decoration:none;
  color:inherit;
  flex:1;
  min-width:250px;
  display:block;
  cursor:pointer;
}

.card-link .card{
  height:100%;
}

/* PREMIUM HOVER EFFECT */
.card-link:hover .card{
  transform:translateY(-8px);
  border:1px solid #00ffcc;
}

.card img{
  width:100%;
  border-radius:8px;
}

.live{
  color:#00ffcc;
}

/*  SPLIT */
.split-section{
  padding:80px 0;
}

.split-title{
  text-align:center;
  font-size:36px;
  margin-bottom:40px;
}

.split-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.split-half{
  min-height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px;
}

.left{
  background:#0f0f0f;
}

.right{
  background:#111;
  border-left:1px solid #1f1f1f;
}

.split-content{
  max-width:420px;
  text-align:left;
}

.split-content p{
  color:#aaa;
  margin-bottom:15px;
}

.split-content ul{
  padding-left:18px;
  margin-bottom:20px;
}

.split-content button{
  margin-top:15px;
  padding:12px 24px;
  background:#00ffcc;
  border:none;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
}

.split-content button:hover{
  opacity:0.85;
}

/* OWN */
.own{
  background:#111;
}

.own-container{
  display:flex;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
}

.own-card{
  flex:1;
  min-width:250px;
  background:#141414;
  padding:20px;
  border-radius:10px;
  transition:0.3s;
}

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

.highlight{
  border:1px solid #00ffcc;
}

.own button{
  margin-top:25px;
}

/* ADS */
.ads{
  background:#111;
}

.ads-container{
  display:flex;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
}

.ads-card{
  flex:1;
  min-width:250px;
  background:#141414;
  padding:25px;
  border-radius:10px;
  transition:0.3s;
}

.ads-card:hover{
  transform:translateY(-6px);
  border:1px solid #00ffcc;
}

.ads-cta{
  margin-top:40px;
}

.ads-note{
  color:#aaa;
  margin-bottom:15px;
}

/* CTA */
.cta{
  padding:80px 0;
  text-align:center;
  background:#111;
}

/* FOOTER */
footer{
  text-align:center;
  padding:20px;
  color:#777;
}

/* MOBILE */
@media(max-width:768px){

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

  .split-wrapper{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .secondary{
    margin-left:0;
  }
}

/* SCROLL ANIMATION BASE */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* ACTIVE STATE */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT / RIGHT VARIANTS */
.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
}

/* STAGGER DELAYS */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* PREMIUM HOVER ENHANCEMENT */
.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,255,204,0.08), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.card:hover::after {
  opacity: 1;
}