:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --text:#e9eefc;
  --muted:#b6c3e6;
  --brand:#4aa3ff;
  --brand2:#7cf3d3;
  --border:rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #060b14, #0b1220);
  color:var(--text);
  line-height:1.6;
}

a{color:var(--brand);text-decoration:none;}
a:hover{text-decoration:underline;}

.container{
  width:95%;
  max-width:1200px;
  margin:auto;
}

.header{
  position:sticky;
  top:0;
  z-index:999;
  background: rgba(11,18,32,0.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:15px;
}

.logo{
  font-size:26px;
  font-weight:800;
  color:#fff;
  letter-spacing:0.5px;
}
.logo span{color:var(--brand2);}

.nav ul{
  list-style:none;
  display:flex;
  gap:16px;
}
.nav a{
  color:#fff;
  font-weight:600;
  padding:8px 10px;
  border-radius:8px;
}
.nav a.active,
.nav a:hover{
  background:rgba(255,255,255,0.06);
  text-decoration:none;
}

.menu-btn{
  display:none;
  background:transparent;
  border:1px solid var(--border);
  color:#fff;
  font-size:18px;
  padding:6px 10px;
  border-radius:10px;
  cursor:pointer;
}

.search-box input{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.05);
  color:#fff;
  outline:none;
  min-width:220px;
}
.search-box input::placeholder{color:rgba(255,255,255,0.6);}

.main-layout{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:24px;
  padding:24px 0;
}

.hero{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap:20px;
  background:linear-gradient(120deg, rgba(74,163,255,0.12), rgba(124,243,211,0.08));
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}

.hero-text h1{
  font-size:34px;
  line-height:1.2;
  margin-bottom:12px;
}
.hero-text p{
  color:var(--muted);
  margin-bottom:16px;
}

.hero-card{
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}
.hero-card h3{margin-bottom:10px;}
.hero-card ul{list-style:none;}
.hero-card li{margin:8px 0;}

.section-title{
  font-size:24px;
  margin:18px 0 12px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.card{
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:0.2s ease;
}
.card:hover{
  transform: translateY(-4px);
}
.card img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}
.card-body{
  padding:16px;
}
.card-body h3{
  margin:8px 0;
  font-size:18px;
  line-height:1.3;
}
.card-body p{
  color:var(--muted);
  font-size:14px;
}

.tag{
  display:inline-block;
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(74,163,255,0.18);
  border:1px solid rgba(74,163,255,0.25);
}
.tag-red{
  background:rgba(255,90,90,0.18);
  border:1px solid rgba(255,90,90,0.25);
}

.sidebar .widget{
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  margin-bottom:16px;
  box-shadow:var(--shadow);
}
.widget h3{margin-bottom:10px;}
.widget ul{list-style:none;}
.widget li{margin:8px 0;}
.widget p{color:var(--muted);}

.newsletter{
  margin-top:26px;
  background:linear-gradient(120deg, rgba(74,163,255,0.12), rgba(124,243,211,0.08));
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px;
  box-shadow:var(--shadow);
}
.newsletter p{color:var(--muted); margin:8px 0 12px;}
.newsletter-form{
  display:flex;
  gap:10px;
}
.newsletter-form input{
  flex:1;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.05);
  color:#fff;
  outline:none;
}

.btn{
  background:linear-gradient(90deg, var(--brand), var(--brand2));
  border:none;
  color:#000;
  font-weight:700;
  padding:12px 16px;
  border-radius:12px;
  cursor:pointer;
  transition:0.2s ease;
}
.btn:hover{opacity:0.9;}
.btn-outline{
  background:transparent;
  border:1px solid var(--border);
  color:#fff;
}

.footer{
  border-top:1px solid var(--border);
  margin-top:20px;
  padding:30px 0 10px;
}
.footer-inner{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:20px;
}
.footer-col p, .footer-col li, .footer-col a{
  color:var(--muted);
  font-size:14px;
}
.footer-col ul{list-style:none;}
.footer-col li{margin:8px 0;}
.footer-bottom{
  text-align:center;
  padding-top:16px;
  border-top:1px solid var(--border);
  margin-top:20px;
  color:var(--muted);
  font-size:14px;
}

.page{
  padding:26px 0;
}
.page h1{
  font-size:34px;
  margin-bottom:14px;
}
.page h2{
  margin-top:18px;
  margin-bottom:8px;
}
.page p, .page li{
  color:var(--muted);
  margin-bottom:10px;
}
.page ul{
  margin-left:18px;
  margin-bottom:10px;
}

.page-intro{
  color:var(--muted);
  margin-bottom:18px;
}

.warning-box{
  background:rgba(255,90,90,0.12);
  border:1px solid rgba(255,90,90,0.25);
  padding:14px;
  border-radius:14px;
  margin-top:18px;
  color:#fff;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  margin-top:18px;
}
.contact-card{
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.contact-form input, .contact-form textarea{
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.05);
  color:#fff;
  outline:none;
}
.contact-form label{
  font-weight:700;
}

.cookie-consent{
  position:fixed;
  bottom:20px;
  left:20px;
  right:20px;
  display:none;
  z-index:9999;
}
.cookie-inner{
  max-width:900px;
  margin:auto;
  background:rgba(15,26,46,0.95);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow:var(--shadow);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.cookie-inner p{
  color:var(--muted);
  font-size:14px;
}
.cookie-buttons{
  display:flex;
  gap:10px;
}

/* Responsive */
@media(max-width:1000px){
  .grid{grid-template-columns: repeat(2, 1fr);}
  .main-layout{grid-template-columns:1fr;}
  .sidebar{order:2;}
  .content{order:1;}
  .hero{grid-template-columns:1fr;}
  .search-box input{min-width:170px;}
}

@media(max-width:650px){
  .grid{grid-template-columns: 1fr;}
  .footer-inner{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .menu-btn{display:block;}
  .nav ul{
    display:none;
    flex-direction:column;
    background:rgba(15,26,46,0.95);
    border:1px solid var(--border);
    border-radius:14px;
    padding:12px;
    position:absolute;
    right:20px;
    top:70px;
    width:220px;
  }
  .nav ul.show{display:flex;}
  .cookie-inner{flex-direction:column; align-items:flex-start;}
  .newsletter-form{flex-direction:column;}
}