* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, sans-serif;
  color: white;
  background:
    radial-gradient(circle at top, #111 0%, #050505 60%),
    linear-gradient(180deg, #050505, #0b0b0b, #111111);
  overflow-x: hidden;
}

section {
  padding: 140px 20px;
  text-align: center;
  position: relative;
  z-index: 5;
}

h1 { font-size: 90px; letter-spacing: 6px; }
h2 { font-size: 48px; margin-bottom: 30px; }
p { font-size: 18px; opacity: 0.9; }

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(10px);
  z-index: 200;
}

.logo { height: 50px; }
.logo-text { font-size: 28px; margin-left: 10px; }

.header-left {
  display: flex;
  align-items: center;
}

.header-nav a {
  margin-left: 25px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.buy-btn {
  padding: 10px 20px;
  background: #ff0055;
  border-radius: 10px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 160px;
}

.hero-meme-top img {
  width: 260px;
  animation: float 3s ease-in-out infinite;
  margin-bottom: 40px;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

.address-box {
  margin: 25px auto;
  padding: 15px 25px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.copy-btn {
  padding: 10px 20px;
  background: #ff0055;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

.pump-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: transparent;
  border: 2px solid #ff0055;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.pump-btn:hover {
  background: #ff0055;
  box-shadow: 0 0 25px rgba(255,0,85,0.6);
}

/* COPY NOTICE */
.copy-notice {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: #00cc44;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: 0.4s;
  z-index: 300;
}

.copy-notice.show {
  opacity: 1;
}

.copy-notice .checkmark {
  font-size: 22px;
}

.copy-notice .close-btn {
  margin-left: 10px;
  cursor: pointer;
  font-size: 20px;
}

/* FALLING PEPE */
.pepe {
  position: fixed;
  top: -120px;
  width: 80px;
  pointer-events: none;
  animation: fall linear forwards;
  z-index: 1;
  opacity: 0.9;
}

@keyframes fall {
  to { transform: translateY(120vh) rotate(360deg); }
}

/* TICKERS */
.ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.ticker.top {
  position: fixed;
  top: 90px;
  width: 100%;
  z-index: 100;
}

.ticker.bottom {
  position: relative;
  margin-bottom: 40px;
}

.ticker-track {
  display: flex;
  width: 200%;
  animation: tickerMove 25s linear infinite;
  will-change: transform;
}

.ticker-track.reverse {
  animation-direction: reverse;
}

.ticker-content {
  display: flex;
  width: 50%;
  justify-content: space-around;
}

.ticker-content img {
  height: 50px;
  pointer-events: none;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HALL OF MEMES */
.hall-of-memes {
  padding-top: 200px;
  background:
    linear-gradient(rgba(5,5,5,0.85), rgba(5,5,5,0.95)),
    url("театр.jpg");
  background-size: cover;
  background-attachment: fixed;
}

.hall-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 8vw, 120px);
  color: #d4af37;
  margin-bottom: 70px;
}

.slider-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.memes-viewport {
  overflow: hidden;
  width: 100%;
}

.memes-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

.meme-card {
  min-width: calc((100% - 40px) / 3);
  background: linear-gradient(180deg, rgba(120,0,20,0.9), rgba(60,0,10,0.95));
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: 0.35s ease;
}

.meme-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 90px rgba(0,0,0,0.8),
              0 0 40px rgba(212,175,55,0.4);
}

.meme-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 20px;
}

.arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: gold;
  background: #300;
}

.video-frame,
.chart-frame {
  border: 3px solid #ff0033;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 40px rgba(255,0,50,0.6);
}

.chart-frame iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.site-footer {
  padding: 120px 20px;
  text-align: center;
}

.footer-logo { width: 120px; margin: 20px 0; }

.footer-icons img {
  width: 40px;
  margin: 0 10px;
}

.footer-copy {
  margin-top: 20px;
  opacity: 0.6;
}

/* BIG TITLES */
.section-title,
.tokenomics h2,
.video-section h2,
.take-hit h2,
.chart-section h2,
.wall h2 {
  font-size: 70px;
  margin-bottom: 50px;
}

.about-section {
  padding: 120px 0;
  text-align: center;
}

