:root {
    --primary-color: #F5A623; /* Bold Amber/Orange */
    --primary-hover: #e0941c;
    --dark-neutral: #1a1a1a;
    --light-neutral: #fafafa;
    --white: #ffffff;
    --success-color: #1DB954;
    --error-color: #E63946;
    --border-color: #e5e7eb;
    --text-color: #333333;
    --text-muted: #6b7280;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--light-neutral);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-neutral);
    font-weight: 600;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

/* Header */
header {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 40px;
    width: auto;
}

.header-nav a {
    color: var(--dark-neutral);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--primary-color);
}

/* Footer replaced by .site-footer */

/* Cards & Forms */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    width: 100%;
    max-width: 600px;
}

.card-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.card-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-neutral);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: background-color 0.2s, color 0.2s, transform 0.1s;
    font-size: 1rem;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--light-neutral);
    color: var(--dark-neutral);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

.btn-danger {
    background-color: var(--error-color);
    color: var(--white);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

/* Verification Results */
.result-container {
    margin-top: 2rem;
    display: none; /* hidden by default */
}

.result-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    background-color: var(--light-neutral);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.badge-verified {
    background-color: rgba(29, 185, 84, 0.1);
    color: var(--success-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.result-details p {
    margin-bottom: 0.5rem;
}

.result-details strong {
    color: var(--dark-neutral);
}

.result-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.result-actions .btn {
    flex: 1;
}

/* Messages */
.message {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.message-error {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--error-color);
}

.message-success {
    background-color: rgba(29, 185, 84, 0.1);
    color: var(--success-color);
}

/* Loader */
.loader {
    display: none;
    border: 3px solid rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Admin Table */
.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
}

.admin-table th, .admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background-color: var(--light-neutral);
    font-weight: 600;
    color: var(--text-muted);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

/* Utilities */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.flex { display: flex; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

/* Custom Footer matching launchlions.com */
.site-footer {
    background-color: #050505;
    color: #fff;
    padding: 3rem 0 1rem 0;
    font-family: var(--font-body);
    width: 100%;
    margin-top: auto;
}
.site-footer .footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.site-footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
    margin-bottom: 2rem;
}
.site-footer .footer-col {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}
.site-footer h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.site-footer p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.site-footer ul {
    list-style: none;
    padding: 0;
}
.site-footer ul li {
    margin-bottom: 0.8rem;
}
.site-footer ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.site-footer ul li a:hover {
    color: #F5A623;
}
.site-footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #222;
    padding-top: 1.5rem;
    gap: 1rem;
}
.site-footer .footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.site-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-right: 1px solid #666;
    padding-right: 1.5rem;
}
.site-footer .footer-links a:last-child {
    border-right: none;
    padding-right: 0;
}
.site-footer .footer-copyright p {
    color: #F5A623;
    font-size: 0.9rem;
    margin: 0;
}
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .site-footer .footer-row {
        flex-direction: column;
    }
    .site-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .site-footer .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    .site-footer .footer-links a {
        border-right: none;
        padding-right: 0;
        font-size: 0.85rem;
    }
    .card {
        padding: 1.5rem;
    }
    .card-title {
        font-size: 1.4rem;
    }
    .card-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .main-content {
        padding: 2rem 0;
    }
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    .header-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .header-nav a {
        margin-left: 0 !important;
        font-size: 0.9rem;
    }
    .admin-table th, .admin-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    .form-group > div {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    .form-group > div select, .form-group > div input {
        width: 100% !important;
    }
}
