  :root {
      --fire1: #ff4500;
      --fire2: #ff7300;
      --fire3: #ffb347;
      --fire4: #ffe066;
      --dark: #0d0d0d;
      --card: #1a1a1a;
      --card2: #232323;
      --text: #fff;
      --sub: #ccc;
  }

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

  html {
      scroll-behavior: smooth;
  }

  body {
      background: var(--dark);
      color: var(--text);
      font-family: 'Nunito', sans-serif;
      overflow-x: hidden;
  }

  /* --- BUBBLY TEXT --- */
  .bubble {
      font-family: 'Fredoka One', cursive;
      background: linear-gradient(135deg, var(--fire1), var(--fire3), var(--fire4));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: none;
      display: inline-block;
  }

  /* --- NAV --- */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 48px;
      background: rgba(13, 13, 13, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 115, 0, 0.15);
  }

  .nav-logo {
      font-family: 'Fredoka One', cursive;
      font-size: 1.7rem;
      background: linear-gradient(90deg, var(--fire1), var(--fire3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  nav ul {
      list-style: none;
      display: flex;
      gap: 32px;
  }

  nav a {
      color: #ccc;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      transition: color 0.2s;
      letter-spacing: 0.5px;
  }

  nav a:hover {
      color: var(--fire3);
  }

  /* --- HERO --- */
  #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      position: relative;
      overflow: hidden;
  }

  #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(255, 69, 0, 0.18) 0%, transparent 70%),
          radial-gradient(ellipse 50% 40% at 70% 30%, rgba(255, 179, 71, 0.1) 0%, transparent 60%);
      pointer-events: none;
  }

  /* Floating embers */
  .embers {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
  }

  .ember {
      position: absolute;
      border-radius: 50%;
      animation: floatUp linear infinite;
      opacity: 0;
  }

  @keyframes floatUp {
      0% {
          transform: translateY(100vh) scale(0.5);
          opacity: 0;
      }

      10% {
          opacity: 0.8;
      }

      90% {
          opacity: 0.5;
      }

      100% {
          transform: translateY(-10vh) scale(1.2);
          opacity: 0;
      }
  }

  .hero-tag {
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--fire3);
      margin-bottom: 16px;
  }

  .hero-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(3.5rem, 10vw, 7rem);
      line-height: 1.05;
      background: linear-gradient(135deg, #ff4500, #ff7300, #ffe066);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 40px rgba(255, 115, 0, 0.4));
      margin-bottom: 8px;
  }

  .hero-subtitle {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      color: #fff;
      margin-bottom: 32px;
      opacity: 0.9;
  }

  .ip-box {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 115, 0, 0.1);
      border: 2px solid rgba(255, 115, 0, 0.4);
      border-radius: 999px;
      padding: 14px 28px;
      margin-bottom: 40px;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
  }

  .ip-box:hover {
      background: rgba(255, 115, 0, 0.2);
      border-color: var(--fire2);
      transform: scale(1.04);
  }

  .ip-label {
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--fire3);
  }

  .ip-text {
      font-family: 'Fredoka One', cursive;
      font-size: 1.3rem;
      color: #fff;
  }

  .copy-icon {
      font-size: 1.1rem;
      opacity: 0.6;
      transition: opacity 0.2s;
  }

  .ip-box:hover .copy-icon {
      opacity: 1;
  }

  .copied-msg {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.78rem;
      color: var(--fire3);
      font-weight: 700;
      opacity: 0;
      transition: opacity 0.3s;
      white-space: nowrap;
  }

  .copied-msg.show {
      opacity: 1;
  }

  .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
  }

  .btn {
      font-family: 'Fredoka One', cursive;
      font-size: 1.1rem;
      padding: 14px 36px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s;
      display: inline-block;
  }

  .btn-primary {
      background: linear-gradient(135deg, var(--fire1), var(--fire2));
      color: #fff;
      box-shadow: 0 4px 24px rgba(255, 69, 0, 0.35);
  }

  .btn-primary:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 8px 32px rgba(255, 69, 0, 0.5);
  }

  .btn-outline {
      background: transparent;
      color: var(--fire3);
      border: 2px solid var(--fire3);
  }

  .btn-outline:hover {
      background: rgba(255, 179, 71, 0.12);
      transform: translateY(-3px);
  }

  .btn-discord {
      background: rgba(88, 101, 242, 0.15);
      color: #7289da;
      border: 2px solid rgba(88, 101, 242, 0.4);
  }

  .btn-discord:hover {
      background: rgba(88, 101, 242, 0.28);
      transform: translateY(-3px);
  }

  /* --- SECTIONS --- */
  section {
      padding: 90px 24px;
  }

  .section-inner {
      max-width: 1100px;
      margin: 0 auto;
  }

  .section-label {
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--fire2);
      margin-bottom: 10px;
  }

  .section-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 16px;
      background: linear-gradient(135deg, #fff, var(--fire3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .section-desc {
      color: var(--sub);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 600px;
  }

  /* divider */
  .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 115, 0, 0.3), transparent);
      margin: 0;
  }

  /* --- ABOUT --- */
  #about {
      background: var(--dark);
  }

  .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 48px;
  }

  .about-card {
      background: var(--card);
      border: 1px solid rgba(255, 115, 0, 0.12);
      border-radius: 20px;
      padding: 32px 28px;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
  }

  .about-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--fire1), var(--fire3));
      opacity: 0;
      transition: opacity 0.3s;
  }

  .about-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 115, 0, 0.3);
  }

  .about-card:hover::before {
      opacity: 1;
  }

  .card-icon {
      font-size: 2.2rem;
      margin-bottom: 14px;
  }

  .card-title {
      font-family: 'Fredoka One', cursive;
      font-size: 1.3rem;
      color: var(--fire3);
      margin-bottom: 8px;
  }

  .card-text {
      color: var(--sub);
      font-size: 0.95rem;
      line-height: 1.6;
  }

  /* --- VOTE --- */
  #vote {
      background: linear-gradient(180deg, var(--dark) 0%, #150800 50%, var(--dark) 100%);
  }

  .vote-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 48px;
  }

  .vote-card {
      background: var(--card2);
      border: 1px solid rgba(255, 115, 0, 0.12);
      border-radius: 20px;
      padding: 28px 22px;
      text-align: center;
      transition: all 0.3s;
      text-decoration: none;
      color: inherit;
      display: block;
  }

  .vote-card:hover {
      background: rgba(255, 115, 0, 0.1);
      border-color: var(--fire2);
      transform: translateY(-5px) scale(1.02);
  }

  .vote-num {
      font-family: 'Fredoka One', cursive;
      font-size: 2.5rem;
      background: linear-gradient(135deg, var(--fire1), var(--fire3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 6px;
  }

  .vote-site {
      font-family: 'Fredoka One', cursive;
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 6px;
  }

  .vote-reward {
      font-size: 0.85rem;
      color: var(--sub);
  }

  .vote-cta {
      display: inline-block;
      margin-top: 8px;
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--fire3);
  }

  .vote-intro {
      margin-top: 48px;
      margin-bottom: 0;
  }

  .vote-info {
      background: rgba(255, 115, 0, 0.07);
      border: 1px solid rgba(255, 115, 0, 0.2);
      border-radius: 16px;
      padding: 24px 28px;
      margin-top: 32px;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
  }

  .vote-info-icon {
      font-size: 2rem;
  }

  .vote-info-text {
      color: var(--sub);
      font-size: 0.95rem;
      line-height: 1.6;
  }

  .vote-info-text strong {
      color: var(--fire3);
  }

  /* --- STAFF --- */
  #staff {
      background: var(--dark);
  }

  .staff-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 48px;
  }

  .staff-card {
      background: var(--card);
      border: 1px solid rgba(255, 115, 0, 0.1);
      border-radius: 20px;
      padding: 28px 20px;
      text-align: center;
      transition: all 0.35s;
  }

  .staff-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 115, 0, 0.3);
  }

  .staff-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      margin: 0 auto 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(255, 179, 71, 0.2));
      border: 2px solid rgba(255, 115, 0, 0.25);
  }

  .staff-name {
      font-family: 'Fredoka One', cursive;
      font-size: 1.15rem;
      color: #fff;
      margin-bottom: 4px;
  }

  .staff-role {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 8px;
  }

  .role-owner {
      background: rgba(255, 69, 0, 0.2);
      color: var(--fire1);
      border: 1px solid rgba(255, 69, 0, 0.3);
  }

  .role-admin {
      background: rgba(255, 115, 0, 0.2);
      color: var(--fire2);
      border: 1px solid rgba(255, 115, 0, 0.3);
  }

  .role-mod {
      background: rgba(255, 179, 71, 0.15);
      color: var(--fire3);
      border: 1px solid rgba(255, 179, 71, 0.25);
  }

  .role-helper {
      background: rgba(255, 224, 102, 0.1);
      color: var(--fire4);
      border: 1px solid rgba(255, 224, 102, 0.2);
  }

  .staff-bio {
      color: var(--sub);
      font-size: 0.85rem;
      line-height: 1.5;
  }

  /* --- FOOTER --- */
  footer {
      background: #0a0a0a;
      border-top: 1px solid rgba(255, 115, 0, 0.15);
      padding: 48px 24px 32px;
      text-align: center;
  }

  .footer-inner {
      max-width: 900px;
      margin: 0 auto;
  }

  .footer-logo {
      font-family: 'Fredoka One', cursive;
      font-size: 2rem;
      background: linear-gradient(135deg, var(--fire1), var(--fire3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
  }

  .footer-ip {
      font-family: 'Fredoka One', cursive;
      color: var(--sub);
      font-size: 1rem;
      margin-bottom: 28px;
  }

  .footer-socials {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 32px;
  }

  .social-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 800;
      font-size: 0.95rem;
      transition: all 0.3s;
      border: 2px solid transparent;
  }

  .social-discord {
      background: rgba(88, 101, 242, 0.15);
      color: #7289da;
      border-color: rgba(88, 101, 242, 0.3);
  }

  .social-discord:hover {
      background: rgba(88, 101, 242, 0.28);
      transform: translateY(-3px);
  }

  .social-instagram {
      background: rgba(225, 48, 108, 0.12);
      color: #e1306c;
      border-color: rgba(225, 48, 108, 0.25);
  }

  .social-instagram:hover {
      background: rgba(225, 48, 108, 0.25);
      transform: translateY(-3px);
  }

  .social-icon {
      font-size: 1.3rem;
  }

  .footer-links {
      display: flex;
      justify-content: center;
      gap: 28px;
      margin-bottom: 24px;
      flex-wrap: wrap;
  }

  .footer-links a {
      color: var(--sub);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      transition: color 0.2s;
  }

  .footer-links a:hover {
      color: var(--fire3);
  }

  .footer-copy {
      color: #555;
      font-size: 0.82rem;
  }

  .footer-copy span {
      color: var(--fire2);
  }

  /* scroll reveal */
  .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
      opacity: 1;
      transform: translateY(0);
  }

  @media (max-width: 600px) {
      nav {
          padding: 14px 20px;
      }

      nav ul {
          gap: 16px;
      }

      section {
          padding: 64px 16px;
      }

      .footer-socials {
          flex-direction: column;
          align-items: center;
      }
  }