body {
  background: #000;
  color: #fff;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  text-align: center;
}
#entry-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}


#entry-popup:target {
  display: none;
}


#entry-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}


#main:target ~ #entry-popup {
  display: none;
}


.popup-content {
  background: #111;
  border: 3px solid #3bd373; 
  padding: 30px;
  text-align: center;
  border-radius: 8px;
}

.enter-link {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 25px;
  background: #3bd373;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
}
.enter-link:hover {
  background: #fff;
  color: #3bd373;
}


.banner {
  background: red;
  color: yellow;
  font-size: 28px;
  padding: 20px;
  border: 5px dashed #3bd373;
  animation: blink 1s infinite;
}
.clickoff {
  color: cyan;
  font-weight: bold;
  text-decoration: none;
}
.clickoff:hover {
  background: yellow;
  color: black;
}


.ads img {
  margin: 10px;
  border: 3px solid #3bd373;
  max-width: 200px;
}


.two-columns {
  display: flex;
  justify-content: space-between;
  margin: 20px;
}


.column {
  flex: 1;
  margin: 10px;
  padding: 20px;
  border: 3px solid #3bd373; 
  background-color: #111; 
  color: #fff;
}

.article h1 {
  color: #3bd373;
}


.scam h1 {
  color: red;
  text-shadow: 2px 2px yellow;
}
.scam .clickoff {
  display: block;
  margin-top: 20px;
  background: #3bd373;
  color: #000;
  font-weight: bold;
  padding: 15px;
  text-decoration: none;
  border: 3px dashed #000;
  animation: blink 1s infinite;
}
.scam .clickoff:hover {
  background: yellow;
  color: red;
}


@keyframes blink {
  50% { opacity: 0; }
}



.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
}
.popup:target {
  display: block;
}
.popup-content {
  background: #222;
  margin: 10% auto;
  padding: 20px;
  border: 5px solid #3bd373;
  width: 80%;
  max-width: 500px;
  color: #fff;
}
.close {
  float: right;
  font-size: 28px;
  text-decoration: none;
  color: #3bd373;
}
.close:hover {
  color: yellow;
}


@keyframes blink {
  50% { opacity: 0; }
}
