

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #00ff41;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

h1 {
    text-align: center;
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    margin-bottom: 20px;
    font-size: 2.5em;
}

h2, h3 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.challenge-info {
    background: rgba(0, 255, 65, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    border-left: 4px solid #00ff41;
}

.navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 107, 53, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.navigation li {
    margin: 5px 10px;
}

.navigation a {
    color: #ff6b35;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #ff6b35;
    border-radius: 3px;
    transition: all 0.3s;
}

.navigation a:hover {
    background: rgba(255, 107, 53, 0.2);
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

.content {
    margin-bottom: 30px;
}

.hint {
    background: rgba(255, 255, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #ffff00;
    margin: 20px 0;
    color: #ffff88;
}

.hint strong {
    color: #ffff00;
}

.tools-needed ul {
    list-style: none;
    padding-left: 20px;
}

.tools-needed li {
    margin: 5px 0;
    padding-left: 20px;
    position: relative;
}

.tools-needed li:before {
    content: "🔧";
    position: absolute;
    left: 0;
}

.flag-submission {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
    text-align: center;
}

.flag-submission input {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    color: #00ff41;
    padding: 10px 15px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    width: 300px;
    border-radius: 5px;
    margin-right: 10px;
}

.flag-submission button {
    background: #ff6b35;
    border: none;
    color: white;
    padding: 12px 20px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.flag-submission button:hover {
    background: #e55a2b;
}

.result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}
//Flag Part 2: t0_th3_hunt_
.result.success {
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
    border: 1px solid #00ff41;
}

.result.error {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    border: 1px solid #ff4444;
}

footer {
    text-align: center;
    color: #666;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 20px;
    }
    
    .navigation ul {
        flex-direction: column;
        align-items: center;
    }
    
    .flag-submission input {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    h1 {
        font-size: 2em;
    }
}