/* Global neon theme */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0a0a0f;
    color: #e0e0ff;
    margin: 0;
    padding: 20px;
}

/* Centered container */
.container {
    max-width: 60%;
    margin: auto;
    background: rgba(10, 10, 20, 0.7);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

/* Headings */
h1, h2 {
    text-align: center;
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff;
}

/* Form fields */
input[type="text"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #0f0f1a;
    border: 2px solid #00eaff;
    border-radius: 8px;
    color: #e0e0ff;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

textarea {
    height: 140px;
    resize: vertical;
}

/* Neon button */
button {
    width: 100%;
    padding: 14px;
    background: #00eaff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 15px #00eaff;
    transition: 0.2s;
}

button:hover {
    background: #00bcd4;
    box-shadow: 0 0 25px #00eaff;
}

/* Message box */
.message {
    background: rgba(0, 0, 20, 0.6);
    border: 2px solid #ff00ff;
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff00ff;
}

.message strong {
    color: #ff00ff;
    text-shadow: 0 0 8px #ff00ff;
    font-size: 20px;
}

.message small {
    color: #aaa;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 25px;
}

.pagination a,
.pagination strong {
    display: inline-block;
    padding: 10px 14px;
    margin: 0 5px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    border: 2px solid #00eaff;
    color: #00eaff;
    box-shadow: 0 0 10px #00eaff;
    transition: 0.2s;
}

.pagination a:hover {
    background: #00eaff;
    color: #000;
    box-shadow: 0 0 20px #00eaff;
}

.pagination strong {
    background: #ff00ff;
    border-color: #ff00ff;
    color: #000;
    box-shadow: 0 0 20px #ff00ff;
}

/* Mobile responsive */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 15px;
    }

    button {
        font-size: 16px;
    }
}
