/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    font-family: 'Arial', sans-serif;
    background: url('winter.jpeg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    overflow-x: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Form Container */
.form-container {
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ff4d4d, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d;
    width: 100%;
    max-width: 450px;
    border: 2px solid #000;
    text-align: center;
    margin: 10px 0;
}

.bug-report.form-container,
.bug-list.form-container {
    width: 700px;
    max-width: 700px;
    margin: 10px auto;
    text-align: left;
}



/* Logo and Headings */
.logo {
    color: #000;
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff4d4d, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d;
    margin-bottom: 10px;
}

h2 {
    color: #ff4d4d;
    font-family: 'Georgia', serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

/* Form Elements */
label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #ff4d4d;
    text-align: left;
}

input[type="text"], input[type="password"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #000;
    border-radius: 5px;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
    outline: none;
    border-color: #ff4d4d;
    box-shadow: 0 0 5px #ff4d4d;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to bottom, #cc0000, #800000);
    color: #000;
    border: 2px solid #000;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.7);
    text-shadow: 0 0 10px #ff4d4d, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d;
}

input[type="submit"]:hover {
    background: linear-gradient(to bottom, #ff3333, #cc0000);
    transform: scale(1.02);
}

/* Links */
a {
    color: #ff4d4d;
    text-decoration: underline;
}

a:hover {
    color: #ff6666;
}

.login-links {
    margin: 20px 0;
}

.separator {
    color: #ff4d4d;
    margin: 0 8px;
}

/* Throbber */
.throbber {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #ff4d4d;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 25px auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages */
.message {
    /*margin-top: 15px;*/
    font-size: 16px;
}

.error {
    color: #ff3333;
    text-shadow: none;
}

/* Server Status */
.realm-status {
    color: #ff4d4d;
}

.realm-name {
    font-weight: bold;
}

.status-online { color: #00cc00; }
.status-offline { color: #ff0000; }
.player-count-online { color: #00cc00; }
.player-count-offline { color: #ff0000; }

/* Bug Fixes */
.fix-header {
    font-size: 24px;
    font-weight: bold;
    color: #ff4d4d;
    text-transform: uppercase;
    margin: 10px 0;
}

.fix-box {
    background: #1a1a1a;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    color: #fff;
    margin-top: 10px;
    text-align: left;
}

.fix-report{
    font-size: 20px;
    color: #ff4d4d
}

.fix-fix{
    font-size: 20px;
    color: #ff4d4d
}

.bug-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.no-marker {
    list-style-type: none;
}


/* Homepage Specific */
.server-status { margin-top: 20px; text-align: center; }
.donation { margin-top: 20px; font-size: 14px; color: #ccc; }
.donation-prompt { color: #ff4d4d; font-size: 20px;}
.paypal { color: #0070e0;}
.paypal-wallet { font-family: monospace; color: #0070e0; background: #333; padding: 5px; border-radius: 5px; word-break: break-all; margin-top: 2px; }
.bitcoin { color: #F7931A}
.bitcoin-wallet { font-family: monospace; color: #F7931A; background: #333; padding: 5px; border-radius: 5px; word-break: break-all; margin-top: 2px; }
.patch-notes { margin-top: 20px; text-align: left; }
.patch-notes h3 { color: #ff4d4d; font-family: 'Georgia', serif; font-size: 20px; text-transform: uppercase; /*margin-bottom: 10px;*/ }
.patch-note { background: rgba(255, 255, 255, 0.1); padding: 10px; border-radius: 5px; margin-bottom: 10px; }
.patch-note h4 { color: #ff4d4d; font-size: 16px; margin-bottom: 5px; }
.patch-note p { color: #ccc; font-size: 16px; }
.patch-date { color: #ff4d4d; font-size: 12px; display: block; margin-top: 5px; }
.poll-section { margin-top: 20px; text-align: left; }
.poll-section h3 { color: #ff4d4d; font-family: 'Georgia', serif; font-size: 20px; text-transform: uppercase; /*margin-bottom: 10px;*/ }
.poll-item { background: rgba(255, 255, 255, 0.1); padding: 10px; border-radius: 5px; margin-bottom: 10px; }
.poll-section p { color: #ccc; font-size: 16px; /*margin-bottom: 10px;*/ }
.poll-section label { font-size: 14px; margin: 5px 0; display: block; }
.poll-section input[type="radio"] { margin-right: 5px; }
.poll-message { color: #ff3333; font-size: 14px; margin-top: 10px; }
.no-items { color: #ccc; /*font-size: 14px;*/ margin: 10px 0; }
.scroll-box { height: 350px; overflow-y: auto; padding: 10px; border: 2px solid #ff4d4d; border-radius: 5px; background: rgba(255, 255, 255, 0.05); }
.scroll-box::-webkit-scrollbar { width: 8px; }
.scroll-box::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 5px; }
.scroll-box::-webkit-scrollbar-thumb { background: #ff4d4d; border-radius: 5px; }
.scroll-box::-webkit-scrollbar-thumb:hover { background: #ff6666; }


/* CAPTCHA */
.captcha-container { margin-top: 15px; text-align: center; }
.captcha-container img { display: block; margin: 0 auto 10px; }

/* Bug Report */
.bug-section { margin-bottom: 10px; padding: 10px; background: rgba(255, 255, 255, 0.1); border-radius: 5px; }
.button-group { display: flex; justify-content: space-between; gap: 10px; }
.button-group input[type="submit"] { flex: 1; padding: 10px; }
.download-button { display: inline-block; padding: 12px; background: linear-gradient(to bottom, #cc0000, #800000); color: #000; border: 2px solid #000; border-radius: 5px; font-size: 18px; font-weight: bold; font-family: 'Georgia', serif; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: all 0.3s ease; box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.7); text-shadow: 0 0 10px #ff4d4d, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d; }
.download-button:hover { background: linear-gradient(to bottom, #ff3333, #cc0000); transform: scale(1.02); }
.message-container{ margin-top: 20px;}
.bug-h3 { margin-top: 20px; margin-bottom: 2px; color:#ff4d4d; }
.fixed-size { width: 656px; height: 150px; resize: none;}
.fixed-size-dev { width: 636px; height: 60px; resize: none;}
.text-red { color: #ff4d4d; }

