* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  background: #070d1a;
  color: #eaeef7;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.site-header {
  background: #0b1324;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  color: #f5b942;
  letter-spacing: 1px;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 25px;
}

.main-nav a {
  color: #cfd6e6;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #f5b942;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #fff;
}
.hamburger.active span:nth-child(1){
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: translateY(-9px) rotate(-45deg);
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1.5s ease-in-out;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to right,
            rgba(3,10,24,.92),
            rgba(3,10,24,.75),
            rgba(3,10,24,.45)
        );
}

.hero-grid{
    position:relative;
    z-index:2;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-text h1 span,
.hero-text h1 {
  color: #fff;
}

.hero-text h1::first-line {
  color: #fff;
}

.hero-text p {
  margin: 15px 0;
  color: #b9c2d3;
 
}

.hero-text .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #f5b942;
  color: #0b1324;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-text .btn:hover {
  transform: translateY(-2px);
  background: #ffcc66;
}

/* ================= AD ================= */
.ad-banner {
  width: 100%;
  margin: 20px 0;
}

.ad-box {
  border: 1px dashed #3a4a66;
  padding: 20px;
  text-align: center;
  color: #7f8aa3;
  border-radius: 8px;
}

.ad-box.small {
  margin-top: 20px;
}

/* ================= MAIN LAYOUT ================= */
.main-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 25px;
  margin-top: 100px;
}

/* SECTION TITLE */
.section-title {
  font-size: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #f5b942;
  padding-left: 10px;
}

/* ================= CARDS ================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: #0b1324;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content span {
  font-size: 12px;
  color: #8ea0bf;
}

.card-content h3 {
  font-size: 16px;
  margin: 8px 0;
  color: #fff;
}

.card-content p {
  font-size: 13px;
  color: #aab4c7;
}

.card-content a {
  display: inline-block;
  margin-top: 10px;
  color: #f5b942;
  font-size: 13px;
  text-decoration: none;
}


/* ================= SIDEBAR ================= */
.sidebar .widget {
  background: #0b1324;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}

.sidebar h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #f5b942;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}

.sidebar ul li a {
  color: #cfd6e6;
  text-decoration: none;
}

.sidebar ul li a:hover {
  color: #f5b942;
}

.legal-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.cards {
  background: white;
  color: #070d1a;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  text-align: center;
}

/* ================= FOOTER ================= */


.site-footer{
   margin-top: 50px;
    background:#020d18;
    border-top:1px solid rgba(243,177,59,.15);
    padding-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.footer-grid h4{
    color:#f3b13b;
    margin-bottom:20px;
}

.footer-grid p,
.footer-grid li{
    color:#b8c4d1;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid ul li{
    margin-bottom:10px;
}

.footer-grid ul li a{
    color:#b8c4d1;
    text-decoration:none;
    transition:.3s;
}

.footer-grid ul li a:hover{
    color:#f3b13b;
}

.copyright{
    text-align:center;
    padding:25px;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.05);
    color:#8b9ab0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

.hero-text p {
  text-align: center;
}

  .main-layout {
    grid-template-columns: 1fr;
  }

 .legal-grid {
  grid-template-columns: 1fr;
 }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

   .hamburger{
        display:flex;
    }

  .main-nav{
   position:absolute;
   top:75px;
  left:0;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
   background: #0b1324;
  overflow:hidden;
  max-height:0;
  opacity:0;
  visibility:hidden;
  transition:
   max-height .45s ease,
    opacity .35s ease,
  visibility .35s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
   border-radius:0 0 20px 20px;
    }

    .main-nav.active{
        max-height:500px;
        opacity:1;
        visibility:visible;
    }

    .main-nav a{
        color:#fff;
        width:100%;
        text-align:center;
        padding:18px;
        font-size:17px;
        font-weight:600;
        transition:.5s;
    }

    .main-nav a:hover{
        padding-left:30px;
    }
}