/* Marvel-comic inspired theme for 42 BUREAU homepage
   - bold red headings with white stroke
   - halftone background overlay
   - comic speech bubbles and hero cards
   Note: keep styles minimal and additive to existing DaisyUI/Tailwind usage
*/
:root{
  --marvel-red:#e62b2b;
  --marvel-yellow:#ffd24d;
  --marvel-dark:#0b0b0b;
  --marvel-white:#ffffff;
}

/* Halftone background */
.marvel-halftone{
  background-color: var(--marvel-yellow);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(11,11,11,0.06) 0px, rgba(11,11,11,0.06) 2px, transparent 3px),
    radial-gradient(circle at 60% 40%, rgba(11,11,11,0.04) 0px, rgba(11,11,11,0.04) 2px, transparent 3px);
  background-size: 6px 6px, 10px 10px;
}

.marvel-hero-title{
  color: var(--marvel-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow:
    -2px -2px 0 var(--marvel-white),
    2px 2px 0 rgba(0,0,0,0.25);
  -webkit-text-stroke: 2px var(--marvel-white);
}

.marvel-subtitle{
  color: var(--marvel-dark);
  font-weight:700;
}

.marvel-speech{
  position:relative;
  display:inline-block;
  background:var(--marvel-white);
  color:var(--marvel-dark);
  padding:0.6rem 1rem;
  border-radius:12px;
  border:4px solid var(--marvel-red);
  font-weight:700;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.12);
}
.marvel-speech::after{
  content:'';
  position:absolute;
  left:10px;
  bottom:-18px;
  width:0;height:0;border-left:14px solid transparent;border-right:14px solid transparent;border-top:18px solid var(--marvel-white);
  transform:rotate(-12deg);
}

.hero-card{
  background: linear-gradient(180deg, #fff 0%, #fffaf2 100%);
  border:6px solid var(--marvel-dark);
  padding:1rem;
  border-radius:6px;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.12);
}

.hero-card .role{
  color:var(--marvel-red);
  font-weight:800;
}

.hero-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
}

/* Accent badge like comic logo */
.marvel-badge{
  display:inline-block;
  background:var(--marvel-red);
  color:var(--marvel-white);
  padding:0.25rem 0.6rem;
  font-weight:900;
  border-radius:4px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.12);
}

.marvel-panel{
  position:relative;
  background:var(--marvel-white);
  border:6px solid var(--marvel-dark);
  border-radius:10px;
  padding:1.75rem;
  box-shadow:10px 10px 0 rgba(0,0,0,0.18);
  overflow:hidden;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.marvel-panel::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top left, rgba(230,43,43,0.09), transparent 65%);
  pointer-events:none;
}

.marvel-panel:hover{
  transform:translateY(-6px) rotate(-1deg);
  box-shadow:14px 16px 0 rgba(0,0,0,0.2);
}

.marvel-panel-list{
  margin:1.25rem 0 0;
  padding:0;
  list-style:none;
}

.marvel-panel-list li{
  display:flex;
  gap:0.5rem;
  position:relative;
  padding-left:1.4rem;
  margin-top:0.65rem;
}

.marvel-panel-list li::before{
  content:'★';
  position:absolute;
  left:0;
  top:0.1rem;
  color:var(--marvel-red);
  font-weight:900;
}

.marvel-sound{
  display:inline-flex;
  align-items:center;
  gap:0.35rem;
  background:var(--marvel-red);
  color:var(--marvel-white);
  padding:0.3rem 0.75rem;
  border:4px solid var(--marvel-dark);
  box-shadow:5px 5px 0 rgba(0,0,0,0.2);
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:0.08em;
  animation:marvel-pop 2.8s ease-in-out infinite;
}

.marvel-orbit{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.65rem;
  border-radius:9999px;
  background:linear-gradient(135deg, var(--marvel-yellow), #ffe7a0);
  box-shadow:6px 6px 0 rgba(0,0,0,0.18);
  animation:marvel-spin 10s linear infinite;
}

.marvel-orbit::before{
  content:'';
  position:absolute;
  inset:0.35rem;
  border-radius:inherit;
  border:3px dashed rgba(0,0,0,0.18);
  animation:marvel-spin 7s linear infinite reverse;
}

.marvel-icon{
  display:inline-block;
  background:var(--marvel-dark);
  color:var(--marvel-white);
  padding:0.6rem 1.1rem;
  border-radius:9999px;
  border:4px solid var(--marvel-white);
  box-shadow:0 0 0 4px var(--marvel-dark);
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  animation:marvel-pop 3.4s ease-in-out infinite;
}

.marvel-integration{
  background:linear-gradient(135deg, rgba(255,210,77,0.18), rgba(230,43,43,0.1));
  border:6px solid var(--marvel-dark);
  border-radius:16px;
  padding:2.5rem;
  box-shadow:14px 14px 0 rgba(0,0,0,0.18);
}

.marvel-integration-card{
  background:var(--marvel-white);
  border:5px solid var(--marvel-dark);
  border-radius:10px;
  padding:1.5rem;
  box-shadow:8px 8px 0 rgba(0,0,0,0.16);
}

@keyframes marvel-pop{
  0%,100%{transform:scale(1);}
  50%{transform:scale(1.06);}
}

@keyframes marvel-spin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

/* small responsiveness tweaks */
@media (min-width:768px){
  .marvel-hero-title{font-size:3.75rem}
}
