* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body{
    background:
    radial-gradient(circle at top,#2b0000 0%,#120000 40%,#090000 100%);
    color:white;
    overflow-x:hidden;
}

/* ================= HEADER ================= */
.header{
    position:sticky;
    top:0;
    z-index:999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 40px;

    background:rgba(25,0,0,.8);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,70,70,.15);

    box-shadow:
    0 10px 40px rgba(255,0,0,.1);
}

/* ================= LOGO ================= */
.logo-area .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ff4d4d;
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  width: 35px;
  height: 35px;
}

/* ================= DESKTOP MENU ================= */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #ffd6d6;
  font-size: 14px;
  transition: 0.2s;
}

.nav-menu a:hover {
  color: #ff3b3b;
}
/* ================= CTA DESKTOP ================= */
.cta-area {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* BUTTON BASE */
.btn {
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

/* REGISTER BUTTON */
.register {
  background: linear-gradient(90deg, #ff0000, #8b0000);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

/* LOGIN BUTTON */
.login {
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
  background: transparent;
  transition: 0.2s;
}

.login:hover {
  background: #ff4d4d;
  color: #000;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #ff4d4d;
  cursor: pointer;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  display: none;
  flex-direction: column;

  position: fixed;
  top: 0;
  right: 0;

  width: 300px;
  height: 100vh;
  padding: 15px;
  z-index: 1000;

  background: linear-gradient(180deg, #1a0000, #4a0000);
  box-shadow: -10px 0 30px rgba(255, 0, 0, 0.25);
}

.mobile-menu.active {
  display: flex;
}

/* MOBILE HEADER */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 10px;
  margin-bottom: 10px;

  border-bottom: 1px solid rgba(255, 0, 0, 0.3);
  font-weight: bold;
  color: #ff4d4d;
}


/* CLOSE BUTTON */
.close-btn {
  background: none;
  border: none;
  color: #ff4d4d;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE NAV */
.mobile-menu a {
  padding: 12px 0;
  color: #ffd6d6;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 0, 0, 0.15);
  transition: 0.2s;
}

.mobile-menu a:hover {
  color: #ff3b3b;
  padding-left: 6px;
}

/* MOBILE CTA */
.mobile-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 15px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .cta-area .btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}


/* ================= HERO ================= */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    radial-gradient(circle at top,#2a0000,#120000);

}


/* GLOW */

.hero-glow{

    position:absolute;

    width:700px;

    height:700px;

    background:
    rgba(255,0,0,.15);

    border-radius:50%;

    filter:blur(150px);

    top:-200px;

    left:-200px;

}


/* CONTAINER */

.hero-container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

    position:relative;

    z-index:2;

}


/* LEFT */

.hero-content{

    flex:1;

}


/* SUBTITLE */

.hero-subtitle{

    color:#ff4d4d;

    font-size:14px;

    letter-spacing:3px;

}


/* TITLE */

.hero-content h1{

    font-size:62px;

    line-height:1.2;

    margin-top:15px;

    margin-bottom:25px;

    color:white;

}


/* PARAGRAPH */

.hero-content p{

    color:#cfcfcf;

    line-height:1.9;

    max-width:650px;

}


/* BUTTON AREA */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}


/* PRIMARY BUTTON */

.btn-primary{

    text-decoration:none;

    padding:16px 30px;

    border-radius:12px;

    color:white;

    font-weight:600;

    background:
    linear-gradient(
    90deg,
    #ff0000,
    #8b0000
    );

    box-shadow:
    0 15px 40px rgba(255,0,0,.3);

    transition:.3s;

}


.btn-primary:hover{

    transform:translateY(-5px);

}


/* SECONDARY BUTTON */

.btn-secondary{

    text-decoration:none;

    padding:16px 30px;

    border-radius:12px;

    border:1px solid rgba(255,80,80,.3);

    color:#ff4d4d;

    transition:.3s;

}


.btn-secondary:hover{

    background:
    rgba(255,0,0,.15);

}


/* BADGES */

.hero-badges{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:40px;

}


.badge{

    padding:12px 20px;

    border-radius:50px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,80,80,.15);

    color:#ddd;

}


/* RIGHT IMAGE */

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}


