body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #00ff00;
    margin: 0;
    padding: 0;
    font-size: 13px;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
}

.glitch-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px
        );
    pointer-events: none;
    z-index: -1;
}

.header {
    background-color: #1a1a1a;
    border: 2px solid #00ff00;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    transform: rotate(-0.8deg);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: #ff0000;
    z-index: -1;
    transform: rotate(1.5deg);
}

.header h1 {
    color: #ff0000;
    font-size: 48px;
    margin: 0;
    font-weight: bold;
    text-shadow: 
        2px 2px 0px #000000,
        -1px -1px 0px #00ff00;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.header p {
    color: #00ff00;
    font-weight: bold;
    margin: 8px 0;
    font-size: 14px;
    text-shadow: 1px 1px 0px #000000;
}

.section {
    background-color: #111111;
    border: 1px solid #333333;
    margin: 25px 0;
    padding: 20px;
    position: relative;
    transform: rotate(0.3deg);
}

.section:nth-child(3) {
    transform: rotate(-0.5deg);
    border-color: #ff0000;
}

.section:nth-child(5) {
    transform: rotate(0.7deg);
    background-color: #0a0a0a;
}

.section:nth-child(7) {
    transform: rotate(-0.4deg);
    border-left: 5px solid #ff0000;
}

.section:nth-child(9) {
    transform: rotate(0.6deg);
    border-right: 5px solid #00ff00;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-top: 10px solid #ff0000;
}

.section h2 {
    color: #ff0000;
    font-size: 18px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 1px 1px 0px #000000;
}

.section p {
    color: #cccccc;
    margin: 12px 0;
    line-height: 1.4;
}

.member-box {
    background-color: #000000;
    color: #00ff00;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    transform: rotate(-0.3deg);
    box-shadow: 2px 2px 0px #ff0000;
}

.join-box {
    background-color: #1a1a1a;
    border: 2px dashed #ff0000;
    padding: 20px;
    margin: 20px 0;
    transform: rotate(0.4deg);
}

.join-box h3 {
    color: #ff0000;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-family: 'Courier New', monospace;
}

.join-box ol {
    color: #00ff00;
    margin: 15px 0;
}

.join-box li {
    margin: 8px 0;
    color: #cccccc;
}

.links {
    text-align: center;
    margin: 30px 0;
}

.links a {
    display: inline-block;
    background-color: #ff0000;
    color: #000000;
    padding: 15px 30px;
    margin: 10px;
    text-decoration: none;
    border: 2px solid #000000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    transform: rotate(-3deg);
    box-shadow: 3px 3px 0px #00ff00;
    transition: transform 0.2s;
}

.links a:nth-child(2) {
    transform: rotate(3deg);
    background-color: #00ff00;
    color: #000000;
    box-shadow: 3px 3px 0px #ff0000;
}

.links a:hover {
    transform: rotate(0deg) scale(1.1);
}

.warning-banner {
    background-color: #ff0000;
    color: #000000;
    border: 3px solid #000000;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin: 25px 0;
    font-family: 'Courier New', monospace;
    animation: glitch 3s infinite;
    transform: rotate(-0.5deg);
}

@keyframes glitch {
    0%, 100% { 
        text-shadow: 0 0 0 #00ff00;
        transform: rotate(-0.5deg);
    }
    25% { 
        text-shadow: -2px 0 0 #00ff00;
        transform: rotate(-0.3deg);
    }
    50% { 
        text-shadow: 2px 0 0 #00ff00;
        transform: rotate(-0.7deg);
    }
    75% { 
        text-shadow: -1px 0 0 #00ff00;
        transform: rotate(-0.4deg);
    }
}

.achievements {
    background-color: #000000;
    border: 1px solid #00ff00;
    padding: 15px;
    margin: 15px 0;
    transform: rotate(0.2deg);
}

.achievements h3 {
    color: #00ff00;
    margin: 0 0 10px 0;
    font-family: 'Courier New', monospace;
}

.achievements p {
    color: #cccccc;
    margin: 5px 0;
    font-size: 12px;
}

strong {
    color: #ff0000;
    font-weight: bold;
}

.footer {
    text-align: center;
    color: #666666;
    margin-top: 40px;
    font-size: 11px;
    padding: 20px;
    border-top: 1px solid #333333;
    font-family: 'Courier New', monospace;
}

/* Chaotic floating text */
.chaos-text {
    position: fixed;
    color: #ff0000;
    font-size: 10px;
    font-weight: bold;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
    font-family: 'Courier New', monospace;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

.chaos-text:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.chaos-text:nth-child(2) { top: 40%; right: 10%; animation-delay: 1s; }
.chaos-text:nth-child(3) { bottom: 25%; left: 15%; animation-delay: 2s; }
.chaos-text:nth-child(4) { top: 70%; right: 20%; animation-delay: 3s; }

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 32px;
    }
    
    .section {
        transform: none;
        margin: 15px 0;
    }
    
    .links a {
        transform: none;
        margin: 5px;
        padding: 12px 20px;
    }
}