.jinkies-container {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.jinkies-header {
    margin-bottom: 30px;
    background: linear-gradient(180deg, #d9b300 0%, #806600 100%);
    border: 4px outset #ffe27a;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.jinkies-header img.velma {
    height: 75px;
    width: auto;
}

.jinkies-header-text {
    flex: 1;
}

.jinkies-header h1 {
    color: #2b1d00;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 3px 3px 0px #000;
    margin: 0 0 8px 0;
    white-space: nowrap;
}

.jinkies-tagline {
    color: #3b2a00;
    font-style: italic;
    margin: 0;
}

.submit-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #66cc00 0%, #339900 50%, #66cc00 100%);
    border: 3px outset #99ff00;
    color: #ffffff;
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 30px;
    min-width: 150px;
}

.submit-button:hover {
    border-style: inset;
    background: linear-gradient(180deg, #339900 0%, #66cc00 50%, #339900 100%);
}

.jinkies-entries {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jinkies-entry {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    padding: 15px;
}

.entry-message {
    font-family: 'Courier New', monospace;
    color: #00ff66;
    margin-bottom: 10px;
    word-break: break-all;
    line-height: 1.6;
    background: #000000;
    padding: 10px;
    border: 2px inset #444;
}

.entry-meta {
    color: #888888;
    font-style: italic;
    text-align: right;
}

.jinkies-form {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 3px outset #444;
    padding: 20px;
}

.jinkies-form .form-intro {
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.jinkies-form .form-intro em {
    font-style: italic;
}

.jinkies-form .form-intro strong {
    color: #ffcc00;
}

.jinkies-form .form-group {
    margin-bottom: 20px;
}

.jinkies-form label {
    display: block;
    color: #ffcc00;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 12px;
}

.jinkies-form .optional {
    font-family: 'Arial', sans-serif;
    font-weight: normal;
    text-transform: none;
    color: #888;
}

.jinkies-form input[type="text"],
.jinkies-form textarea {
    width: 100%;
    padding: 10px;
    background: #000000;
    border: 2px inset #444;
    color: #00ff66;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.jinkies-form textarea {
    min-height: 150px;
    resize: vertical;
}

.jinkies-form .honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

.form-buttons {
    display: flex;
    gap: 10px;
}

.cancel-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #cccccc 0%, #999999 50%, #cccccc 100%);
    border: 3px outset #dddddd;
    color: #000;
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    min-width: 150px;
}

.cancel-button:hover {
    border-style: inset;
    background: linear-gradient(180deg, #999999 0%, #cccccc 50%, #999999 100%);
}

.jinkies-entries .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-style: italic;
    background: rgba(0, 0, 0, 0.2);
    border: 2px dashed #333;
}

.flash-message {
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.flash-message.success {
    background: #0f1a0f;
    border-color: #66cc00;
    color: #66ff99;
}

.flash-message.error {
    background: #2b0000;
    border-color: #cc0000;
    color: #ff8080;
}

/* Admin view */
.admin-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.jinkies-admin-title {
    color: #ff6600;
    font-family: 'Arial Black', sans-serif;
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #0b0b14;
    border: 2px solid #333;
}

.admin-table th {
    background: linear-gradient(180deg, #2c1844 0%, #160b2a 100%);
    color: #ffcc00;
    padding: 10px;
    text-align: left;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    border: 1px solid #3b2b5f;
}

.admin-table td {
    padding: 10px;
    border: 1px solid #333;
    vertical-align: top;
    color: #e0e0e0;
}

.admin-table .message-cell {
    font-family: 'Courier New', monospace;
    max-width: 400px;
    word-break: break-word;
}

.admin-table .btn {
    min-width: 0;
    height: 34px;
    padding: 0 12px;
}

#nobody-cares-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#nobody-cares-modal:not(.is-hidden) {
    display: flex;
}

.modal-card {
    background: linear-gradient(180deg, #ff9933 0%, #ff6600 100%);
    border: 4px outset #ffaa44;
    padding: 40px;
    text-align: center;
    max-width: 400px;
}

.modal-title {
    color: #ffffff;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 2px 2px 0px #000;
    margin: 0;
}
