/* ===========================================
   BASE - Variables, reset, et styles globaux
   =========================================== */

:root {
  --accent: #ffcc00;
  --accent-2: #ff3b30;
  --accent-3: #3b82f6;
  --muted: #f6f6f8;
  --text: #111;
  --card-shadow: 0 8px 24px rgba(17,17,17,0.08);
  --comic-dot: radial-gradient(circle at 10% 10%, rgba(0,0,0,0.08) 0.8px, transparent 1px);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* Container */
.container {
  max-width: 1100px;
  /* margin: 3rem auto; */
  padding: 0 1rem;
}

/* Section Title */
.section-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.section-title h2 {
  margin: 0;
  font-size: 1.5rem;
}

.section-title .bang {
  font-family: Bangers, cursive;
  color: var(--accent-2);
  font-size: 1.4rem;
  display: inline-block;
}

/* Logo Card */
.logo-card {
  width: 380px;
  height: 300px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.halftone {
  position: absolute;
  inset: 0;
  background-image: var(--comic-dot);
  background-size: 6px 6px;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.logo-card img {
  width: 100%;
  height: auto;
  filter: drop-shadow(6px 6px 0 rgba(0,0,0,0.12));
}

/* Comic Badge */
.comic-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-2);
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-family: Bangers, sans-serif;
  transform: rotate(6deg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  z-index: 10;
}

/* Small text */
.small {
  font-size: 0.9rem;
  color: #555;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe Animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes logoAppear {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes badgePop {
  0% {
    transform: rotate(6deg) scale(0);
  }
  50% {
    transform: rotate(6deg) scale(1.15);
  }
  100% {
    transform: rotate(6deg) scale(1);
  }
}

@keyframes bangShake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg) scale(1.1);
  }
  75% {
    transform: rotate(5deg) scale(1.1);
  }
}

/* Accordion (conservé pour compatibilité) */
.accordion-item {
  border-top: 1px solid rgba(0,0,0,0.04);
  padding: 0.6rem 0;
}

.accordion-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body.open {
  max-height: 600px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Mobile Adjustments */
@media (max-width: 900px) {
  .container {
    padding: 0 0.5rem;
  }
}