/* IMAGE */

.hero-image img{

    width:100%;

    max-width:500px;

    border-radius:25px;

    border:
    1px solid rgba(255,80,80,.15);

    box-shadow:
    0 30px 70px rgba(255,0,0,.25);

    transition:.4s;

}


.hero-image img:hover{

    transform:
    scale(1.03);

}

@media(max-width:900px){

    .hero-container{

        flex-direction:column;

        text-align:center;

        padding-top:120px;

    }

    .hero-content h1{

        font-size:40px;

    }

    .hero-content p{

        max-width:100%;

    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .hero-badges{

        justify-content:center;

    }

    .hero-image img{

        max-width:380px;

    }

}

/* BUTTONS */
.primary{

    background:
    linear-gradient(90deg,#ff0000,#8b0000);

    color:white;

    box-shadow:
    0 10px 35px rgba(255,0,0,.35);

    transition:.3s;
}

.primary:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 45px rgba(255,0,0,.5);

}
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-buttons .btn {
  padding: 12px 20px;
  font-size: 16px;
}

/* BADGES */
.hero-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #ffb3b3;
}

/* IMAGE SIDE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;

  /* premium effect */
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.35);
  border: 1px solid rgba(255, 0, 0, 0.3);
  transform: perspective(800px) rotateY(-8deg);
  transition: 0.3s;
}

.hero-image img:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-image img {
    transform: none;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }
}

.section{

    padding:100px 10%;

    position:relative;
}

.section:nth-child(odd){

    background:
    linear-gradient(
    180deg,
    rgba(40,0,0,.5),
    rgba(15,0,0,.7)
    );
}

.section:nth-child(even){

    background:
    linear-gradient(
    180deg,
    rgba(20,0,0,.8),
    rgba(8,0,0,.95)
    );
}

.section h2{

    font-size:42px;

    color:#ff4d4d;

    text-align:center;

    margin-bottom:60px;

    position:relative;
}

.section h2::after{

    content:"";

    width:120px;
    height:4px;

    background:
    linear-gradient(90deg,#ff0000,#ff7b7b);

    position:absolute;

    left:50%;

    bottom:-20px;

    transform:translateX(-50%);

    border-radius:20px;
}

.card{

    background:
    rgba(255,255,255,.03);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,80,80,.15);

    padding:35px;

    border-radius:25px;

    transition:.4s;

    box-shadow:
    0 20px 40px rgba(0,0,0,.35);
}

.card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(255,60,60,.4);

    box-shadow:
    0 25px 50px rgba(255,0,0,.2);
}

.number{

    font-size:55px;

    color:#ff4d4d;

    font-weight:bold;

    text-shadow:
    0 0 20px rgba(255,0,0,.3);
}


/* ================= FOOTER ================= */

footer{

    background:
    linear-gradient(
    180deg,
    #180000,
    #0a0000
    );

    padding-top:80px;

    border-top:
    1px solid rgba(255,60,60,.15);

}


/* CONTAINER */

.footer-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:50px;

}


/* TITLE */

.footer-box h3{

    color:#ff4d4d;

    margin-bottom:25px;

    font-size:22px;

}


/* PARAGRAPH */

.footer-box p{

    color:#ccc;

    line-height:1.8;

}


/* LIST */

.footer-box ul{

    list-style:none;

}


.footer-box li{

    margin-bottom:15px;

}


/* LINK */

.footer-box a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}


.footer-box a:hover{

    color:#ff4d4d;

    padding-left:6px;

}


/* COPYRIGHT */