.section-title {
  font-size: 60px;
  font-weight: 800;
  color: #ff0033;
  margin-bottom: 60px;
  text-align: center;
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 0 40px;
}

/* Картинка с неоновой рамкой + пульсация */
.about-image img {
  width: 350px;
  border: 3px solid #ff0033;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255,0,50,0.7);
  animation: pulse 2.2s ease-in-out infinite;
}

/* Пульсация */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* Текстовый блок */
.about-text {
  max-width: 520px;
  background: #222;
  padding: 35px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
  color: white;
  font-size: 22px; /* ← ТЕКСТ СДЕЛАН БОЛЬШЕ */
  line-height: 1.7;
}

/* Неоновая рамка + анимация как в токеномикс */
.about-text:hover {
  border-color: #ff0033;
  box-shadow: 0 0 20px rgba(255,0,50,0.6);
  transform: translateY(-5px);
}

/* FOLLOW BUTTON */
.faced-follow-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 28px;
  background: #ff0033;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
}

.faced-follow-btn:hover {
  background: #ff3355;
  box-shadow: 0 0 20px rgba(255,0,50,0.5);
}

/* ===== REVEAL ON SCROLL ===== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ===== TOKENOMICS FACED STYLE ===== */

.tokenomics {
  padding-top: 160px;
}

.tokenomics-sub {
  font-size: 20px;
  opacity: 0.7;
  margin-top: -20px;
  margin-bottom: 60px;
}

/* GRID */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  max-width: 1300px;
  margin: 0 auto;
}

/* BOXES */
.token-box {
  background: #1a1a1a; /* серый фон как на petah.fun */
  padding: 40px 20px;
  border-radius: 18px;
  border: 2px solid transparent;
  transition: 0.35s ease;
  text-align: center;
  cursor: pointer;
}

.token-box:hover {
  border-color: #ff0033;
  box-shadow: 0 0 25px rgba(255,0,50,0.6);
  transform: translateY(-8px);
}

/* ICON WRAPPER (квадратик вокруг иконки) */
.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
  border-radius: 16px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.token-box:hover .icon-wrapper {
  box-shadow: 0 0 20px rgba(255,0,50,0.6);
  border: 2px solid #ff0033;
}

