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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #eee;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(to right, #c41e3a, #8b0000);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-style: italic;
    opacity: 0.9;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

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

section:hover {
    border-color: #c41e3a;
    transition: border-color 0.3s ease;
}

h2, h3 {
    color: #c41e3a;
    margin-bottom: 1rem;
}

h4 {
    color: #e94560;
    margin-bottom: 0.5rem;
}

.intro p {
    line-height: 1.8;
    font-size: 1.1rem;
}

.web-container {
    text-align: center;
    padding: 2rem;
}

.spider-web {
    font-size: 4rem;
    animation: pulse 2s infinite;
}

.hint {
    margin-top: 1rem;
    opacity: 0.7;
    font-style: italic;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

article {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid #c41e3a;
}

article:last-child {
    margin-bottom: 0;
}

.admin-section {
    border: 2px solid #c41e3a;
    background: rgba(196, 30, 58, 0.1);
}

.admin-section p {
    font-family: 'Courier New', monospace;
    background: #000;
    padding: 1rem;
    border-radius: 5px;
    color: #0f0;
    word-break: break-all;
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.developer-comment {
    font-size: 0.7rem;
    margin-top: 0.5rem;
    opacity: 0.3;
}

.hidden {
    display: none;
}

.flag-revealed {
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px #c41e3a;
    }
    to {
        box-shadow: 0 0 20px #c41e3a, 0 0 30px #e94560;
    }
}
