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

html{
  scroll-behavior:smooth;
}

body{
  background:#fff;
  color:#000;
  font-family:"Comic Sans MS","Trebuchet MS",Impact,Arial,sans-serif;
  overflow-x:hidden;
  cursor:default;
}

a,
button{
  cursor:pointer;
}

.noise{
  position:fixed;
  inset:0;
  background-image:url("https://media.giphy.com/media/oEI9uBYSzLpBK/giphy.gif");
  opacity:.02;
  pointer-events:none;
  z-index:999;
}

.popup{
  position:fixed;
  right:30px;
  bottom:30px;
  width:285px;
  background:#fff;
  color:#000;
  border:5px solid #000;
  box-shadow:10px 10px 0 #ffcc00;
  z-index:1001;
  padding:20px;
  animation:popIn .5s ease forwards;
}

.popup button{
  position:absolute;
  right:8px;
  top:6px;
  background:red;
  color:#fff;
  border:3px solid #000;
  padding:2px 8px;
  font-weight:bold;
}

.popup h3{
  font-family:Impact,"Arial Black",sans-serif;
  font-size:1.7rem;
  margin-bottom:8px;
}

.popup p{
  font-weight:900;
}

@keyframes popIn{
  from{
    transform:scale(0) rotate(-8deg);
  }

  to{
    transform:scale(1) rotate(0);
  }
}

.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(255,255,255,.68), rgba(255,255,255,.9)),
    url("btchplz1.jpg");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  border-bottom:6px solid #000;
}

.navbar{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  padding:22px 6%;
  background:#fff;
  border-bottom:5px solid #000;
}

.nav-logo{
  width:125px;
  height:80px;
  object-fit:contain;
}

.nav-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav-links a{
  color:#000;
  text-decoration:none;
  font-weight:900;
  font-size:1.05rem;
  background:#ffcc00;
  border:4px solid #000;
  padding:9px 15px;
  box-shadow:5px 5px 0 #000;
  transition:.2s;
}

.nav-links a:hover{
  transform:rotate(-2deg) scale(1.05);
}

