/* ===========================================
   FORD VS HOLDEN - Community Awareness Register
   Government Warning System Aesthetic
   =========================================== */

/* CSS Variables */
:root {
    /* Brand Colors */
    --ford-blue: #003478;
    --ford-blue-light: #1e5aa8;
    --ford-blue-dark: #001f4d;
    --holden-red: #cc0000;
    --holden-red-light: #e63333;
    --holden-red-dark: #990000;
    
    /* Government/Warning Colors */
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --border-color: #2a2a3a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --warning-yellow: #ffc107;
    --success-green: #28a745;
    --danger-red: #dc3545;
    
    /* Typography */
    --font-display: 'JetBrains Mono', monospace;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: var(--warning-yellow);
    margin-bottom: var(--space-lg);
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 30%;
    background: var(--warning-yellow);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Page Containers */
.page {
    min-height: 100vh;
}

.page.hidden {
    display: none;
}

/* ===========================================
   LANDING PAGE
   =========================================== */

.landing-container {
    min-height: 100vh;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at top, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        var(--bg-dark);
}

.govt-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.govt-logo {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.govt-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.govt-subtitle {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

.warning-banner {
    background: linear-gradient(90deg, var(--warning-yellow), #ffdb4d);
    color: #000;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(255, 193, 7, 0.2); }
}

.landing-intro {
    text-align: center;
    max-width: 500px;
    margin-bottom: var(--space-xl);
}

.landing-intro p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.landing-intro .subtext {
    color: var(--text-primary);
    font-weight: 600;
}

.side-selection {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.side-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 200px;
}

.side-btn:hover {
    transform: translateY(-5px);
}

.ford-btn:hover {
    border-color: var(--ford-blue);
    box-shadow: 0 10px 40px rgba(0, 52, 120, 0.3);
}

.holden-btn:hover {
    border-color: var(--holden-red);
    box-shadow: 0 10px 40px rgba(204, 0, 0, 0.3);
}

.side-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

.ford-logo {
    color: var(--ford-blue-light);
}

.holden-logo {
    color: var(--holden-red-light);
}

.side-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.side-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.vs-divider {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: var(--space-md);
}

.landing-footer {
    text-align: center;
    max-width: 400px;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===========================================
   AUTH PAGE
   =========================================== */

.auth-container {
    min-height: 100vh;
    padding: var(--space-xl);
    max-width: 500px;
    margin: 0 auto;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-lg);
    transition: color 0.2s;
}

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

.auth-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.selected-side-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.selected-side-badge.ford {
    background: var(--ford-blue);
    color: white;
}

.selected-side-badge.holden {
    background: var(--holden-red);
    color: white;
}

.auth-header h1 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.auth-tab {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.auth-tab.active {
    background: var(--border-color);
    color: var(--text-primary);
}

.auth-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.auth-form.hidden {
    display: none;
}

/* Form Elements */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warning-yellow);
}

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

.checkbox-group {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--warning-yellow);
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.side-text {
    font-weight: 700;
}

.side-text.ford { color: var(--ford-blue-light); }
.side-text.holden { color: var(--holden-red-light); }

.submit-btn {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--warning-yellow);
    color: #000;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    background: #e6ac00;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}

.error-message {
    color: var(--danger-red);
    font-size: 0.9rem;
    margin-top: var(--space-md);
    text-align: center;
}

/* ===========================================
   DASHBOARD
   =========================================== */

.top-nav {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-icon {
    font-size: 1.5rem;
}

.nav-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

#nav-user-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.side-badge {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.side-badge.ford {
    background: var(--ford-blue);
    color: white;
}

.side-badge.holden {
    background: var(--holden-red);
    color: white;
}

/* War Gauge Section */
.war-gauge-section {
    padding: var(--space-xl);
    text-align: center;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--warning-yellow);
    margin-bottom: var(--space-lg);
}

.war-gauge-container {
    max-width: 600px;
    margin: 0 auto;
}

.war-gauge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.gauge-side {
    text-align: center;
    min-width: 80px;
}

.gauge-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.holden-side .gauge-label { color: var(--holden-red-light); }
.ford-side .gauge-label { color: var(--ford-blue-light); }

.gauge-percent {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.gauge-bar {
    flex: 1;
    height: 40px;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    border: 2px solid var(--border-color);
}

.gauge-fill {
    height: 100%;
    transition: width 1s ease-out;
}

.holden-fill {
    background: linear-gradient(90deg, var(--holden-red-dark), var(--holden-red));
}

.ford-fill {
    background: linear-gradient(90deg, var(--ford-blue), var(--ford-blue-dark));
}

.gauge-message {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    min-height: 50px;
}

.gauge-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.share-btn {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    border: 2px solid var(--warning-yellow);
    color: var(--warning-yellow);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover {
    background: var(--warning-yellow);
    color: #000;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    position: sticky;
    top: 60px;
    z-index: 99;
}

.tab-btn {
    flex: 1;
    min-width: 80px;
    padding: var(--space-md);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    position: relative;
}

.tab-btn:hover {
    color: var(--text-secondary);
    background: var(--bg-card-hover);
}

.tab-btn.active {
    color: var(--warning-yellow);
    border-bottom-color: var(--warning-yellow);
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-btn span:last-of-type:not(.notification-badge) {
    font-size: 0.75rem;
    font-weight: 600;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: calc(50% - 20px);
    background: var(--danger-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.notification-badge.hidden {
    display: none;
}

/* Tab Content */
.tab-content {
    padding: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.panel-title {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

.panel-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

/* Regional List */
.regional-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.regional-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.regional-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.regional-name {
    font-weight: 600;
}

.regional-total {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.regional-bar {
    height: 24px;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
}

.regional-holden {
    background: var(--holden-red);
    transition: width 0.5s ease;
}

.regional-ford {
    background: var(--ford-blue);
    transition: width 0.5s ease;
}

.regional-stats {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Map */
.map-container {
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-color);
}

.map-legend {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.holden-dot { background: var(--holden-red); }
.ford-dot { background: var(--ford-blue); }

/* Sightings */
.sightings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.report-btn {
    padding: var(--space-sm) var(--space-lg);
    background: var(--warning-yellow);
    color: #000;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.report-btn:hover {
    background: #e6ac00;
}

.sightings-feed {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sighting-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.sighting-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--bg-dark);
}

.sighting-content {
    padding: var(--space-md);
}

.sighting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.sighting-location {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sighting-location .pin {
    font-size: 1rem;
}

.sighting-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sighting-caption {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.sighting-actions {
    display: flex;
    gap: var(--space-lg);
}

.sighting-action {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.sighting-action:hover {
    color: var(--text-primary);
}

.sighting-action.liked {
    color: var(--danger-red);
}

.empty-state {
    text-align: center;
    padding: var(--space-xxl);
    color: var(--text-muted);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

/* Alerts */
.alerts-controls {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
}

.toggle-label input {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 26px;
    background: var(--bg-dark);
    border-radius: 13px;
    position: relative;
    transition: background 0.2s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.2s;
}

.toggle-label input:checked + .toggle-slider {
    background: var(--warning-yellow);
}

.toggle-label input:checked + .toggle-slider::before {
    transform: translateX(24px);
    background: #000;
}

.alerts-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.alert-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.alert-item.unread {
    border-left: 3px solid var(--warning-yellow);
}

.alert-icon {
    font-size: 1.5rem;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.alert-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.alert-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Profile */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.profile-photo-container {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-dark);
    border: 3px solid var(--border-color);
    margin-bottom: var(--space-md);
}

.photo-upload-btn {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.photo-upload-btn:hover {
    border-color: var(--warning-yellow);
    color: var(--warning-yellow);
}

.profile-form {
    margin-bottom: var(--space-xl);
}

.logout-btn {
    width: 100%;
    padding: var(--space-md);
    background: transparent;
    border: 1px solid var(--danger-red);
    border-radius: var(--radius-md);
    color: var(--danger-red);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.logout-btn:hover {
    background: var(--danger-red);
    color: white;
}

/* Footer */
.app-footer {
    text-align: center;
    padding: var(--space-xl);
    border-top: 1px solid var(--border-color);
    margin-top: var(--space-xl);
}

.app-footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.app-footer a {
    color: var(--warning-yellow);
    text-decoration: none;
    font-weight: 600;
}

.app-footer a:hover {
    text-decoration: underline;
}

.footer-tagline {
    margin-top: var(--space-xs);
    font-size: 0.75rem !important;
}

/* ===========================================
   MODAL
   =========================================== */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--space-lg);
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    margin-bottom: var(--space-sm);
}

.modal-content > p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.photo-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.photo-upload-area:hover {
    border-color: var(--warning-yellow);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
}

.upload-placeholder.hidden {
    display: none;
}

.upload-icon {
    font-size: 2rem;
}

.upload-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sighting-preview {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-sm);
}

.sighting-preview.hidden {
    display: none;
}

/* ===========================================
   TOAST NOTIFICATIONS
   =========================================== */

.toast-container {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-width: 280px;
    max-width: 400px;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.toast.success {
    border-left: 4px solid var(--success-green);
}

.toast.error {
    border-left: 4px solid var(--danger-red);
}

.toast.warning {
    border-left: 4px solid var(--warning-yellow);
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 600px) {
    .side-selection {
        flex-direction: column;
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
    
    .side-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .war-gauge {
        flex-direction: column;
    }
    
    .gauge-bar {
        width: 100%;
        height: 30px;
    }
    
    .gauge-side {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-title {
        display: none;
    }
    
    .tab-btn span:last-of-type:not(.notification-badge) {
        display: none;
    }
    
    .sightings-header {
        flex-direction: column;
    }
    
    .report-btn {
        width: 100%;
    }
}
