/* Modern Terminal Theme - Default */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    background: #0a0e27;
    color: #00ff41;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

p {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    border: 2px solid #00ff41;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    max-width: 650px;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.2);
}

button, input[type="submit"] {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    color: #00ff41;
    border: 2px solid #00ff41;
    border-radius: 6px;
    padding: 12px 24px;
    margin: 20px auto;
    display: block;
    font-size: 1em;
    font-family: 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 255, 65, 0.3);
}

button:hover, input[type="submit"]:hover {
    background: #00ff41;
    color: #0a0e27;
    box-shadow: 0 0 25px #00ff41;
    transform: translateY(-2px);
}

button:active, input[type="submit"]:active {
    transform: scale(0.95);
}

a {
    text-decoration: none;
}

.auth-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.edit-button {
    color: #ffa500 !important;
    border-color: #ffa500 !important;
}

.edit-button:hover {
    background: #ffa500 !important;
    color: #0a0e27 !important;
    box-shadow: 0 0 20px #ffa500 !important;
}

form {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    border: 2px solid #00ff41;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    max-width: 650px;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.2);
}

label {
    display: block;
    margin: 15px 0 5px 0;
    color: #00ff41;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}

input[type="text"],
input[type="number"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #0a0e27;
    border: 2px solid #00ff41;
    border-radius: 4px;
    color: #00ff41;
    font-size: 1em;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    border-color: #00ff41;
}

textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

dialog {
    background: #0a0e27;
    border: 3px solid #00ff41;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.4);
    color: #00ff41;
    max-width: 550px;
    min-width: 450px;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

dialog h1, dialog h2 {
    color: #00ff41;
    margin-bottom: 15px;
}

dialog ul {
    list-style-type: none;
    padding-left: 0;
}

dialog li {
    margin: 10px 0;
    padding: 8px;
    border-left: 3px solid currentColor;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 4px;
}

header {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.achievement-common { color: #00ff41; }
.achievement-rare { color: #ff4444; }
.achievement-epic { color: #44bbff; }
.achievement-legendary { color: #ffaa00; }
.achievement-hidden { color: #888888; }
.achievement-locked { color: #666666; opacity: 0.6; }

.user-color { color: var(--user-color, #00ff41); }
.creator-color { color: var(--creator-color, #00ff41); }
.choice-color { border-color: var(--choice-color, #00ff41); color: var(--choice-color, #00ff41); }
.page-border { border-left-color: var(--page-border, #00ff41); }

.creator-attribution { font-size: 0.8em; text-align: right; margin-top: -15px; }
.page-link { color: var(--link-color); text-decoration: none; display: block; margin: 5px 0; }