/* ICONS */
.token-icon {
  font-size: 38px;
  font-weight: bold;
  color: #ff0033;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON 1 — DOLLAR */
.icon-dollar {
  font-size: 42px;
}

/* ICON 2 — SUPPLY */
.icon-supply {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,\
  <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="%23ff0033" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="9"/></svg>');
}

/* ICON 3 — DEVELOPER (LETTER D) */
.icon-dev {
  font-size: 40px;
}

/* ICON 4 — SECURITY */
.icon-security {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,\
  <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="%23ff0033" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>');
}

/* TEXT INSIDE BOXES */
.token-mid {
  font-size: 18px;
  color: #999; /* серый текст по центру */
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.token-bottom {
  font-size: 28px;
  font-weight: bold;
  color: white;
}
/* ===== TAKE THE HIT SECTION ===== */

.take-hit {
  padding-top: 160px;
}

.take-hit h2 {
  font-size: 70px;
  margin-bottom: 60px;
  text-align: center;
}

/* GRID 2×2 */
.hit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.hit-card {
  background: #1a1a1a;
  padding: 45px 40px;
  border-radius: 20px;
  border: 2px solid #ff0033;
  box-shadow: 0 0 22px rgba(255,0,50,0.6);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ICON BOX */
.hit-icon-box {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 2px solid #ff0033;
  box-shadow: 0 0 18px rgba(255,0,50,0.8);
}

/* ICONS */
.hit-icon {
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 10px #ff0033);
}

/* ICON 1 — GHOST (красный, мультяшный) */
.icon-ghost {
  background-image: url("data:image/svg+xml;utf8,<svg width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23ff0033' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'><path d='M4 14v-4a8 8 0 0 1 16 0v4c0 2-1 4-3 4s-2-2-3-2-1 2-3 2-2-2-3-2-1 2-3 2-3-2-3-4z'/><circle cx='9' cy='10' r='1.8'/><circle cx='15' cy='10' r='1.8'/></svg>");
}

/* ICON 2 — CARTOON ROCKET (BIG & CLEAR) */
.icon-dollar {
  background-image: url("data:image/svg+xml;utf8,<svg width='90' height='90' viewBox='0 0 24 24' fill='none' stroke='%23ff0033' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'><path d='M12 2c2 1 4 4 4 7v4c0 3-2 6-4 9c-2-3-4-6-4-9V9c0-3 2-6 4-7z'/><circle cx='12' cy='10' r='3'/><path d='M8 13l-3 3'/><path d='M16 13l3 3'/></svg>");
}
/* ICON 3 — SEARCH */
.icon-search {
  background-image: url("data:image/svg+xml;utf8,<svg width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23ff0033' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'><circle cx='11' cy='11' r='7'/><path d='M20 20l-4-4'/></svg>");
}

/* ICON 4 — SWAP */
.icon-swap {
  background-image: url("data:image/svg+xml;utf8,<svg width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23ff0033' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'><path d='M4 7h11l-3-3m3 3l-3 3'/><path d='M20 17H9l3 3m-3-3l3-3'/></svg>");
}

/* TEXT */
.hit-title {
  font-size: 26px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.hit-desc {
  font-size: 20px;
  color: #ccc;
  line-height: 1.5;
}
.draw-section {
  padding: 120px 0;
  text-align: center;
}

.draw-controls {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

#drawCanvas {
  width: 800px;
  height: 500px;
  background: #111;
  border: 2px solid #ff0033;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255,0,50,0.6);
  cursor: crosshair;
}
html {
  scroll-behavior: smooth;
}
.wall-section {
  padding: 120px 0;
  text-align: center;
}

.wall-columns {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 40px;
}

.wall-card {
  width: 320px;
  background: #222;
  padding: 30px;
  border-radius: 20px;
  border: 3px solid #ff0033;
  box-shadow: 0 0 25px rgba(255,0,50,0.7);
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
  position: relative;
}

/* Hover animation */
.wall-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(255,0,50,0.9);
}

/* ICON BLOCK */
.wall-icon {
  width: 70px;
  height: 70px;
  border: 3px solid #ff0033;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255,0,50,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  background: #111;
}

/* # icon */
.wall-icon span {
  font-size: 40px;
  font-weight: 900;
  color: #ff0033;
}

/* image icons */
.wall-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.take-hit h2 {
  color: #ff0033;
  text-shadow: 0 0 15px rgba(255,0,50,0.8);
}
.section-title,
.take-hit h2,
.draw-section h2,
.wall-section h2,
.tokenomics-section h2,
.chart-section h2,
.about-section h2 {
  color: #ff0033;
  text-shadow: 0 0 15px rgba(255,0,50,0.8);
}
.tokenomics h2 {
  color: #ff0033;
  text-shadow: 0 0 15px rgba(255,0,50,0.8);
}
.follow-x {
  text-align: center;
  margin-top: 40px;
}

.follow-btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 22px;
  font-weight: 700;
  color: #ff0033;
  border: 3px solid #ff0033;
  border-radius: 30px;
  text-decoration: none;
  background: #111;
  box-shadow: 0 0 20px rgba(255,0,50,0.7);
  transition: all 0.3s ease;
}

.follow-btn:hover {
  background: #ff0033;
  color: #fff;
  box-shadow: 0 0 30px rgba(255,0,50,0.9);
  transform: translateY(-5px);
}
.logo-text {
  color: #ff0033;
  text-shadow: 0 0 12px rgba(255,0,50,0.8);
}
.hero-section h1 {
  color: #ff0033;
  text-shadow: 0 0 20px rgba(255,0,50,0.9);
}
.hero-section h1,
.hero h1,
.hero-title,
.hero-section .title,
.hero-section .main-title {
  color: #ff0033 !important;
  text-shadow: 0 0 20px rgba(255,0,50,0.9) !important;
}
/* FOOTER ICONS WRAPPER */
.footer-icons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin: 25px 0;
}

/* UNIVERSAL ICON BLOCK */
.footer-icon {
  width: 70px;
  height: 70px;
  background: #111;
  border: 3px solid #ff0033;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255,0,50,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

/* HOVER ANIMATION */
.footer-icon:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 0 30px rgba(255,0,50,1);
}

/* 3D X ICON */
.icon-x {
  font-size: 40px;
  font-weight: 900;
  color: #ff0033;
  text-shadow:
    0 0 10px rgba(255,0,50,0.9),
    0 0 20px rgba(255,0,50,0.7),
    0 0 30px rgba(255,0,50,0.5);
}

/* CART ICON (PURE CSS) */
.icon-cart {
  position: relative;
  width: 45px;
  height: 40px;
}

/* Handle */
.cart-handle {
  position: absolute;
  width: 30px;
  height: 4px;
  background: #ff0033;
  top: 0;
  left: 5px;
  transform: rotate(-15deg);
  box-shadow: 0 0 10px rgba(255,0,50,0.8);
}

/* Basket */
.cart-body {
  position: absolute;
  width: 40px;
  height: 20px;
  border: 3px solid #ff0033;
  border-radius: 5px;
  bottom: 10px;
  left: 2px;
  box-shadow: 0 0 10px rgba(255,0,50,0.8);
}

/* Wheels */
.cart-wheel {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff0033;
  border-radius: 50%;
  bottom: 0;
  box-shadow: 0 0 10px rgba(255,0,50,0.8);
}

.cart-wheel.left { left: 5px; }
.cart-wheel.right { right: 5px; }

/* DISCLAIMER */
.footer-disclaimer {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-top: 10px;
}
.faced-quote {
  text-align: center;
  margin: 60px 0;
}

.faced-quote p {
  font-size: 32px;
  font-weight: 700;
  color: #ff0033;
  text-shadow: 0 0 15px rgba(255,0,50,0.8);
  line-height: 1.4;
}
/* ============================
   GLOBAL MOBILE OPTIMIZATION
   ============================ */

@media (max-width: 1024px) {
  h1, h2 {
    text-align: center;
  }
}

/* TABLETS & PHONES */
@media (max-width: 768px) {

  /* HERO */
  .hero-section {
    padding: 80px 20px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 48px;
    line-height: 1.1;
  }

  .hero-section p {
    font-size: 18px;
  }

  /* MENU */
  nav ul {
    gap: 15px;
  }

  nav ul li a {
    font-size: 16px;
  }

  /* ABOUT */
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .about-left img {
    width: 80%;
    margin: 0 auto 20px;
  }

  .about-right {
    width: 100%;
  }

  /* FOLLOW TO X BUTTON */
  .follow-btn {
    font-size: 18px;
    padding: 12px 30px;
  }

  /* WALL OF FACED */
  .wall-columns {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .wall-card {
    width: 90%;
  }

  /* RED QUOTE */
  .faced-quote p {
    font-size: 22px;
  }

  /* TOKENOMICS */
  .tokenomics {
    padding: 40px 20px;
  }

  .tokenomics h2 {
    font-size: 40px;
  }

  .tokenomics-grid {
    flex-direction: column;
    gap: 20px;
  }

  /* TAKE THE HIT */
  .hit-grid {
    flex-direction: column;
    gap: 20px;
  }

  /* CHART */
  .chart-section {
    padding: 40px 20px;
  }

  canvas {
    width: 100% !important;
    height: auto !important;
  }

  /* DRAW YOUR FACE */
  .draw-controls {
    flex-direction: column;
    gap: 15px;
  }

  #drawCanvas {
    width: 100%;
    height: 300px;
  }

  /* MEMES & COLLABS */
  .memes-grid,
  .collab-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .meme-card,
  .collab-card {
    width: 90%;
  }

  .memes-section h2,
  .collab-section h2 {
    font-size: 40px;
  }

  /* FOOTER */
  .footer-icons {
    gap: 15px;
  }

  .footer-icon {
    width: 60px;
    height: 60px;
  }

  .footer-disclaimer {
    font-size: 12px;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {

  .hero-section h1 {
    font-size: 38px;
  }

  .wall-card {
    padding: 20px;
  }

  .faced-quote p {
    font-size: 18px;
  }

  .tokenomics h2,
  .memes-section h2,
  .collab-section h2 {
    font-size: 32px;
  }

  .footer-icon {
    width: 50px;
    height: 50px;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.footer-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px; /* щоб було повітря над іконками */
  max-width: 120px; /* щоб не була величезною на мобілках */
}