.nav-socials{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav-socials a{
  background:#000;
  color:#ffcc00;
  text-decoration:none;
  font-weight:900;
  border:4px solid #000;
  padding:8px 13px;
  box-shadow:5px 5px 0 #ffcc00;
  transition:.2s;
  font-size:.95rem;
}

.nav-socials a:hover{
  transform:rotate(-2deg) translateY(-3px);
  background:#ffcc00;
  color:#000;
}

.marquee{
  overflow:hidden;
  white-space:nowrap;
  background:#ffcc00;
  border-top:4px solid #000;
  border-bottom:4px solid #000;
  padding:13px 0;
}

.marquee span{
  display:inline-block;
  animation:scroll 14s linear infinite;
  color:#000;
  font-weight:900;
  letter-spacing:1px;
}

@keyframes scroll{
  from{
    transform:translateX(100%);
  }

  to{
    transform:translateX(-100%);
  }
}

.hero-content{
  min-height:75vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:70px 20px;
}

.hero-logo{
  width:255px;
  max-width:75vw;
  margin-bottom:25px;
  border:5px solid #000;
  background:#fff;
  box-shadow:12px 12px 0 #ffcc00;
  animation:rageFloat 3s ease-in-out infinite;
}

@keyframes rageFloat{
  0%,100%{
    transform:translateY(0) rotate(-2deg);
  }

  50%{
    transform:translateY(-15px) rotate(2deg);
  }
}

.speech-bubble{
  position:relative;
  max-width:560px;
  background:#fff;
  border:5px solid #000;
  padding:20px 25px;
  margin:0 auto 35px;
  box-shadow:8px 8px 0 #ffcc00;
}

.speech-bubble:after{
  content:"";
  position:absolute;
  bottom:-30px;
  left:55px;
  width:0;
  height:0;
  border-top:30px solid #000;
  border-right:30px solid transparent;
}

.speech-bubble p{
  font-size:1.2rem;
  margin-bottom:8px;
}

.speech-bubble strong{
  font-size:1.5rem;
}

h1{
  font-size:8rem;
  font-family:Impact,"Arial Black",sans-serif;
  color:#000;
  text-transform:uppercase;
  line-height:.9;
  text-shadow:
    5px 5px 0 #ffcc00,
    10px 10px 0 #000;
  transform:rotate(-1deg);
}

.hero-copy{
  max-width:820px;
  margin-top:32px;
  font-size:1.35rem;
  line-height:1.5;
  background:#fff;
  color:#000;
  border:5px solid #000;
  padding:20px 26px;
  box-shadow:9px 9px 0 #ffcc00;
  font-weight:900;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-top:35px;
  flex-wrap:wrap;
  justify-content:center;
}

.btn{
  padding:15px 28px;
  border:4px solid #000;
  text-decoration:none;
  font-weight:900;
  font-size:1rem;
  color:#000;
  font-family:"Comic Sans MS",Arial,sans-serif;
  box-shadow:6px 6px 0 #000;
  transition:.2s;
  background:#fff;
}

.yellow{
  background:#ffcc00;
}

.white{
  background:#fff;
}

.btn:hover{
  transform:translateY(-5px) rotate(-2deg);
}

.rage-box{
  margin-top:35px;
  padding:24px;
  border:5px solid #000;
  background:#fff;
  max-width:660px;
  min-height:90px;
  color:#000;
  font-size:1.45rem;
  font-weight:900;
  box-shadow:9px 9px 0 #ffcc00;
}

.banner-section{
  padding:40px 8%;
  background:#ffcc00;
  border-top:5px solid #000;
  border-bottom:5px solid #000;
}

.banner-img{
  width:100%;
  border:5px solid #000;
  box-shadow:12px 12px 0 #fff;
  background:#fff;
}

.section{
  padding:100px 8%;
  text-align:center;
  background:
    linear-gradient(rgba(255,255,255,.86), rgba(255,255,255,.94)),
    url("btchplz1.jpg");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  border-bottom:5px solid #000;
}

.gray{
  background:
    linear-gradient(rgba(244,244,244,.88), rgba(244,244,244,.96)),
    url("btchplz1.jpg");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

.section h2{
  font-size:4rem;
  margin-bottom:30px;
  color:#000;
  font-family:Impact,"Arial Black",sans-serif;
  text-shadow:5px 5px 0 #ffcc00;
  transform:rotate(-1deg);
}

.section p{
  max-width:850px;
  margin:0 auto 22px;
  line-height:1.7;
  color:#000;
  font-size:1.2rem;
}

.comic-panel{
  max-width:950px;
  margin:auto;
  background:#fff;
  border:5px solid #000;
  padding:45px;
  box-shadow:12px 12px 0 #ffcc00;
}

.comic-panel h3{
  font-size:3.4rem;
  color:#000;
  margin-top:30px;
  font-family:Impact,"Arial Black",sans-serif;
  text-shadow:5px 5px 0 #ffcc00;
}

.meme-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin:45px auto;
  max-width:1000px;
}

.meme-card{
  background:#fff;
  padding:16px;
  border:5px solid #000;
  box-shadow:9px 9px 0 #ffcc00;
  transition:.2s;
}

.meme-card:hover{
  transform:rotate(-2deg) scale(1.03);
}

.meme-card img{
  width:100%;
  height:330px;
  object-fit:cover;
  border:4px solid #000;
  background:#fff;
  display:block;
}

.meme-card p{
  margin-top:15px;
  color:#000;
  font-weight:900;
}

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

.card{
  background:#fff;
  border:5px solid #000;
  padding:35px;
  box-shadow:9px 9px 0 #ffcc00;
  transition:.2s;
}

.card:hover{
  transform:rotate(-2deg) translateY(-5px);
}

.card h3{
  color:#000;
  margin-bottom:12px;
  font-size:1.7rem;
  font-family:Impact,"Arial Black",sans-serif;
}

code{
  display:block;
  margin:25px auto;
  color:#000;
  word-break:break-all;
  font-size:1rem;
  background:#f5f5f5;
  padding:18px;
  border:4px solid #000;
  max-width:780px;
}

#copyMessage{
  margin-top:25px;
  color:#000;
  font-weight:900;
  min-height:24px;
}

footer{
  padding:42px 20px;
  text-align:center;
  background:#000;
  color:#ffcc00;
  font-weight:900;
}

.small{
  font-size:.9rem;
  margin-top:8px;
}

@keyframes shake{
  0%{transform:translateX(0);}
  25%{transform:translateX(-4px);}
  50%{transform:translateX(4px);}
  75%{transform:translateX(-4px);}
  100%{transform:translateX(0);}
}

.chaos-mode{
  animation:shake .15s infinite;
  filter:contrast(1.2) saturate(1.3);
}

.chaos-mode .hero,
.chaos-mode .section{
  background-color:#ffcc00;
}

.chaos-mode h1,
.chaos-mode h2{
  transform:rotate(-3deg) scale(1.03);
}

@media(max-width:900px){
  .navbar{
    grid-template-columns:1fr;
    text-align:center;
  }

  .nav-logo{
    margin:auto;
  }

  .nav-links,
  .nav-socials{
    justify-content:center;
  }
}

@media(max-width:768px){
  .hero,
  .section,
  .gray{
    background-attachment:scroll;
  }

  h1{
    font-size:4.5rem;
  }

  .section h2{
    font-size:2.7rem;
  }

  .hero-logo{
    width:190px;
  }

  .meme-card img{
    height:250px;
  }

  .comic-panel{
    padding:28px 18px;
  }

  .btn{
    width:100%;
  }

  .popup{
    width:240px;
    right:15px;
    bottom:15px;
  }
}
