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

body {
    font-family: 'Space Mono', monospace;
    background: #000;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

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

.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff4444;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    margin-bottom: 2rem;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

.story-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
}

.story-text em {
    color: #ff4444;
    font-style: normal;
    font-weight: 700;
}

.fight-section {
    background: linear-gradient(45deg, rgba(255, 68, 68, 0.1), rgba(68, 136, 255, 0.1));
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.fight-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4488ff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(68, 136, 255, 0.5);
}

.instructions {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.instruction-list {
    list-style: none;
    counter-reset: step-counter;
}

.instruction-list li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.instruction-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #ff4444;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.instruction-list li strong {
    color: #4488ff;
}

.instruction-list li a {
    color: #4488ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    word-break: break-all;
}

.instruction-list li a:hover {
    border-bottom-color: #4488ff;
}

.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4444;
    opacity: 0.8;
}

.evidence-section {
    background: rgba(68, 136, 255, 0.08);
    border: 2px solid rgba(68, 136, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.evidence-title {
    color: #4488ff;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(68, 136, 255, 0.5);
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.evidence-item {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.evidence-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 68, 68, 0.3);
}

.evidence-caption {
    color: #e0e0e0;
    font-size: 0.95rem;
    text-align: center;
    font-style: italic;
}

.background-section {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.05), rgba(68, 136, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.background-title {
    color: #ff4444;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
}

.context-section {
    background: rgba(255, 68, 68, 0.08);
    border: 2px solid rgba(255, 68, 68, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.context-title {
    color: #ff4444;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.context-content {
    max-width: 700px;
    margin: 0 auto;
}

.context-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.context-item:last-child {
    margin-bottom: 0;
}

.context-item h3 {
    color: #4488ff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.context-item p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.context-item p:last-child {
    margin-bottom: 0;
}

.context-item em {
    color: #ff4444;
    font-style: normal;
    font-weight: 700;
}

.violation-list {
    list-style: none;
    margin-top: 1rem;
}

.violation-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    font-size: 1.05rem;
}

.violation-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4444;
    font-weight: 700;
    font-size: 1.2rem;
}

.irony-highlight {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15), rgba(255, 68, 68, 0.05)) !important;
    border: 2px solid rgba(255, 68, 68, 0.3) !important;
}

.irony-highlight h3 {
    color: #ff4444 !important;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff4444, #4488ff);
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3.5rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(45deg, #ff4444, #4488ff);
    border-radius: 50%;
    border: 3px solid #000;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.timeline-content h3 {
    color: #4488ff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
}

.bot-power-section {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.bot-power-title {
    color: #ff4444;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
}

.bot-power-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.customization-info {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.customization-info h4 {
    color: #4488ff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.customization-info p {
    text-align: left;
    margin-bottom: 1rem;
}

.customization-list {
    list-style: none;
    margin: 1rem 0;
}

.customization-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.customization-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    top: 0;
    color: #4488ff;
    font-size: 1.1rem;
}

.replit-requirement {
    background: linear-gradient(45deg, rgba(255, 68, 68, 0.15), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.replit-requirement p {
    margin-bottom: 0;
    text-align: center;
    color: #ffaa44;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .fight-title {
        font-size: 2rem;
    }
    
    .story-section,
    .fight-section {
        padding: 1.5rem;
    }
    
    .instruction-list li {
        font-size: 1rem;
        padding-left: 2.5rem;
    }
    
    .instruction-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
    
    .evidence-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .evidence-section,
    .background-section {
        padding: 1.5rem;
    }
    
    .evidence-title,
    .background-title {
        font-size: 1.8rem;
    }
    
    .timeline::before {
        left: 0.75rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline-marker {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .context-section {
        padding: 1.5rem;
    }
    
    .context-title {
        font-size: 1.8rem;
    }
    
    .context-item {
        padding: 1.5rem;
    }
    
    .context-item h3 {
        font-size: 1.2rem;
    }
    
    .context-item p {
        font-size: 1rem;
    }
    
    .bot-power-section {
        padding: 1.5rem;
    }
    
    .bot-power-title {
        font-size: 1.5rem;
    }
    
    .customization-info {
        padding: 1rem;
    }
    
    .customization-info h4 {
        font-size: 1.1rem;
    }
}