.footer-bottom{

    margin-top:70px;

    text-align:center;

    padding:30px;

    border-top:
    1px solid rgba(255,255,255,.08);

    color:#999;

}

/* ================= FAQ SECTION ================= */

.faq-section{

    position:relative;

    padding:100px 10%;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    rgba(25,0,0,.8),
    rgba(10,0,0,.95)
    );

}


/* GLOW */

.faq-glow{

    position:absolute;

    width:400px;
    height:400px;

    background:
    rgba(255,0,0,.08);

    filter:blur(120px);

    border-radius:50%;

    top:-100px;
    right:-100px;

}


/* CONTAINER */

.faq-container{

    max-width:900px;

    margin:auto;

    position:relative;

    z-index:2;

}


/* TITLE */

.faq-title{

    text-align:center;

    margin-bottom:60px;

}


.faq-title span{

    color:#ff4d4d;

    letter-spacing:3px;

    font-size:14px;

}


.faq-title h2{

    font-size:48px;

    margin-top:10px;

    margin-bottom:20px;

    color:white;

}


.faq-title p{

    color:#bbb;

    line-height:1.8;

}


/* LIST */

.faq-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}


/* CARD */

.faq-item{

    background:
    rgba(255,255,255,.03);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,60,60,.12);

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.3);

}


.faq-item:hover{

    border-color:
    rgba(255,70,70,.35);

}


/* BUTTON */

.faq-question{

    width:100%;

    background:none;

    border:none;

    color:white;

    padding:24px 30px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-align:left;

    font-size:17px;

    font-weight:600;

}


/* ICON */

.icon{

    width:40px;
    height:40px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:
    rgba(255,0,0,.15);

    color:#ff4d4d;

    font-size:24px;

    transition:.4s;

}


/* ANSWER */

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.4s ease;

}


.faq-answer p{

    padding:0 30px 25px;

    color:#d8d8d8;

    line-height:1.9;

}


/* ACTIVE */

.faq-item.active .faq-answer{

    max-height:300px;

}


.faq-item.active .icon{

    transform:rotate(45deg);

    background:#ff2020;

    color:white;

}


.glow{

    position:absolute;

    width:350px;
    height:350px;

    background:
    rgba(255,0,0,.08);

    border-radius:50%;

    filter:blur(120px);

    top:0;
    right:0;
}

/* ================= ABOUT SECTION ================= */

.about{

    position:relative;

    padding:120px 10%;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    rgba(25,0,0,.85),
    rgba(12,0,0,.95)
    );

}


/* GLOW */

.about-glow{

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(255,0,0,.08);

    filter:blur(150px);

    border-radius:50%;

    top:-100px;
    right:-100px;

}


/* CONTAINER */

.about-container{

    max-width:1300px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    position:relative;

    z-index:2;

}


/* IMAGE */

.about-image{

    flex:1;

}


.about-image img{

    width:100%;

    max-width:500px;

    border-radius:30px;

    border:
    1px solid rgba(255,60,60,.15);

    box-shadow:
    0 25px 70px rgba(255,0,0,.25);

}


/* CONTENT */

.about-content{

    flex:1;

}


.about-subtitle{

    color:#ff4d4d;

    letter-spacing:3px;

    font-size:14px;

}


.about-content h2{

    margin-top:15px;

    margin-bottom:30px;

    font-size:48px;

    line-height:1.3;

    color:white;

}


.about-content p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:20px;

}


/* STATISTIC */

.about-stats{

    display:flex;

    gap:20px;

    margin-top:40px;

}


/* CARD */

.about-card{

    flex:1;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,80,80,.15);

    backdrop-filter:blur(20px);

    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:.4s;

}


.about-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(255,80,80,.4);

}


/* NUMBER */

.about-card h3{

    font-size:38px;

    color:#ff4d4d;

    margin-bottom:10px;

}


/* TEXT */

.about-card span{

    color:#bbb;

}

