/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header styles */
.home-header-section {
    background-color: #2a2a2a;
    border-bottom: 2px solid #ff3333;
}

.header {
    padding: 20px 0;
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff3333;
}

.nav-link.active {
    color: #ff3333;
}

/* Banner section */
.sub-banner-section {
    background-color: #333;
    padding: 80px 0;
    text-align: center;
}

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

.sub-banner-outer h1 {
    color: #ff3333;
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sub-banner-outer p {
    color: #ff9999;
    font-size: 1.2em;
    font-style: italic;
}

.sarcastic {
    color: #ff9999;
    font-weight: bold;
    font-style: italic;
}

/* Appeal section */
.appeal-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.appeal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.appeal-info h6 {
    color: #ff9999;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.appeal-info h2 {
    color: #ff3333;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.appeal-info p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.appeal-list {
    list-style: none;
    margin: 20px 0;
}

.appeal-list li {
    color: #e0e0e0;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.appeal-list li::before {
    content: "✓";
    color: #ff3333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.stats-highlight {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #ff3333;
    margin: 30px 0;
}

.stats-highlight h3 {
    color: #ff3333;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.stats-highlight p {
    font-size: 1.2em;
    color: #ff9999;
}

/* Appeal form */
.appeal-form-container {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #444;
}

.appeal-form h3 {
    color: #ff3333;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ff3333;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.required {
    color: #ff6666;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #333;
    border: 2px solid #444;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff3333;
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-help {
    display: block;
    color: #999;
    font-size: 0.9em;
    margin-top: 5px;
}

.submit-btn {
    background-color: #ff3333;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover:not(:disabled) {
    background-color: #cc0000;
}

.submit-btn:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

/* Appeal result */
.appeal-result {
    margin-top: 30px;
}

.success-message {
    background-color: #2a4a2a;
    border: 2px solid #4a8a4a;
    padding: 20px;
    border-radius: 6px;
    color: #e0e0e0;
}

.success-message h3 {
    color: #4a8a4a;
    margin-bottom: 15px;
}

.error-message {
    background-color: #4a2a2a;
    border: 2px solid #8a4a4a;
    padding: 20px;
    border-radius: 6px;
    color: #e0e0e0;
}

.error-message h3 {
    color: #8a4a4a;
    margin-bottom: 15px;
}

/* Status section */
.status-section {
    padding: 80px 0;
    background-color: #2a2a2a;
}

.status-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.status-container h2 {
    color: #ff3333;
    font-size: 2.2em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.status-container p {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.status-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.status-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: #333;
    border: 2px solid #444;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 1em;
}

.status-form input:focus {
    outline: none;
    border-color: #ff3333;
}

.status-btn {
    background-color: #ff3333;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.status-btn:hover {
    background-color: #cc0000;
}

.status-result {
    margin-top: 30px;
}

.status-display {
    background-color: #333;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #444;
    text-align: left;
}

.status-display h3 {
    color: #ff3333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.status-display p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.status-pending {
    color: #ffaa00;
    font-weight: bold;
}

.status-approved {
    color: #4a8a4a;
    font-weight: bold;
}

.status-rejected {
    color: #8a4a4a;
    font-weight: bold;
}

/* Footer */
.footer-section {
    background-color: #2a2a2a;
    padding: 60px 0 30px;
    border-top: 2px solid #ff3333;
}

.footer-section .container {
    max-width: 1200px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section-text {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-title {
    color: #ff3333;
    font-size: 1.2em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff3333;
}

.footer-cta-btn {
    background-color: #ff3333;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.footer-cta-btn:hover {
    background-color: #cc0000;
    color: white;
}

.footer-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: #e0e0e0;
    font-size: 1.5em;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    color: #ff3333;
}

/* Links */
a {
    color: #ff3333;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff9999;
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .navbar-nav {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

    .sub-banner-outer h1 {
        font-size: 2em;
    }

    .appeal-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .status-form {
        flex-direction: column;
    }

    .footer-row {
        flex-direction: column;
    }

    .footer-col {
        min-width: 100%;
    }

    .footer-social-icons {
        justify-content: center;
    }
}

/* hCAPTCHA styling */
.h-captcha {
    margin: 20px 0;
}

/* Form validation styles */
.form-group input:invalid {
    border-color: #8a4a4a;
}

.form-group input:valid {
    border-color: #4a8a4a;
}

/* Disable text selection for most elements */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection for form inputs */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Hide debug information */
.debug, .error-details {
    display: none !important;
}
