@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Montserrat:wght@400;700&display=swap');

body {
    background: linear-gradient(135deg, #181a20 60%, #2d2f36 100%);
    color: #e0e0e0;
    font-family: 'Montserrat', Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
}

.container, main, .main-content {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    border-radius: 24px;
    background: rgba(30,32,38,0.95);
    border: 2px solid #3a3f4b;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1, h2, h3 {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00ffd0;
    text-shadow: 0 2px 16px #00ffd0, 0 0px 2px #222;
    letter-spacing: 2px;
}

h2 {
    color: #ff00c8;
    text-shadow: 0 2px 12px #ff00c8, 0 0px 2px #222;
}

.subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

aside {
    background: rgba(44,46,54,0.85);
    border-left: 4px solid #00ffd0;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    color: #e0e0e0;
}

footer {
    text-align: center;
    color: #888;
    margin-top: 2rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

a, .btn, button {
    font-family: 'Orbitron', Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
    color: #181a20;
    background: linear-gradient(120deg, #23272f 60%, #00ffd0 120%);
    border: 2px solid #00ffd0;
    border-radius: 18px;
    padding: 0.7em 2em;
    font-size: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,255,208,0.15), 0 1px 8px #222;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    cursor: pointer;
    margin: 0.5em;
    display: inline-block;
}

a.report-btn, .btn.report-btn, button.report-btn {
    background: linear-gradient(120deg, #23272f 60%, #ff00c8 120%);
    border: 2px solid #ff00c8;
}

a:hover, .btn:hover, button:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 8px 32px #00ffd0, 0 2px 16px #222;
    background: linear-gradient(120deg, rgba(207, 208, 212, 0.95) 40%, #00ffd0 120%);
}

a.report-btn:hover, .btn.report-btn:hover, button.report-btn:hover {
    box-shadow: 0 8px 32px #ff00c8, 0 2px 16px #222;
    background: linear-gradient(120deg, rgba(207, 208, 212, 0.95) 40%, #ff00c8 120%);
}

input, textarea, select {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #23272f;
    color: #e0e0e0;
    border: 2px solid #00ffd0;
    border-radius: 8px;
    padding: 0.7em;
    margin: 0.5em 0;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border 0.2s;
}

input:focus, textarea:focus, select:focus {
    border-color: #ff00c8;
    outline: none;
}

ul, ol {
    padding-left: 2em;
}

code, pre {
    background: #23272f;
    color: #00ffd0;
    border-radius: 6px;
    padding: 0.3em 0.7em;
    font-family: 'Fira Mono', 'Consolas', monospace;
    font-size: 1em;
}

::-webkit-scrollbar {
    width: 8px;
    background: #23272f;
}
::-webkit-scrollbar-thumb {
    background: #00ffd0;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 700px) {
    .container, main, .main-content {
        padding: 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.3rem;
    }
    a, .btn, button {
        font-size: 1rem;
        padding: 0.5em 1em;
    }
}