@media(max-width:900px){

    .about-container{

        flex-direction:column;

        text-align:center;

    }


    .about-content h2{

        font-size:36px;

    }


    .about-stats{

        flex-direction:column;

    }

}

/* ================= WHY US ================= */

.why-us{

    position: relative;

    padding: 120px 10%;

    overflow: hidden;

    background:
    linear-gradient(
    180deg,
    rgba(20,0,0,.85),
    rgba(8,0,0,.95)
    );

}


/* GLOW */

.why-glow{

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,0,0,.08);

    filter:blur(150px);

    left:-150px;
    top:-100px;

}


/* CONTAINER */

.why-container{

    max-width:1300px;

    margin:auto;

    position:relative;

    z-index:2;

}


/* TITLE */

.why-title{

    text-align:center;

    margin-bottom:70px;

}


.why-title span{

    color:#ff4d4d;

    letter-spacing:3px;

    font-size:14px;

}


.why-title h2{

    margin-top:15px;

    margin-bottom:25px;

    font-size:50px;

    color:white;

}


.why-title p{

    color:#bbb;

    line-height:1.9;

    max-width:800px;

    margin:auto;

}


/* GRID */

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}


/* CARD */

.why-card{

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,60,60,.12);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:40px;

    transition:.4s;

    box-shadow:
    0 20px 50px rgba(0,0,0,.3);

}


.why-card:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(255,70,70,.4);

    box-shadow:
    0 25px 60px rgba(255,0,0,.2);

}


/* ICON */

.why-icon{

    width:70px;
    height:70px;

    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:20px;

    font-size:30px;

    background:
    linear-gradient(
    135deg,
    #ff0000,
    #8b0000
    );

    box-shadow:
    0 10px 30px rgba(255,0,0,.25);

    margin-bottom:25px;

}


/* TITLE CARD */

.why-card h3{

    color:white;

    font-size:24px;

    margin-bottom:18px;

}


/* DESCRIPTION */

.why-card p{

    color:#cfcfcf;

    line-height:1.9;

}
@media(max-width:768px){

    .why-us{

        padding:100px 8%;

    }

    .why-title h2{

        font-size:36px;

    }

    .why-grid{

        gap:20px;

    }

    .why-card{

        padding:30px;

    }

}


    }

/* ================= CATEGORY SECTION ================= */

.category-section{

    position:relative;

    padding:120px 10%;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    rgba(18,0,0,.95),
    rgba(35,0,0,.85)
    );

}


/* GLOW */

.category-glow{

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(255,0,0,.08);

    border-radius:50%;

    filter:blur(150px);

    right:-100px;
    top:-100px;

}


/* CONTAINER */

.category-container{

    max-width:1300px;

    margin:auto;

    position:relative;

    z-index:2;

}


/* TITLE */

.category-title{

    text-align:center;

    margin-bottom:70px;

}


.category-title span{

    color:#ff4d4d;

    letter-spacing:3px;

    font-size:14px;

}


.category-title h2{

    color:white;

    font-size:50px;

    margin-top:15px;

    margin-bottom:20px;

}


.category-title p{

    color:#bbb;

    line-height:1.9;

}


/* GRID */

.category-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}


/* CARD */

.category-card{

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,60,60,.15);

    border-radius:25px;

    backdrop-filter:blur(20px);

    padding:40px;

    transition:.4s;

    box-shadow:
    0 20px 50px rgba(0,0,0,.3);

}


.category-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(255,70,70,.4);

    box-shadow:
    0 20px 60px rgba(255,0,0,.15);

}


/* ICON */

.category-icon{

    width:75px;
    height:75px;

    border-radius:20px;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:34px;

    margin-bottom:25px;

    background:
    linear-gradient(
    135deg,
    #ff0000,
    #8b0000
    );

}


/* TITLE */

.category-card h3{

    color:white;

    font-size:24px;

    margin-bottom:18px;

}


