* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #f0f4ff;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Ticker */
.ticker {
  background: #ff4444;
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '☁️☁️☁️☁️☁️☁️☁️☁️';
  position: absolute;
  top: 10px;
  font-size: 2rem;
  opacity: 0.15;
  letter-spacing: 20px;
  animation: clouds 12s linear infinite;
}

@keyframes clouds {
  0% { transform: translateX(-20px); }
  100% { transform: translateX(20px); }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 12px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero .subtitle {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 16px;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #69ff47;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(105, 255, 71, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(105, 255, 71, 0); }
}

/* Mascot */
.mascot-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.mascot {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 5px solid white;
  object-fit: cover;
  object-position: center top;
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 0 rgba(255,255,255,0.4);
  user-select: none;
}

.mascot:hover {
  filter: brightness(1.1);
}

.mascot-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffdd57;
  color: #1a1a2e;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.3); }
  100% { transform: rotate(360deg) scale(1); }
}

.btn {
  display: inline-block;
  background: white;
  color: #764ba2;
  padding: 12px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Bruh Banner */
.bruh-banner {
  background: #fff8e1;
  border-top: 4px dashed #ffcc02;
  border-bottom: 4px dashed #ffcc02;
  padding: 32px 0;
}

.bruh-banner .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bruh-face {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #ffcc02;
  flex-shrink: 0;
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

.bruh-text h2 {
  color: #e65100;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.bruh-text p {
  color: #555;
  line-height: 1.7;
}

/* Features */
.features {
  padding: 80px 0;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #764ba2;
}

.section-sub {
  color: #999;
  font-style: italic;
  margin-bottom: 48px;
  font-size: 0.95rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  border-bottom: 4px solid #e0e0e0;
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.card-highlight {
  border-bottom-color: #764ba2;
  background: linear-gradient(135deg, #fff 60%, #f3e8ff);
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.card-meme {
  margin-top: 12px !important;
  font-size: 0.8rem !important;
  color: #bbb !important;
  font-style: italic;
  border-top: 1px dashed #eee;
  padding-top: 10px;
}

/* Steps */
.steps {
  background: white;
  padding: 80px 0;
}

.steps-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.steps-face {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #764ba2;
  flex-shrink: 0;
  animation: nod 1.5s ease-in-out infinite;
}

@keyframes nod {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(6deg); }
  75% { transform: rotate(-6deg); }
}

.steps h2 {
  font-size: 1.8rem;
  color: #764ba2;
}

.steps-subtitle {
  font-size: 0.9rem;
  color: #aaa;
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.steps ol {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps li {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.steps code {
  display: inline-block;
  background: #f1f0ff;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Courier New', monospace;
  color: #764ba2;
  font-weight: 600;
  margin-bottom: 4px;
  border-left: 4px solid #764ba2;
}

.step-comment {
  display: block;
  font-size: 0.82rem;
  color: #aaa;
  font-style: italic;
  margin-top: 4px;
  padding-left: 4px;
}

.steps-note {
  margin-top: 36px;
  background: #fff8e1;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid #ffcc02;
}

.note-face {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid #ffcc02;
  flex-shrink: 0;
}

.steps-note p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: #f0f4ff;
}

.faq h2 {
  font-size: 2rem;
  color: #764ba2;
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 3px solid #764ba2;
}

.faq-q {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.faq-a {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.9rem;
}

.footer-face {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255,255,255,0.2);
  margin-bottom: 12px;
  animation: peek 4s ease-in-out infinite;
}

@keyframes peek {
  0%, 75%, 100% { transform: translateY(0); }
  85% { transform: translateY(-8px); }
}

footer p {
  margin-bottom: 4px;
}

.footer-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-tiny {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}
