
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Fredoka',sans-serif;
  min-height:100vh;
  background:
  radial-gradient(circle,#ffffff10 2px,transparent 2px),
  linear-gradient(135deg,#4c1d95,#111827,#022c22);

  background-size:20px 20px,cover;

  color:#fff;
  padding:30px;
}

/* CONTAINER */

.container{
  max-width:1200px;
  margin:auto;
}

/* HERO */

.hero{
  text-align:center;
  margin-bottom:40px;
}

.hero h1{
  font-size:4rem;
  margin-bottom:15px;
  text-shadow:5px 5px 0 #000;
  line-height:1;
}

.hero p{
  max-width:800px;
  margin:auto;
  font-size:1.1rem;
  opacity:0.9;
}

/* VERIFIED BAR */

.verified{
  margin-top:25px;
  display:inline-block;
  background:#22c55e;
  color:#000;
  padding:12px 24px;
  border:4px solid #000;
  border-radius:18px;
  font-weight:700;
  box-shadow:6px 6px 0 #000;
  transform:rotate(-1deg);
}

/* STORY PANEL */

.story{
  background:linear-gradient(135deg,#fde047,#facc15);
  color:#111;
  border:5px solid #000;
  border-radius:30px;
  padding:35px;
  box-shadow:10px 10px 0 #000;
  margin-bottom:50px;
  transform:rotate(-1deg);
}

.story h2{
  margin-bottom:15px;
  font-size:2rem;
}

.story p{
  line-height:1.7;
  margin-bottom:18px;
}

.highlight{
  display:inline-block;
  background:#111827;
  color:#fff;
  padding:14px 18px;
  border-radius:14px;
  border:3px solid #000;
  box-shadow:5px 5px 0 #000;
  font-weight:600;
}

/* GRID */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARD */

.card{
  position:relative;
  text-decoration:none;
  color:#fff;

  background:linear-gradient(145deg,#1e293b,#0f172a);

  border:5px solid #000;
  border-radius:25px;

  padding:30px;

  box-shadow:8px 8px 0 #000;

  transition:0.25s ease;

  overflow:hidden;
}

.card:nth-child(odd){
  transform:rotate(-2deg);
}

.card:nth-child(even){
  transform:rotate(2deg);
}

.card:hover{
  transform:scale(1.06) rotate(0deg);
  box-shadow:14px 14px 0 #000;
}

.icon{
  font-size:3rem;
  margin-bottom:15px;
}

.card h3{
  font-size:1.4rem;
  margin-bottom:10px;
}

.card .official{
  color:#22c55e;
  font-weight:700;
  margin-bottom:12px;
}

.card .url{
  font-size:0.88rem;
  opacity:0.75;
  word-break:break-word;
  line-height:1.5;
}

/* BADGE */

.badge{
  position:absolute;
  top:-10px;
  right:-10px;

  background:#22c55e;
  color:#000;

  padding:7px 14px;

  border:3px solid #000;
  border-radius:12px;

  font-size:0.8rem;
  font-weight:700;

  transform:rotate(10deg);

  box-shadow:4px 4px 0 #000;
}

/* TRUST SECTION */

.trust{
  margin-top:60px;

  background:#111827;

  border:5px solid #000;
  border-radius:30px;

  padding:35px;

  box-shadow:10px 10px 0 #000;
}

.trust h2{
  margin-bottom:20px;
  font-size:2rem;
}

.trust ul{
  padding-left:20px;
}

.trust li{
  margin-bottom:14px;
  line-height:1.6;
}

/* FOOTER */

.footer{
  text-align:center;
  margin-top:50px;
  opacity:0.7;
  font-size:0.95rem;
}

/* MOBILE */

@media(max-width:768px){

.hero h1{
  font-size:2.6rem;
}

.story{
  padding:25px;
}

.card{
  transform:none !important;
}

}