/* DESCRIPTION */

.category-card p{

    color:#ccc;

    line-height:1.9;

}

@media(max-width:768px){

    .category-section{

        padding:100px 8%;

    }

    .category-title h2{

        font-size:36px;

    }

    .category-card{

        padding:30px;

    }

}

/* ================= PROVIDER SECTION ================= */

.provider-section{

    position:relative;

    padding:120px 10%;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    rgba(25,0,0,.85),
    rgba(12,0,0,.95)
    );

}


/* GLOW */

.provider-glow{

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(255,0,0,.08);

    border-radius:50%;

    filter:blur(150px);

    left:-150px;
    top:-100px;

}


/* CONTAINER */

.provider-container{

    max-width:1300px;

    margin:auto;

    position:relative;

    z-index:2;

}


/* TITLE */

.provider-title{

    text-align:center;

    margin-bottom:70px;

}


.provider-title span{

    color:#ff4d4d;

    letter-spacing:3px;

    font-size:14px;

}


.provider-title h2{

    color:white;

    font-size:50px;

    margin-top:15px;

    margin-bottom:20px;

}


.provider-title p{

    color:#bbb;

    line-height:1.9;

    max-width:800px;

    margin:auto;

}


/* GRID */

.provider-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}


/* CARD */

.provider-card{

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,60,60,.12);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:35px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.4s;

    box-shadow:
    0 20px 50px rgba(0,0,0,.3);

}


.provider-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(255,70,70,.4);

    box-shadow:
    0 20px 60px rgba(255,0,0,.2);

}


/* IMAGE */

.provider-card img{

    max-width:140px;

    width:100%;

    filter:
    grayscale(100%);

    opacity:.8;

    transition:.4s;

}


.provider-card:hover img{

    filter:none;

    opacity:1;

}

@media(max-width:768px){

    .provider-section{

        padding:100px 8%;

    }

    .provider-title h2{

        font-size:36px;

    }

}

/* ================= GUIDE SECTION ================= */

.guide-section{

    position: relative;

    padding: 120px 10%;

    overflow: hidden;

    background:
    linear-gradient(
    180deg,
    rgba(15,0,0,.95),
    rgba(25,0,0,.85)
    );

}


/* GLOW */

.guide-glow{

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(255,0,0,.08);

    border-radius:50%;

    filter:blur(150px);

    right:-100px;
    top:-100px;

}


/* CONTAINER */

.guide-container{

    max-width:1300px;

    margin:auto;

    position:relative;

    z-index:2;

}


/* TITLE */

.guide-title{

    text-align:center;

    margin-bottom:70px;

}


.guide-title span{

    color:#ff4d4d;

    letter-spacing:3px;

    font-size:14px;

}


.guide-title h2{

    color:white;

    font-size:50px;

    margin-top:15px;

    margin-bottom:20px;

}


.guide-title p{

    color:#bbb;

    line-height:1.9;

}


/* GRID */

.guide-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}


/* CARD */

.guide-card{

    position:relative;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,60,60,.15);

    border-radius:25px;

    backdrop-filter:blur(20px);

    padding:45px;

    transition:.4s;

}


.guide-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(255,70,70,.4);

    box-shadow:
    0 20px 60px rgba(255,0,0,.15);

}


/* NUMBER */

.guide-number{

    width:80px;
    height:80px;

    border-radius:20px;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:28px;

    font-weight:bold;

    color:white;

    background:
    linear-gradient(
    135deg,
    #ff0000,
    #8b0000
    );

    margin-bottom:30px;

}


/* TITLE CARD */

.guide-card h3{

    color:white;

    font-size:24px;

    margin-bottom:20px;

}


/* DESCRIPTION */

.guide-card p{

    color:#ccc;

    line-height:1.9;

}

@media(max-width:768px){

    .guide-section{

        padding:100px 8%;

    }

    .guide-title h2{

        font-size:36px;

    }

    .guide-card{

        padding:35px;

    }

}

