@import url(https://fonts.googleapis.com/css?family=Terminal+Dosis);

body {
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #ddd;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #1a1a1a;
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

h1, h2, h3 {
  color: #fff;
}

/* Neon Link/Button Style */
a.neon-button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #ff00cc;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.5s;
  margin-top: 10px;
  letter-spacing: 2px;
}

a.neon-button:hover {
  background: #ff00cc;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #ff00cc,
              0 0 25px #ff00cc,
              0 0 50px #ff00cc,
              0 0 100px #ff00cc;
}

a.neon-button span {
  position: absolute;
  display: block;
}

a.neon-button span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff00cc);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

a.neon-button span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ff00cc);
  animation: btn-anim2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}

a.neon-button span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #ff00cc);
  animation: btn-anim3 1s linear infinite;
  animation-delay: 0.5s;
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}

a.neon-button span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #ff00cc);
  animation: btn-anim4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}

/* Special Hover Effect Circles */
.effect-circle {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  vertical-align: middle;
  border-radius: 50%;
  border: 2px solid hsla(0,0%,0%,.7);
  box-shadow: inset 0 5px 5px -2px hsla(0,0%,100%,.7),
    inset 0 -2px 4px 1px hsla(0,0%,0%,.6), 
    0 3px 4px 1px hsla(0,0%,0%,.3);
  transform: scale(.8);
  transition: transform .3s cubic-bezier(.32,0,.15,1);
}

.effect-circle:hover {
  cursor: pointer;
  transform: scale(1);
  transition: transform .2s cubic-bezier(.32,0,.15,1);
}

/* Particle Effect */
.particle {
  background-size: 6px 6px;
  background-color: #000;
  box-shadow: inset 0 5px 5px -2px hsla(0,0%,100%,.25), 
              inset 0 -2px 4px 1px hsla(0,0%,0%,.6), 
              0 3px 4px 1px hsla(0,0%,0%,.3);
  background-image: radial-gradient(#555 0px, hsla(0,0%,0%,0) 1px, hsla(0,0%,0%,0) 12px),
    repeating-radial-gradient(white 0px, black 1px, black 24px);
}

.particle:hover {
  animation: particle-size .24s linear infinite, particle-positon .48s linear infinite alternate;
}

@keyframes particle-size { 
  from { background-size: 3px 3px, 6px 6px; } 
  to { background-size: 6px 6px, 12px 12px; } 
}

@keyframes particle-positon { 
  from { background-position: 10px, 10px; } 
  to { background-position: 30px, 30px; } 
}

/* Cells Effect */
.cells {
  background-size: 12px 12px;
  background-color: #fff;
  background-image: repeating-radial-gradient(black 4px, white 6px);
}

.cells:hover {
  animation: cells 0.4s linear infinite;
}

@keyframes cells { 
  from { background-size: 6px 6px; } 
  to { background-size: 12px 12px; } 
}

/* Jelly Effect */
.jelly {
  background-size: 30px 30px;
  background-color: hsla(320,80%,60%,1);
  background-image: repeating-radial-gradient(hsla(320,100%,60%,.6) 0px, hsla(220,100%,60%,0) 60%),
    repeating-radial-gradient(hsla(330,100%,40%,1) 6px, hsla(320,80%,60%,1) 12px);
}

.jelly:hover {
  animation: jelly 1.4s cubic-bezier(.1,.4,.9,.6) infinite;
}

@keyframes jelly {
  from { background-size: 30px 30px, 12px 12px; }
  50% { background-size: 60px 60px, 50px 50px; }
  to { background-size: 12px 12px, 70px 70px; }
}

/* Blobbs Effect */
.blobbs {
  background-size: 33px 33px;
  background-color: hsl(200,100%,50%);
  background-image: repeating-radial-gradient(hsla(200,100%,80%,.8) 0px, hsla(200,100%,80%,.5) 2px, hsla(200,100%,80%,0) 25px),
    repeating-radial-gradient(hsla(260,100%,0%,0) 0px, hsla(260,100%,50%,.1) 1px, hsla(260,100%,0%,0) 5px);
}

.blobbs:hover {
  animation: blobbs-position 6s cubic-bezier(.4,0,.2,1) infinite,
    blobbs-size .75s cubic-bezier(.4,0,.2,1) infinite alternate;
}

@keyframes blobbs-position {
  0% { background-position: left top, left top; }
  25% { background-position: right top, left bottom; }
  50% { background-position: right bottom, right bottom; }
  75% { background-position: left bottom, right top; }
  100% { background-position: left top, left top; }
}

@keyframes blobbs-size { 
  from { background-size: 40px 40px, 40px 40px; } 
  to { background-size: 33px 33px, 33px 33px; } 
}

/* Chase Effect */
.chase {
  background-repeat: no-repeat, repeat;
  background-size: 40px 40px;
  background-color: hsl(50,100%,70%);
  background-image: repeating-radial-gradient(hsla(50,100%,100%,1) 0px, hsla(50,100%,90%,1) 5px, hsla(50,100%,70%,.2) 6px, hsla(50,100%,70%,0) 30px),
    repeating-radial-gradient(hsla(20,100%,50%,0) 10%, hsla(20,100%,50%,.4) 40%, hsla(50,100%,70%,1) 60px);
}

.chase:hover {
  animation: chase-position 1.2s infinite, chase-size .4s infinite alternate;
}

@keyframes chase-position {
  0% { background-position: left top, left top; }
  25% { background-position: right top, left bottom; }
  50% { background-position: right bottom, right bottom; }
  75% { background-position: left bottom, right top; }
  100% { background-position: left top, left top; }
}

@keyframes chase-size {
  from { background-size: 30px 30px, 40px 40px; }
  50% { background-size: 35px 35px, 30px 30px; }
  to { background-size: 40px 40px, 20px 20px; }
}

/* Regular links */
a {
  color: #ff00cc;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ff66e5;
  text-decoration: underline;
}

.search-box {
  background-color: #222;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
}

input[type="text"] {
  width: 70%;
  padding: 10px;
  border: none;
  background-color: #333;
  color: #fff;
  border-radius: 3px;
}

button {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  color: #ff00cc;
  background-color: transparent;
  font-size: 16px;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.5s;
  margin-left: 10px;
  letter-spacing: 2px;
  border: 1px solid #ff00cc;
  cursor: pointer;
}

button:hover {
  background: #ff00cc;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #ff00cc,
              0 0 25px #ff00cc,
              0 0 50px #ff00cc,
              0 0 100px #ff00cc;
}

.index-section {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
}

footer {
  background-color: #1a1a1a;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
}

.category {
  margin-bottom: 20px;
}

.category-title {
  background-color: #333;
  padding: 5px 10px;
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.entry-list {
  list-style-type: none;
  padding-left: 20px;
}

.entry-list li {
  margin: 10px 0;
}

.effects-legend {
  background-color: #222;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  text-align: center;
}

.effects-legend h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.effect-item {
  display: inline-block;
  margin: 0 15px 15px 0;
  text-align: center;
}

.effect-name {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.content-box {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
}
