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

body {
    background: #0a0a0a;
    color: #0ff;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    padding: 20px;
    background-image: 
        linear-gradient(rgba(0, 255, 157, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
  font-family: 'Cyberway Riders', 'Agency FB', sans-serif;
  font-size: 4.5rem;
  color: #0ff;
  text-shadow: 0 0 10px #0ff,
               0 0 20px #0ff,
               0 0 30px #0ff,
               0 0 40px #0ff,
               4px 4px 0 #f0f,
               -4px -4px 0 #0f0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 4px;
  animation: glitch 2s infinite;
  background: linear-gradient(45deg, #0ff 25%, #f0f 50%, #0f0 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 20px;
  display: inline-block;
  
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

.post {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #0ff;
    margin: 20px 0;
    padding: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
}

.post::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0ff, #f0f);
    z-index: -1;
    animation: glow 2s linear infinite;
}

@keyframes glow {
    0% { opacity: 0.2; }
    50% { opacity: 0.5; }
    100% { opacity: 0.2; }
}

/* Cyberpunk Navigation Button */
.nav-container {
    margin: 20px 0 40px 0;
    display: flex;
    justify-content: center;
}

.cyber-btn {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    color: #0ff;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #0ff;
    background: transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 0 10px rgba(0, 255, 255, 0.3),
        inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.cyber-btn:hover {
    color: #000;
    text-shadow: 0 0 5px #0ff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.8),
        inset 0 0 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cyber-btn .btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.cyber-btn .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 255, 0.2), 
        rgba(0, 255, 255, 0.4), 
        rgba(0, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.cyber-btn:hover .btn-bg {
    left: 100%;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0ff, #f0f, #0f0, #0ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-btn:hover::before {
    opacity: 0.7;
    animation: border-glow 1s linear infinite;
}

@keyframes border-glow {
    0% { 
        background: linear-gradient(45deg, #0ff, #f0f, #0f0, #0ff);
    }
    25% { 
        background: linear-gradient(45deg, #f0f, #0f0, #0ff, #f0f);
    }
    50% { 
        background: linear-gradient(45deg, #0f0, #0ff, #f0f, #0f0);
    }
    75% { 
        background: linear-gradient(45deg, #0ff, #f0f, #0f0, #0ff);
    }
    100% { 
        background: linear-gradient(45deg, #f0f, #0f0, #0ff, #f0f);
    }
}

/* Glitch effect on hover */
.cyber-btn:hover .btn-text {
    animation: text-glitch 0.3s ease-in-out;
}

@keyframes text-glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}