/* ================= ACCOUNT SECTION ================= */

.account-section{

    position:relative;

    padding:120px 10%;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    rgba(20,0,0,.9),
    rgba(10,0,0,.98)
    );

}


/* GLOW */

.account-glow{

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(255,0,0,.08);

    filter:blur(150px);

    border-radius:50%;

    left:-100px;
    top:-100px;

}


/* CONTAINER */

.account-container{

    max-width:1200px;

    margin:auto;

    position:relative;

    z-index:2;

}


/* TITLE */

.account-title{

    text-align:center;

    margin-bottom:70px;

}


.account-title span{

    color:#ff4d4d;

    font-size:14px;

    letter-spacing:3px;

}


.account-title h2{

    color:white;

    font-size:50px;

    margin-top:15px;

    margin-bottom:20px;

}


.account-title p{

    color:#bbb;

    line-height:1.9;

}


/* GRID */

.account-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}


/* CARD */

.account-card{

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,60,60,.15);

    border-radius:30px;

    backdrop-filter:blur(20px);

    padding:50px;

    transition:.4s;

    box-shadow:
    0 20px 60px rgba(0,0,0,.3);

}


.account-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(255,70,70,.4);

    box-shadow:
    0 25px 70px rgba(255,0,0,.15);

}


/* ICON */

.account-icon{

    width:85px;
    height:85px;

    border-radius:25px;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:35px;

    color:white;

    background:
    linear-gradient(
    135deg,
    #ff0000,
    #8b0000
    );

    margin-bottom:30px;

}


/* TITLE CARD */

.account-card h3{

    color:white;

    font-size:28px;

    margin-bottom:30px;

}


/* LIST */

.account-card ul{

    list-style:none;

}


.account-card li{

    color:#ccc;

    line-height:2.2;

    padding-left:30px;

    position:relative;

}


/* CHECK ICON */

.account-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#ff4d4d;

    font-weight:bold;

}
@media(max-width:768px){

    .account-section{

        padding:100px 8%;

    }

    .account-title h2{

        font-size:36px;

    }

    .account-card{

        padding:35px;

    }

}
/* ================= ARTICLE SECTION ================= */

.article-section{

    position:relative;

    padding:120px 10%;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    rgba(12,0,0,.95),
    rgba(22,0,0,.85)
    );

}


/* GLOW */

.article-glow{

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,0,0,.08);

    filter:blur(150px);

    right:-100px;
    top:-100px;

}


/* CONTAINER */

.article-container{

    max-width:1300px;

    margin:auto;

    position:relative;

    z-index:2;

}


/* TITLE */

.article-title{

    text-align:center;

    margin-bottom:70px;

}


.article-title span{

    color:#ff4d4d;

    letter-spacing:3px;

    font-size:14px;

}


.article-title h2{

    margin-top:15px;

    margin-bottom:20px;

    color:white;

    font-size:50px;

}


.article-title p{

    color:#bbb;

    line-height:1.9;

    max-width:800px;

    margin:auto;

}


/* GRID */

.article-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}


/* CARD */

.article-card{

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,60,60,.15);

    border-radius:30px;

    overflow:hidden;

    backdrop-filter:blur(20px);

    transition:.4s;

    box-shadow:
    0 20px 50px rgba(0,0,0,.3);

}


.article-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(255,80,80,.4);

    box-shadow:
    0 25px 70px rgba(255,0,0,.15);

}


/* IMAGE */

.article-image{

    overflow:hidden;

}


.article-image img{

    width:100%;

    display:block;

    transition:.5s;

}


.article-card:hover img{

    transform:scale(1.05);

}


/* CONTENT */

.article-content{

    padding:35px;

}


/* DATE */

.article-date{

    color:#ff4d4d;

    font-size:14px;

}


/* TITLE */

