/* Note: I partially generated this stylesheet with AI. Normally I'm opposed to the usage of AI, but I do not like working with CSS, and don't understand it well enough to make a good looking site.
   I would've used Carrd again had I not done it like this, and I just prefer having control over the HTML side of things myself. The HTML was 99% written by me, it's just the CSS that isn't. */

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #0b0c10;
    color: #c5c6c7;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: rgba(15, 17, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

h1, h2, h3 {
    color: #66fcf1;
    font-weight: 800;
    margin-top: 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.subtitle {
    color: #45a29e;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin-bottom: 30px;
}

.internal-tag {
    color: #888888;
    font-size: 0.8em;
    margin-left: 2px;
}

a {
    color: #66fcf1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

code {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.section {
    margin-bottom: 40px;
}

.section:last-child {
    margin-bottom: 0;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.abuse-box {
    background: rgba(255, 0, 0, 0.05);
    border-left: 4px solid #ff4b4b;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 850px) {
    .container {
        margin: 20px;
        padding: 25px;
    }
}
