.map-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    margin: 4rem 0;
}

.map-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.map-controls {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-controls select,
.filter-controls select,
.filter-controls input {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.map-controls select:focus,
.filter-controls select:focus,
.filter-controls input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-controls input {
    min-width: 250px;
}

/* Leaflet map custom styling */
.leaflet-container {
    background: #1a1a2e !important;
    border-radius: 15px;
}

.map-tiles {
    filter: invert(1) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Ensure map container has proper dimensions */
#mapContainer {
    height: 500px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    background: #1a1a2e;
}

/* Map controls styling */
.leaflet-control {
    border: none !important;
    background: rgba(26, 26, 46, 0.9) !important;
    color: #e0e0e0 !important;
}

.leaflet-control-zoom a {
    background: rgba(26, 26, 46, 0.9) !important;
    color: #00ff88 !important;
    border: 1px solid rgba(0, 255, 136, 0.3) !important;
}

.leaflet-control-zoom a:hover {
    background: rgba(0, 255, 136, 0.2) !important;
}

/* Custom marker styles */
.custom-marker {
    background: transparent;
    border: none;
}

.marker-uap {
    color: #00ff88;
}

.marker-cryptid {
    color: #ff6b6b;
}

.marker-paranormal {
    color: #9d4edd;
}

.marker-anomalous {
    color: #00d4ff;
}

.marker-other {
    color: #ffd60a;
}

/* Popup styling */
.leaflet-popup-content-wrapper {
    background: rgba(26, 26, 46, 0.95) !important;
    color: #e0e0e0 !important;
    border-radius: 10px !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(0, 255, 136, 0.3) !important;
}

.leaflet-popup-content {
    margin: 1rem !important;
    font-size: 0.9rem !important;
}

.leaflet-popup-tip {
    background: rgba(26, 26, 46, 0.95) !important;
}

.leaflet-popup-close-button {
    color: #00ff88 !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.popup-title {
    color: #00ff88;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.popup-meta {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.popup-description {
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Map legend */
.map-legend {
    background: rgba(26, 26, 46, 0.9) !important;
    color: #e0e0e0 !important;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    font-size: 0.9rem;
}

.map-legend h4 {
    margin: 0 0 0.5rem 0;
    color: #00ff88;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00ff88;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.main-content {
    margin-top: 80px;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: 2px solid #00ff88;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #00ff88;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    border-color: #00d4ff;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.btn-secondary:hover {
    background: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.features {
    max-width: 1200px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.report-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

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

.section-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00d4ff;
}

.report-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ff88;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.podcast-section {
    padding: 4rem 2rem;
    text-align: center;
}

.podcast-container {
    max-width: 1000px;
    margin: 0 auto;
}

.podcast-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.podcast-title {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.episodes-list {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.episode-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.episode-title {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.episode-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.episode-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn {
    background: #00ff88;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

.play-btn:hover {
    background: #00d4ff;
}

.recent-reports {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.report-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #00ff88;
    transition: transform 0.3s ease;
}

.report-item:hover {
    transform: translateX(5px);
}

.report-type {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.report-location {
    color: #888;
    font-size: 0.9rem;
}

.report-date {
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.load-more-container {
    margin-top: 2rem;
    text-align: center;
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 2rem 1rem;
    text-align: center;
    margin-top: 4rem;
}

.mobile-menu {
    display: none;
    background: #00ff88;
    border: none;
    color: #000;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
}

.loading {
    text-align: center;
    color: #00ff88;
    padding: 2rem;
}

.error {
    text-align: center;
    color: #ff4444;
    padding: 2rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .features {
        padding: 0 1rem;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading spinner */
.spinner {
    border: 4px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    border-top: 4px solid #00ff88;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Mobile Menu Implementation */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    z-index: 1000;
    transition: right 0.3s ease;
    border-left: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu-panel.active {
    right: 0;
}

.mobile-menu-header {
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.mobile-menu-logo {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.mobile-menu-nav {
    padding: 1rem 0;
}

.mobile-menu-item {
    display: block;
    padding: 1rem 1.5rem;
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
}

.mobile-menu-item:hover {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding-left: 2rem;
}

.mobile-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #00ff88;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu-item:hover::before {
    transform: scaleY(1);
}

.mobile-menu-item.active {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.mobile-menu-item.active::before {
    transform: scaleY(1);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Mobile menu hamburger animation */
.mobile-menu-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-hamburger span {
    width: 24px;
    height: 3px;
    background: #00ff88;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-menu-hamburger.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Update existing mobile menu styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu {
        display: none; /* Hide old mobile menu button */
    }
    
    .mobile-menu-hamburger {
        display: flex;
    }
}

/* ===== LOADING SPINNERS & ERROR MESSAGES ===== */

/* Modern Loading Spinner Variations */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    border-top-color: #00ff88;
    animation: spin 1s ease-in-out infinite;
}

.loading-spinner-large {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

.loading-spinner-small {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pulsing Dots Loader */
.loading-dots {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-dot 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes pulse-dot {
    0%, 80%, 100% { 
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Full-screen Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-overlay .loading-spinner {
    width: 50px;
    height: 50px;
    border-width: 5px;
    margin-bottom: 1rem;
}

.loading-overlay .loading-text {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
}

.loading-overlay .loading-subtext {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* Section Loading States */
.section-loading {
    text-align: center;
    padding: 3rem 2rem;
    color: #00ff88;
}

.section-loading .loading-spinner {
    width: 30px;
    height: 30px;
    border-width: 3px;
    margin-bottom: 1rem;
}

/* Button Loading States */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: currentColor;
    animation: spin 1s linear infinite;
}

.btn-loading .btn-text {
    margin-left: 2rem;
}

/* Enhanced Error Messages */
.error-message {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(255, 68, 68, 0.05));
    border: 1px solid #ff4444;
    border-left: 4px solid #ff4444;
    color: #ff6b6b;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: slideInDown 0.3s ease;
}

.error-message-icon {
    font-size: 1.2rem;
    color: #ff4444;
    flex-shrink: 0;
}

.error-message-content {
    flex: 1;
}

.error-message-title {
    font-weight: 600;
    color: #ff4444;
    margin-bottom: 0.25rem;
}

.error-message-text {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

.error-message-actions {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.error-retry-btn {
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid #ff4444;
    color: #ff4444;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.error-retry-btn:hover {
    background: #ff4444;
    color: white;
}

/* Success Messages */
.success-message {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    border: 1px solid #00ff88;
    border-left: 4px solid #00ff88;
    color: #00ff88;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: slideInDown 0.3s ease;
}

.success-message-icon {
    font-size: 1.2rem;
    color: #00ff88;
    flex-shrink: 0;
}

/* Warning Messages */
.warning-message {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border: 1px solid #ffc107;
    border-left: 4px solid #ffc107;
    color: #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: slideInDown 0.3s ease;
}

.warning-message-icon {
    font-size: 1.2rem;
    color: #ffc107;
    flex-shrink: 0;
}

/* Info Messages */
.info-message {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px solid #00d4ff;
    border-left: 4px solid #00d4ff;
    color: #00d4ff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: slideInDown 0.3s ease;
}

.info-message-icon {
    font-size: 1.2rem;
    color: #00d4ff;
    flex-shrink: 0;
}

/* Notification System */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.notification-success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.1));
    border: 1px solid #00ff88;
    color: #00ff88;
}

.notification-error {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15), rgba(255, 68, 68, 0.1));
    border: 1px solid #ff4444;
    color: #ff4444;
}

.notification-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.1));
    border: 1px solid #ffc107;
    color: #ffc107;
}

.notification-info {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.1));
    border: 1px solid #00d4ff;
    color: #00d4ff;
}

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    opacity: 1;
}

/* Form Loading States */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.form-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    border-top-color: #00ff88;
    animation: spin 1s linear infinite;
    z-index: 1;
}

/* Card Loading Skeleton */
.card-skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
    height: 100px;
    margin-bottom: 1rem;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .loading-overlay .loading-text {
        font-size: 1rem;
    }
    
    .error-message,
    .success-message,
    .warning-message,
    .info-message {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.loading { 
    opacity: 0.6; 
    pointer-events: none; 
}

.hidden { 
    display: none !important; 
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-out {
    animation: fadeOut 0.3s ease;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}