.article-content h3{

    color:white;

    font-size:24px;

    line-height:1.5;

    margin-top:15px;

    margin-bottom:20px;

}


/* TEXT */

.article-content p{

    color:#ccc;

    line-height:1.9;

    margin-bottom:30px;

}


/* BUTTON */

.article-btn{

    text-decoration:none;

    color:#ff4d4d;

    font-weight:600;

    transition:.3s;

}


.article-btn:hover{

    padding-left:10px;

}
@media(max-width:768px){

    .article-section{

        padding:100px 8%;

    }

    .article-title h2{

        font-size:36px;

    }

    .article-content{

        padding:25px;

    }

}

:root{
    --bg-dark:#140404;
    --bg-secondary:#220707;
    --primary:#b30000;
    --primary-light:#ff2d2d;
    --text:#ffffff;
    --text-soft:#d7c1c1;
}
.review-section{
    position:relative;
    overflow:hidden;
    padding:100px 20px;
    background:
    linear-gradient(
        135deg,
        #140404 0%,
        #220707 50%,
        #350909 100%
    );
}

.review-bg{
    position:absolute;
    width:600px;
    height:600px;
    background:#ff000020;
    filter:blur(150px);
    border-radius:50%;
    top:-200px;
    left:-200px;
}

.container{
    max-width:1100px;
    margin:auto;
    position:relative;
    z-index:2;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.review-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    border:1px solid rgba(255,50,50,.4);
    background:rgba(255,50,50,.08);
    color:#ff6b6b;
    font-size:14px;
}

.section-header h2{
    color:#fff;
    margin-top:20px;
    font-size:48px;
    font-weight:700;
}

.section-header p{
    color:#9fb6d8;
    margin-top:15px;
    font-size:17px;
}

.review-slider{
    max-width:850px;
    margin:auto;
    min-height:320px;
    position:relative;
}

.review-card{
    position:absolute;
    width:100%;
    opacity:0;
    visibility:hidden;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,50,50,.15);

    border-radius:30px;

    padding:45px;

    transform:translateY(30px);

    transition:.6s;

    box-shadow:
        0 0 30px rgba(179,0,0,.15),
        inset 0 0 20px rgba(255,255,255,.02);
}

.review-card.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.rating{
    color:#ff4d4d;
    font-size:24px;
    margin-bottom:20px;
}

.review-card p{
    color:#dbe8ff;
    line-height:1.9;
    font-size:18px;
    margin-bottom:30px;
}

.review-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.avatar{
    width:60px;
    height:60px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #b30000,
        #ff3b3b
    );

    color:white;
    font-weight:700;
    font-size:20px;

    box-shadow:
        0 0 25px rgba(255,0,0,.45);
}



.review-user h4{
    color:#ffffff;
}

.review-user span{
    color:#d8a6a6;
}

.dots{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    cursor:pointer;
    background:#5a2020;
    transition:.4s;
}

.dot.active{
    width:35px;
    border-radius:50px;

    background:
    linear-gradient(
        90deg,
        #b30000,
        #ff3b3b
    );

    box-shadow:
        0 0 15px rgba(255,0,0,.7);
}

@media(max-width:768px){

    .section-header h2{
    color:#ffffff;
    margin-top:20px;
    font-size:48px;
    font-weight:700;
}
.section-header p{
    color:#d7b6b6;
    margin-top:15px;
    font-size:17px;
}

    .review-card{
        padding:30px;
    }

    .review-slider{
        min-height:400px;
    }

    .review-card p{
        font-size:16px;
    }
}



/* =========================
   FLOATING BANNER
========================= */
.br-stick-card{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    z-index:9999;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;

    width:90%;
    max-width:1100px;

    padding:18px 22px;

    border-radius:16px;

    background:linear-gradient(135deg,#2a0000,#7a0000,#d60000);

    box-shadow:0 15px 40px rgba(214,0,0,.35);

    color:#fff;

    animation:slideUp .6s ease;
}

/* animasi masuk */
@keyframes slideUp{
    from{
        opacity:0;
        transform:translate(-50%,40px);
    }
    to{
        opacity:1;
        transform:translate(-50%,0);
    }
}


/* =========================
   FLOATING BANNER 780x90
========================= */
.br-stick-card{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    z-index:9999;

    width:780px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:10px 16px;

    border-radius:14px;

    background:linear-gradient(135deg,#2a0000,#7a0000,#d60000);

    box-shadow:0 15px 40px rgba(214,0,0,.35);

    color:#fff;

    overflow:hidden;

    animation:slideUp .5s ease;
}

/* glow */
.br-stick-card::before{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    top:-90px;
    right:-70px;

    background:rgba(255,255,255,.08);
    filter:blur(80px);
    border-radius:50%;
}

/* animation */
@keyframes slideUp{
    from{
        opacity:0;
        transform:translate(-50%,40px);
    }
    to{
        opacity:1;
        transform:translate(-50%,0);
    }
}

/* close animation */
.br-stick-card.closed{
    opacity:0;
    transform:translate(-50%,40px);
    pointer-events:none;
    transition:.4s ease;
}

/* CLOSE BUTTON */
.br-stick-close{
    position:absolute;
    top:8px;
    right:10px;

    width:28px;
    height:28px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    background:rgba(255,255,255,.15);
    color:#fff;

    font-size:14px;
    font-weight:bold;

    transition:.3s;
}

.br-stick-close:hover{
    background:rgba(255,255,255,.3);
    transform:rotate(90deg);
}

/* LEFT */
.promo-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
    z-index:2;
}

.promo-badge{
    display:inline-block;
    padding:4px 10px;
    border-radius:50px;

    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);

    font-size:10px;
    font-weight:700;
}

.promo-left h3{
    font-size:14px;
    font-weight:800;
    margin:4px 0;
    text-transform:uppercase;
}

.promo-left p{
    font-size:11px;
    color:#ffe3e3;
}

/* RIGHT */
.promo-right{
    display:flex;
    gap:10px;
    z-index:2;
}

.btn-daftar,
.btn-bonus{
    text-decoration:none;
    padding:8px 12px;
    border-radius:8px;

    font-size:12px;
    font-weight:700;

    transition:.3s;
    white-space:nowrap;
}

.btn-daftar{
    background:#fff;
    color:#b30000;
}

.btn-bonus{
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
}

.btn-daftar:hover,
.btn-bonus:hover{
    transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:820px){

    .br-stick-card{
        width:95%;
        height:auto;
        flex-direction:column;
        text-align:center;
        padding:14px;
        gap:10px;
    }

    .promo-right{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }

    .btn-daftar,
    .btn-bonus{
        width:48%;
    }
}



.kaisar-benefit {
  padding: 40px 15px;
  background: linear-gradient(135deg, #3b0000, #7a0000);
}

.kaisar-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.kaisar-title {
  color: #ff4d4d;
  font-size: 28px;
  margin-bottom: 10px;
}

.kaisar-subtitle {
  color: #ffd6d6;
  margin-bottom: 30px;
}

.kaisar-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 20px !important;
}

.kaisar-card {
  width: 300px !important;
  background: rgba(139, 0, 0, 0.8) !important;
  padding: 20px !important;
  border-radius: 10px !important;
  color: #fff !important;
  box-sizing: border-box !important;
}


.kaisar-card span {
  font-size: 35px;
  display: block;
  margin-bottom: 10px;
}

.kaisar-card h3 {
  color: #ff9999;
  font-size: 18px;
  margin-bottom: 8px;
}

.kaisar-card p {
  font-size: 13px;
  color: #ffecec;
}

.kaisar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255,0,0,0.4);
}
.kaisar-benefit * {
  max-width: 100%;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
  .kaisar-card {
    width: 100%;
  }
}




