/* Custom CSS for Airsoft Locator Theme */

/* ===================================
   IMAGE LOADING OPTIMIZATIONS
   =================================== */

/* Smooth fade-in for lazy loaded images */
img {
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="eager"] {
    opacity: 1;
}

/* Prevent layout shift with aspect-ratio */
img[style*="aspect-ratio"] {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Loading skeleton for images */
img[loading="lazy"]:not(.loaded) {
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        #e0e0e0 20%,
        #f0f0f0 40%,
        #f0f0f0 100%
    );
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

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

/* Blur-up effect for progressive loading */
.image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.image-wrapper img {
    display: block;
}

/* Optimize image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* High quality rendering for hero images */
.hero-image img,
.airsoft-locator-hero img,
.airsoft-locator-single-hero img {
    image-rendering: auto;
    image-rendering: high-quality;
}

/* Image Placeholder Styles */
.placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(155, 148, 114, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(155, 148, 114, 0.05) 0%, transparent 50%);
    opacity: 0.8;
}

.placeholder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(155, 148, 114, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 148, 114, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.placeholder-image svg {
    position: relative;
    z-index: 1;
    opacity: 0.25;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: opacity 0.3s ease;
}

.placeholder-image:hover svg {
    opacity: 0.35;
}

/* Font Classes */
.font-oswald {
    font-family: 'Inter', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-roboto {
    font-family: 'Inter', sans-serif;
}

/* Legacy Fonts (keeping for compatibility) */
.font-orbitron {
    font-family: 'Inter', sans-serif;
}

.font-rajdhani {
    font-family: 'Inter', sans-serif;
}

.font-exo {
    font-family: 'Inter', sans-serif;
}

/* Site Color Scheme */
:root {
    /* Primary Colors */
    --site-primary: #9B9472;
    --site-primary-dark: #8A8361;
    --site-primary-light: #ACA58A;
    --site-secondary: #1a1a1a;
    --site-dark: #0d0d0d;
    --site-gray: #2a2a2a;
    --site-light-gray: #404040;
    --site-text: #000000;
    --site-text-muted: #cccccc;
    
    /* Legacy Tactical Colors (keeping for compatibility) */
    --tactical-green: #10b981;
    --tactical-green-dark: #059669;
    --tactical-green-light: #34d399;
    --tactical-gray-900: #111827;
    --tactical-gray-800: #1f2937;
    --tactical-gray-700: #374151;
    --tactical-gray-600: #4b5563;
    --tactical-gray-500: #6b7280;
    --tactical-gray-400: #9ca3af;
    
    /* Search Component Colors */
    --search-bg: var(--site-secondary);
    --search-border: var(--site-light-gray);
    --search-text: var(--site-text);
    --search-text-muted: var(--site-text-muted);
    --search-hover: var(--site-gray);
    --search-primary: var(--site-primary);
    --tactical-gray-300: #d1d5db;
    --tactical-gray-200: #e5e7eb;
    --tactical-gray-100: #f3f4f6;
    --tactical-black: #000000;
    --tactical-white: #ffffff;
    --tactical-text-primary: #ffffff;
    --tactical-text-secondary: #d1d5db;
    --tactical-text-muted: #9ca3af;
    --tactical-placeholder: #6b7280;
}

/* Site Background Patterns */
.site-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(155, 148, 114, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(155, 148, 114, 0.05) 0%, transparent 50%);
}

.commercial-grid {
    background-image: 
        linear-gradient(rgba(155, 148, 114, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 148, 114, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Legacy Tactical Background Patterns */
.tactical-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.military-grid {
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Tactical Animations */
@keyframes tactical-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes tactical-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    }
}

@keyframes tactical-scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.tactical-pulse {
    animation: tactical-pulse 2s infinite;
}

.tactical-glow {
    animation: tactical-glow 3s infinite;
}

.tactical-scan {
    position: relative;
    overflow: hidden;
}

.tactical-scan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    animation: tactical-scan 3s infinite;
}

/* Tactical Buttons */
.btn-tactical {
    @apply bg-tactical-green hover:bg-tactical-green-dark text-white font-rajdhani font-bold uppercase tracking-wider px-6 py-3 rounded-lg border-2 border-tactical-green hover:border-tactical-green-dark transition-all duration-300 transform hover:scale-105 shadow-lg hover:shadow-tactical-green/25;
}

.btn-tactical-outline {
    @apply border-2 border-tactical-green text-tactical-green hover:bg-tactical-green hover:text-white font-rajdhani font-bold uppercase tracking-wider px-6 py-3 rounded-lg transition-all duration-300 transform hover:scale-105;
}

/* Tactical Cards */
.tactical-card {
    @apply bg-gray-800 border border-gray-700 rounded-lg p-6 shadow-lg hover:shadow-tactical-green/10 transition-all duration-300;
}

.tactical-card-header {
    @apply border-b border-gray-700 pb-4 mb-4;
}

.tactical-card-title {
    @apply text-white font-orbitron font-bold text-xl mb-2;
}

.tactical-card-subtitle {
    @apply text-gray-400 font-rajdhani text-sm uppercase tracking-wider;
}

/* Tactical Navigation */
.tactical-nav {
    @apply bg-gray-800 border-b-2 border-tactical-green;
}

.tactical-nav-link {
    @apply text-white hover:text-tactical-green font-rajdhani font-semibold uppercase tracking-wider transition-colors duration-300;
}

.tactical-nav-link.active {
    @apply text-tactical-green border-b-2 border-tactical-green;
}

/* Tactical Forms - Enhanced */
.tactical-input {
    @apply bg-gray-800 border border-gray-600 text-white placeholder-gray-400 focus:border-tactical-green focus:ring-2 focus:ring-tactical-green/20 rounded-lg px-4 py-3 transition-all duration-300 font-rajdhani;
    background-color: var(--tactical-gray-800);
    border-color: var(--tactical-gray-600);
    color: var(--tactical-text-primary);
}

.tactical-input::placeholder {
    color: var(--tactical-placeholder);
    opacity: 0.8;
}

.tactical-select {
    @apply bg-gray-800 border border-gray-600 text-white focus:border-tactical-green focus:ring-2 focus:ring-tactical-green/20 rounded-lg px-4 py-3 transition-all duration-300 font-rajdhani;
    background-color: var(--tactical-gray-800);
    border-color: var(--tactical-gray-600);
    color: var(--tactical-text-primary);
}

.tactical-textarea {
    @apply bg-gray-800 border border-gray-600 text-white placeholder-gray-400 focus:border-tactical-green focus:ring-2 focus:ring-tactical-green/20 rounded-lg px-4 py-3 transition-all duration-300 font-rajdhani resize-none;
    background-color: var(--tactical-gray-800);
    border-color: var(--tactical-gray-600);
    color: var(--tactical-text-primary);
}

.tactical-textarea::placeholder {
    color: var(--tactical-placeholder);
    opacity: 0.8;
}

/* Enhanced Form Styles */
.tactical-form-group {
    @apply mb-6;
}

.tactical-form-label {
    @apply block text-sm font-medium mb-2 font-rajdhani;
    color: var(--tactical-text-secondary);
}

.tactical-form-input {
    @apply w-full px-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-tactical-green focus:border-tactical-green transition-all duration-300 font-rajdhani;
    background-color: var(--tactical-gray-800);
    border: 1px solid var(--tactical-gray-600);
    color: var(--tactical-text-primary);
}

.tactical-form-input::placeholder {
    color: var(--tactical-placeholder);
    opacity: 0.8;
}

.tactical-form-select {
    @apply w-full px-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-tactical-green focus:border-tactical-green transition-all duration-300 font-rajdhani;
    background-color: var(--tactical-gray-800);
    border: 1px solid var(--tactical-gray-600);
    color: var(--tactical-text-primary);
}

.tactical-form-textarea {
    @apply w-full px-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-tactical-green focus:border-tactical-green transition-all duration-300 font-rajdhani resize-none;
    background-color: var(--tactical-gray-800);
    border: 1px solid var(--tactical-gray-600);
    color: var(--tactical-text-primary);
}

.tactical-form-textarea::placeholder {
    color: var(--tactical-placeholder);
    opacity: 0.8;
}

/* Form validation styles */
.tactical-form-input:invalid,
.tactical-form-select:invalid,
.tactical-form-textarea:invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.tactical-form-input:valid,
.tactical-form-select:valid,
.tactical-form-textarea:valid {
    border-color: var(--tactical-green);
}

/* Coordinate input styles */
.coordinate-input {
    @apply flex space-x-2;
}

.coordinate-input .tactical-form-input {
    @apply flex-1;
}

.coordinate-help {
    @apply text-xs text-gray-400 mt-1;
    color: var(--tactical-text-muted);
}

/* Map styles */
.airsoft-map-container {
    @apply w-full h-64 rounded-lg border border-gray-300 overflow-hidden;
    min-height: 200px;
}

.airsoft-map-container.small {
    @apply h-48;
    min-height: 150px;
}

.airsoft-map-container.large {
    @apply h-96;
    min-height: 300px;
}

/* Map controls */
.map-controls {
    @apply absolute top-4 right-4 z-10 flex flex-col space-y-2;
}

.map-control-btn {
    @apply bg-white text-gray-700 px-3 py-2 rounded-md shadow-lg border border-gray-200 hover:bg-gray-50 transition-colors duration-200 flex items-center space-x-2 text-sm font-medium;
}

.map-control-btn.active {
    @apply bg-tactical-green text-white border-tactical-green;
}

.map-control-btn svg {
    @apply w-4 h-4;
}

/* Map loading */
.map-loading {
    @apply absolute inset-0 bg-gray-100 flex items-center justify-center z-20;
    background-color: var(--tactical-gray-100);
}

.map-loading-spinner {
    @apply w-8 h-8 border-4 border-tactical-green border-t-transparent rounded-full animate-spin;
}

.map-loading-text {
    @apply ml-3 text-gray-600 font-rajdhani;
    color: var(--tactical-text-secondary);
}

/* Map markers */
.military-marker {
    @apply relative;
}

.marker-icon {
    @apply w-8 h-8 rounded-full border-2 flex items-center justify-center text-white font-bold text-sm shadow-lg;
    background: linear-gradient(135deg, var(--tactical-green) 0%, var(--tactical-green-dark) 100%);
    border-color: var(--tactical-green);
}

/* Map popup styles */
.map-info {
    @apply p-3 min-w-64;
}

.map-info h3 {
    @apply text-lg font-bold text-gray-900 mb-2 font-orbitron;
    color: var(--tactical-text-primary);
}

.map-info p {
    @apply text-sm text-gray-600 mb-1 font-rajdhani;
    color: var(--tactical-text-secondary);
}

.map-info a {
    @apply text-tactical-green hover:text-tactical-green-dark transition-colors;
}

/* Leaflet overrides for dark theme */
.leaflet-popup-content-wrapper {
    @apply bg-white border border-gray-200 rounded-lg shadow-lg;
    background-color: var(--tactical-gray-800);
    border-color: var(--tactical-gray-600);
}

.leaflet-popup-tip {
    background-color: var(--tactical-gray-800);
}

.leaflet-popup-content {
    @apply text-white;
    color: var(--tactical-text-primary);
}

/* Tactical Hero Section */
.tactical-hero {
    @apply relative min-h-screen flex items-center overflow-hidden bg-black;
}

.tactical-hero-bg {
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.tactical-hero-title {
    @apply text-6xl md:text-8xl font-bold font-orbitron text-white leading-tight;
}

.tactical-hero-subtitle {
    @apply text-xl md:text-2xl text-white font-rajdhani;
}

.tactical-hero-cta {
    @apply inline-block text-white text-lg font-rajdhani font-semibold hover:text-tactical-green transition-colors border-b-2 border-tactical-green pb-1;
}

/* Tactical Operator Figure */
.tactical-operator {
    @apply w-80 h-96 bg-gray-800 rounded-lg border-2 border-gray-600 flex items-center justify-center relative overflow-hidden;
}

.tactical-operator svg {
    @apply w-64 h-80 text-gray-300;
}

/* Tactical Status Indicators */
.tactical-status-online {
    @apply w-3 h-3 bg-tactical-green rounded-full animate-pulse;
}

.tactical-status-offline {
    @apply w-3 h-3 bg-gray-500 rounded-full;
}

.tactical-status-warning {
    @apply w-3 h-3 bg-yellow-500 rounded-full animate-pulse;
}

/* Tactical Sidebar */
.tactical-sidebar {
    @apply absolute right-0 top-1/2 transform -translate-y-1/2 z-20;
}

.tactical-sidebar-content {
    @apply bg-gray-800/90 backdrop-blur-sm p-4 rounded-l-lg border-l-2 border-tactical-green;
}

.tactical-sidebar-title {
    @apply text-white text-sm font-rajdhani font-semibold uppercase tracking-wider transform -rotate-90 whitespace-nowrap;
}

.tactical-social-link {
    @apply w-8 h-8 bg-gray-700 hover:bg-tactical-green rounded-full flex items-center justify-center transition-all duration-300;
}

/* Tactical Top Bar */
.tactical-top-bar {
    @apply bg-gray-800 text-white py-2;
}

.tactical-contact {
    @apply text-gray-300;
}

.tactical-phone {
    @apply text-tactical-green font-bold text-lg;
}

.tactical-cart {
    @apply text-gray-300;
}

.tactical-icon {
    @apply w-5 h-5 text-gray-400 hover:text-tactical-green cursor-pointer transition-colors duration-300;
}

/* Enhanced Typography */
.tactical-text-primary {
    color: var(--tactical-text-primary);
    font-family: 'Inter', sans-serif;
}

.tactical-text-secondary {
    color: var(--tactical-text-secondary);
    font-family: 'Inter', sans-serif;
}

.tactical-text-muted {
    color: var(--tactical-text-muted);
    font-family: 'Inter', sans-serif;
}

.tactical-heading-primary {
    @apply font-orbitron font-bold text-white;
    color: var(--tactical-text-primary);
}

.tactical-heading-secondary {
    @apply font-rajdhani font-semibold text-gray-300;
    color: var(--tactical-text-secondary);
}

.tactical-heading-muted {
    @apply font-rajdhani font-medium text-gray-400;
    color: var(--tactical-text-muted);
}

/* Enhanced Placeholder Styles */
.tactical-placeholder {
    color: var(--tactical-placeholder) !important;
    opacity: 0.8;
    font-style: italic;
}

.tactical-placeholder::placeholder {
    color: var(--tactical-placeholder) !important;
    opacity: 0.8;
    font-style: italic;
}

/* Tactical Footer */
.tactical-footer {
    @apply bg-black text-white border-t-2 border-tactical-green;
}

.tactical-footer-logo {
    @apply text-3xl font-bold font-orbitron text-tactical-green;
}

.tactical-footer-text {
    @apply text-gray-300 font-rajdhani leading-relaxed;
    color: var(--tactical-text-secondary);
}

.tactical-footer-link {
    @apply text-gray-400 hover:text-white transition-colors duration-300 font-rajdhani;
    color: var(--tactical-text-muted);
}

.tactical-footer-link:hover {
    color: var(--tactical-text-primary);
}

.tactical-footer-social {
    @apply w-10 h-10 bg-gray-800 hover:bg-tactical-green rounded-lg flex items-center justify-center transition-all duration-300 border border-gray-700 hover:border-tactical-green;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tactical-hero-title {
        @apply text-4xl;
    }
    
    .tactical-hero-subtitle {
        @apply text-lg;
    }
    
    .tactical-operator {
        @apply w-64 h-80;
    }
    
    .tactical-operator svg {
        @apply w-48 h-64;
    }
    
    .tactical-sidebar {
        @apply hidden;
    }
}

@media (max-width: 640px) {
    .tactical-hero-title {
        @apply text-3xl;
    }
    
    .tactical-hero-subtitle {
        @apply text-base;
    }
    
    .tactical-operator {
        @apply w-48 h-64;
    }
    
    .tactical-operator svg {
        @apply w-36 h-48;
    }
}

/* Tactical Loading States */
.tactical-loading {
    @apply relative overflow-hidden;
}

.tactical-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), transparent);
    animation: tactical-scan 1.5s infinite;
}

/* Tactical Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Tactical Focus States */
.tactical-focus:focus {
    @apply outline-none ring-2 ring-tactical-green/50 ring-offset-2 ring-offset-gray-900;
}

/* Tactical Print Styles */
@media print {
    .tactical-hero {
        background: none !important;
        color: #000 !important;
    }
    
    .tactical-card {
        border: 1px solid #000 !important;
        background: none !important;
        color: #000 !important;
    }
    
    .tactical-btn {
        border: 1px solid #000 !important;
        background: none !important;
        color: #000 !important;
    }
}

/* Button Styles */
.btn {
    @apply inline-flex items-center justify-center px-4 py-2 text-sm font-medium rounded-md transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2;
}

.btn-primary {
    @apply bg-primary-600 text-white hover:bg-primary-700 focus:ring-primary-500;
}

.btn-outline {
    @apply border border-gray-300 text-gray-700 bg-white hover:bg-gray-50 focus:ring-primary-500;
}

.btn-secondary {
    @apply bg-gray-600 text-white hover:bg-gray-700 focus:ring-gray-500;
}

.btn-sm {
    @apply px-3 py-1.5 text-xs;
}

.btn-lg {
    @apply px-6 py-3 text-base;
}

/* WordPress specific styles */
.wp-block-image {
    @apply my-6;
}

.wp-block-image img {
    @apply rounded-lg shadow-soft;
}

.wp-block-quote {
    @apply border-l-4 border-primary-500 pl-4 italic text-gray-700;
}

.wp-block-code {
    @apply bg-gray-100 rounded-lg p-4 font-mono text-sm;
}

.wp-block-table {
    @apply w-full border-collapse border border-gray-300;
}

.wp-block-table th,
.wp-block-table td {
    @apply border border-gray-300 px-4 py-2;
}

.wp-block-table th {
    @apply bg-gray-50 font-semibold;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-break {
        page-break-before: always;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .card {
        border: 1px solid #000;
        box-shadow: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .card {
        border: 2px solid #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.focus\:ring-2:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:ring-primary-500:focus {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.5);
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999999;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}

/* Custom utilities */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* Team specific styles */
.team-card:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease-in-out;
}

.team-logo {
    transition: transform 0.2s ease-in-out;
}

.team-card:hover .team-logo {
    transform: scale(1.05);
}

/* Search form enhancements */
.search-form {
    transition: box-shadow 0.2s ease-in-out;
}

.search-form:focus-within {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Mobile optimizations */
@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .filter-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

/* Tablet optimizations */
@media (min-width: 641px) and (max-width: 1024px) {
    .search-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop optimizations */
@media (min-width: 1025px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .search-form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .card {
        background-color: #1f2937;
        border-color: #374151;
    }
    
    .card-header {
        background-color: #111827;
        border-color: #374151;
    }
    
    .card-footer {
        background-color: #111827;
        border-color: #374151;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        background-color: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
}

/* Performance optimizations */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

.team-card {
    contain: layout style;
}

/* Print optimizations */
@media print {    
    .btn {
        border: 1px solid #000 !important;
        background: none !important;
        color: #000 !important;
    }
    
    .team-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* ============================================
   SITE E-COMMERCE STYLES
   ============================================ */

/* Product Card Enhancements */
.product-card {
    @apply bg-site-dark rounded-2xl shadow-xl overflow-hidden hover:shadow-2xl transition-all duration-300 transform hover:scale-105 border border-site-gray group;
}

.product-card-image {
    @apply relative h-64 overflow-hidden;
}

.product-card-image img {
    @apply w-full h-full object-cover group-hover:scale-110 transition-transform duration-300;
}

.product-card-overlay {
    @apply absolute inset-0 bg-gradient-to-t from-site-dark/80 via-transparent to-transparent;
}

.product-badge {
    @apply bg-site-primary text-white text-xs font-bold px-3 py-1 rounded-full font-inter;
}

.product-badge-secondary {
    @apply bg-green-500 text-white text-xs font-bold px-3 py-1 rounded-full font-inter;
}

.product-rating {
    @apply bg-site-secondary/90 backdrop-blur-sm text-site-text px-3 py-1 rounded-full text-sm font-inter;
}

.product-actions {
    @apply absolute bottom-4 right-4 opacity-0 group-hover:opacity-100 transition-opacity duration-300;
}

.product-action-btn {
    @apply w-10 h-10 bg-site-primary hover:bg-site-accent text-white rounded-full flex items-center justify-center transition-all duration-300 transform hover:scale-110;
}

.product-action-btn-secondary {
    @apply w-10 h-10 bg-site-secondary hover:bg-site-gray text-site-text rounded-full flex items-center justify-center transition-all duration-300 transform hover:scale-110;
}

/* E-commerce Buttons */
.btn-primary {
    @apply bg-site-primary hover:bg-site-accent text-white px-6 py-3 rounded-lg font-inter font-semibold transition-all duration-300 transform hover:scale-105 shadow-lg hover:shadow-site-primary/25;
}

.btn-secondary {
    @apply bg-transparent border-2 border-site-primary text-site-primary hover:bg-site-primary hover:text-white px-6 py-3 rounded-lg font-inter font-semibold transition-all duration-300;
}

.btn-outline {
    @apply bg-site-gray hover:bg-site-light-gray text-site-text px-4 py-3 rounded-lg transition-all duration-300 transform hover:scale-105;
}

/* E-commerce Forms */
.ecommerce-input {
    @apply w-full px-4 py-3 bg-site-gray border border-site-light-gray rounded-lg text-site-text placeholder-site-text-muted focus:outline-none focus:ring-2 focus:ring-site-primary focus:border-transparent transition-all font-inter;
}

.ecommerce-select {
    @apply w-full px-4 py-3 bg-site-gray border border-site-light-gray rounded-lg text-site-text focus:outline-none focus:ring-2 focus:ring-site-primary focus:border-transparent transition-all font-inter;
}

.ecommerce-label {
    @apply block text-sm font-medium text-site-text-muted mb-2 font-inter;
}

/* E-commerce Cards */
.ecommerce-card {
    @apply bg-site-dark rounded-2xl shadow-xl p-6 border border-site-gray;
}

.ecommerce-card-header {
    @apply flex items-center space-x-3 mb-6;
}

.ecommerce-card-title {
    @apply text-xl font-semibold text-site-text font-oswald;
}

.ecommerce-card-subtitle {
    @apply text-site-text-muted font-inter text-sm;
}

/* E-commerce Stats */
.ecommerce-stat {
    @apply text-center;
}

.ecommerce-stat-number {
    @apply text-2xl font-bold text-site-primary font-oswald;
}

.ecommerce-stat-label {
    @apply text-sm text-site-text-muted font-inter;
}

/* E-commerce Navigation */
.ecommerce-nav {
    @apply bg-site-secondary border-b border-site-gray sticky top-0 z-50 shadow-lg;
}

.ecommerce-nav-link {
    @apply text-site-text hover:text-site-primary font-inter font-medium transition-colors;
}

.ecommerce-nav-link.active {
    @apply text-site-primary;
}

/* E-commerce Search */
.ecommerce-search {
    @apply relative;
}

.ecommerce-search-input {
    @apply w-full px-4 py-3 pl-12 bg-site-gray border border-site-light-gray rounded-lg text-site-text placeholder-site-text-muted focus:outline-none focus:ring-2 focus:ring-site-primary focus:border-transparent transition-all;
}

.ecommerce-search-icon {
    @apply absolute left-4 top-1/2 transform -translate-y-1/2 w-5 h-5 text-site-text-muted;
}

/* E-commerce Pagination */
.ecommerce-pagination {
    @apply bg-site-dark rounded-2xl p-4 border border-site-gray;
}

.ecommerce-pagination-link {
    @apply bg-site-gray hover:bg-site-primary text-site-text hover:text-white px-4 py-2 rounded-lg mx-1 transition-all duration-300 font-inter font-semibold;
}

/* E-commerce Empty State */
.ecommerce-empty {
    @apply text-center py-16;
}

.ecommerce-empty-icon {
    @apply w-24 h-24 bg-site-primary/20 rounded-full flex items-center justify-center mx-auto mb-6;
}

.ecommerce-empty-title {
    @apply text-2xl font-bold text-site-text font-oswald mb-4;
}

.ecommerce-empty-description {
    @apply text-site-text-muted mb-8 font-inter max-w-md mx-auto;
}

.ecommerce-empty-action {
    @apply inline-flex items-center bg-site-primary hover:bg-site-accent text-white px-8 py-4 rounded-lg font-inter font-semibold transition-all duration-300 transform hover:scale-105 shadow-lg hover:shadow-site-primary/25;
}

/* E-commerce Social Links */
.ecommerce-social {
    @apply w-12 h-12 bg-site-gray hover:bg-site-primary rounded-xl flex items-center justify-center transition-all duration-300 border border-site-light-gray hover:border-site-primary transform hover:scale-110;
}

.ecommerce-social-icon {
    @apply w-6 h-6 text-site-text-muted hover:text-white;
}

/* E-commerce Footer */
.ecommerce-footer {
    @apply bg-site-dark text-site-text border-t border-site-primary;
}

.ecommerce-footer-link {
    @apply text-site-text-muted hover:text-site-primary transition-colors font-inter;
}

.ecommerce-footer-section-title {
    @apply text-lg font-semibold mb-6 text-site-text font-oswald;
}

/* Responsive E-commerce */
@media (max-width: 768px) {
    .product-card {
        @apply transform-none hover:scale-100;
    }
    
    .ecommerce-search-input {
        @apply text-sm;
    }
    
    .ecommerce-card {
        @apply p-4;
    }
}

/* E-commerce Animations */
@keyframes site-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes site-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    }
}

.site-pulse {
    animation: site-pulse 2s infinite;
}

.site-glow {
    animation: site-glow 3s infinite;
}

/* E-commerce Loading States */
.ecommerce-loading {
    @apply relative overflow-hidden;
}

.ecommerce-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.4), transparent);
    animation: site-scan 1.5s infinite;
}

@keyframes site-scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ============================================
   TACTICAL BACKGROUND EFFECTS
   ============================================ */

/* Tactical Hero Background */
.tactical-hero-bg {
    background: linear-gradient(rgba(13, 13, 13, 0.85), rgba(26, 26, 26, 0.9)), 
                url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') center/cover;
    position: relative;
    overflow: hidden;
}

.tactical-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

/* Tactical Grid Pattern */
.tactical-grid {
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Tactical Crosshairs */
.tactical-crosshair {
    border: 1px solid rgba(255, 107, 53, 0.3);
    transform: rotate(45deg);
    animation: tactical-pulse 3s infinite;
}

.tactical-crosshair-small {
    border: 1px solid rgba(255, 107, 53, 0.2);
    transform: rotate(45deg);
    animation: tactical-pulse 4s infinite;
}

/* Tactical Status Indicators */
.tactical-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--site-text-muted);
    font-family: 'Inter', sans-serif;
}

.tactical-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: tactical-pulse 2s infinite;
}

.tactical-status-online {
    background-color: #10b981;
}

.tactical-status-tactical {
    background-color: var(--site-primary);
}

/* Tactical Coordinates */
.tactical-coordinates {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--site-text-muted);
    text-align: right;
}

/* Tactical Scan Lines */
.tactical-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
    animation: tactical-scan-line 3s infinite;
}

.tactical-scan-line-bottom {
    animation-delay: 1.5s;
}

@keyframes tactical-scan-line {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tactical Overlay Pattern */
.tactical-overlay {
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ff6b35" fill-opacity="0.3"><circle cx="30" cy="30" r="1"/></g><g fill="%23ff6b35" fill-opacity="0.1"><circle cx="15" cy="15" r="0.5"/></g><g fill="%23ff6b35" fill-opacity="0.1"><circle cx="45" cy="45" r="0.5"/></g></svg>');
    opacity: 0.2;
}

/* Tactical Glitch Effect */
.tactical-glitch {
    position: relative;
    overflow: hidden;
}

.tactical-glitch::before,
.tactical-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    color: var(--site-primary);
    mix-blend-mode: screen;
    opacity: 0;
    animation: tactical-glitch-anim 0.3s infinite;
}

.tactical-glitch::after {
    color: #00ff00;
    animation-delay: 0.1s;
}

@keyframes tactical-glitch-anim {
    0% {
        transform: translate(0);
        opacity: 0;
    }
    20% {
        transform: translate(-2px, 2px);
        opacity: 1;
    }
    40% {
        transform: translate(-2px, -2px);
        opacity: 1;
    }
    60% {
        transform: translate(2px, 2px);
        opacity: 1;
    }
    80% {
        transform: translate(2px, -2px);
        opacity: 1;
    }
    100% {
        transform: translate(0);
        opacity: 0;
    }
}

/* Tactical HUD Elements */
.tactical-hud {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 20;
}

.tactical-hud-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    text-align: right;
    z-index: 20;
}

/* Tactical Data Display */
.tactical-data {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--site-text-muted);
    line-height: 1.2;
}

/* Responsive Tactical Elements */
@media (max-width: 768px) {
    .tactical-hud {
        top: 1rem;
        left: 1rem;
    }
    
    .tactical-hud-right {
        top: 1rem;
        right: 1rem;
    }
    
    .tactical-status {
        font-size: 0.625rem;
    }
    
    .tactical-data {
        font-size: 0.625rem;
    }
}

/* Tactical Animation Delays */
.tactical-delay-1 { animation-delay: 0.5s; }
.tactical-delay-2 { animation-delay: 1s; }
.tactical-delay-3 { animation-delay: 1.5s; }
.tactical-delay-4 { animation-delay: 2s; }

/* ========================================
   PARTIES SPECIFIC STYLES
   ======================================== */

/* Party Cards */
.party-card {
    transition: all 0.3s ease;
    border: 1px solid var(--site-gray);
}

.party-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--site-primary);
}

.party-card-header {
    background: linear-gradient(135deg, var(--site-primary), var(--site-accent));
    color: white;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.party-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.party-card-content {
    padding: 1.5rem;
}

.party-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--site-text-muted);
    font-size: 0.875rem;
}

.party-info-item svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: var(--site-primary);
}

.party-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.party-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.party-badge-difficulty {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--site-primary);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.party-badge-available {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.party-badge-full {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.party-badge-past {
    background-color: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

/* Party Registration System */
.party-registration {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.party-registration-status {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.party-registration-status.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.party-registration-status.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.party-registration-status.warning {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.party-registration-status.info {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.party-participants {
    margin-top: 1.5rem;
}

.party-participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.party-participant {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.party-participant:hover {
    border-color: var(--site-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.party-participant-avatar {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--site-primary), var(--site-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.party-participant-info {
    flex: 1;
}

.party-participant-name {
    font-weight: 500;
    color: var(--site-text);
    margin-bottom: 0.125rem;
}

.party-participant-email {
    font-size: 0.75rem;
    color: var(--site-text-muted);
}

/* Party Archive Filters */
.party-filters {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.party-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.party-filter-group {
    display: flex;
    flex-direction: column;
}

.party-filter-label {
    font-weight: 500;
    color: var(--site-text);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.party-filter-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: white;
    color: var(--site-text);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.party-filter-select:focus {
    outline: none;
    border-color: var(--site-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Party Archive Cards */
.party-archive-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.party-archive-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--site-primary);
}

.party-archive-content {
    padding: 1.5rem;
}

.party-archive-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.party-archive-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--site-text);
    margin: 0;
}

.party-archive-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.party-archive-title a:hover {
    color: var(--site-primary);
}

.party-archive-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--site-primary);
    margin: 0;
}

.party-archive-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--site-text-muted);
}

.party-archive-meta-item {
    display: flex;
    align-items: center;
}

.party-archive-meta-item svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: var(--site-primary);
}

.party-archive-excerpt {
    color: var(--site-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.party-archive-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.party-archive-organizer {
    font-size: 0.875rem;
    color: var(--site-text-muted);
}

.party-archive-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--site-primary);
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.party-archive-button:hover {
    background: var(--site-accent);
    color: white;
    transform: translateY(-1px);
}

.party-archive-button svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

/* Responsive Design for Parties */
@media (max-width: 768px) {
    .party-filters-grid {
        grid-template-columns: 1fr;
    }
    
    .party-archive-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .party-archive-price {
        margin-top: 0.5rem;
    }
    
    .party-archive-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .party-archive-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .party-participants-grid {
        grid-template-columns: 1fr;
    }
    
    .party-participant {
        flex-direction: column;
        text-align: center;
    }
    
    .party-participant-avatar {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Animation for party cards */
@keyframes partyCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.party-card,
.party-archive-card {
    animation: partyCardFadeIn 0.5s ease-out;
}

/* Loading states */
.party-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--site-text-muted);
}

.party-loading::after {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--site-primary);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

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

/* Custom Airsoft-Locator Colors */
:root {
    --airsoft-locator-olive: #8B9C6A;
    --airsoft-locator-dark-gray: #222222;
    --airsoft-locator-red: #FF0000;
}

/* Search Bar - Exact Airsoft-Locator Style */
.site-header input[type="text"] {
    background-color: rgb(245, 245, 245) !important;
    border: 1px solid rgb(245, 245, 245) !important;
    border-radius: 0 !important;
    padding: 11px 30px !important;
    font-size: 16px !important;
    height: 48px !important;
    width: 100% !important;
}

.site-header input[type="text"]:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: rgb(245, 245, 245) !important;
}

.site-header input[type="text"]::placeholder {
    color: #999 !important;
}

/* Search Button - Exact Airsoft-Locator Color */
.site-header button[style*="background-color: rgb(142, 139, 94)"] {
    background-color: rgb(142, 139, 94) !important;
    color: white !important;
    border: none !important;
    border-radius: 0 !important;
    font-weight: bold !important;
    font-size: 14px !important;
    padding: 0 24px !important;
    height: 48px !important;
    text-transform: uppercase !important;
}

.site-header button[style*="background-color: rgb(142, 139, 94)"]:hover {
    background-color: rgb(120, 117, 80) !important;
}

/* Navigation Menu - Exact Airsoft-Locator Style */
.navigation-bar nav a {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 17px 20px !important;
    color: rgb(0, 0, 0) !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
}

.navigation-bar nav a:hover {
    background-color: rgb(244, 244, 244) !important;
    color: rgb(0, 0, 0) !important;
}

/* Navigation Active State */
.navigation-bar nav a[style*="background-color: rgb(244, 244, 244)"] {
    background-color: rgb(244, 244, 244) !important;
}

/* Navigation Container */
.navigation-bar nav {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
}
.user-icon {
    margin-left: 0 !important;
}
/* User Icons Hover */
.user-icon:hover {
    color: var(--airsoft-locator-olive) !important;
}

/* Top Bar Styles */
.tactical-top-bar {
    background: #222222;
    border-bottom: 1px solid #333333;
    font-size: 0.875rem;
    font-weight: 500;
}

.tactical-contact {
    color: #ffffff;
    transition: color 0.3s ease;
}

.tactical-contact:hover {
    color: #8B9C6A;
}

.tactical-phone {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.tactical-icon {
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 2px;
}

.tactical-icon:hover {
    color: #8B9C6A !important;
    background-color: rgba(139, 156, 106, 0.1);
    transform: scale(1.1);
}

.tactical-cart {
    color: #ffffff;
    transition: color 0.3s ease;
}

.tactical-cart:hover {
    color: #8B9C6A;
}

/* Navigation Bar Styles */
.navigation-bar {
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

/* Header Separator Line */
.site-header {
    border-bottom: 1px solid #e5e7eb;
}

/* Logo Styles */
.site-header .logo-container {
    transition: transform 0.3s ease;
}

.site-header .logo-container:hover {
    transform: scale(1.05);
}

/* Navigation Styles */
.site-header nav a {
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.site-header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    transition: width 0.3s ease;
}

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

.site-header nav a:hover {
    color: #f97316;
    text-shadow: 0 0 8px rgba(249, 115, 22, 0.3);
}

/* Mega Menu Styles */
.group:hover .group-hover\:opacity-100 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.group:hover .group-hover\:visible {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #e5e7eb;
}

.mega-menu h3 {
    color: #f97316;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
}

.mega-menu h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.mega-menu ul li a {
    color: #6b7280;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.mega-menu ul li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #f97316;
    opacity: 0;
    transition: all 0.3s ease;
}

.mega-menu ul li a:hover {
    color: #111827;
    padding-left: 1.5rem;
}

.mega-menu ul li a:hover::before {
    opacity: 1;
}

/* Search Bar Styles */
.search-bar-container {
    position: relative;
}

.search-bar-container input {
    background: #f9fafb;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
}

.search-bar-container input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    background: #ffffff;
}

.search-bar-container input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.search-bar-container svg {
    transition: color 0.3s ease;
}

.search-bar-container:focus-within svg {
    color: #f97316;
}

/* User Menu Styles */
.user-menu-button {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.user-menu-button:hover {
    background-color: rgba(249, 115, 22, 0.1);
    transform: translateY(-1px);
}

.user-menu-dropdown {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.user-menu-dropdown a {
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0.25rem 0.5rem;
}

.user-menu-dropdown a:hover {
    background-color: rgba(249, 115, 22, 0.1);
    transform: translateX(4px);
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-badge {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

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

/* Mobile Menu Styles */
.mobile-menu {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu a {
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
}

.mobile-menu a:hover {
    background-color: rgba(249, 115, 22, 0.1);
    transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mega-menu {
        width: 100vw;
        max-width: none;
        left: -1rem;
        right: -1rem;
    }
}

@media (max-width: 768px) {
    .tactical-top-bar {
        font-size: 0.75rem;
    }
    
    .tactical-contact {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .site-header nav a {
        font-size: 0.875rem;
    }
    
    .mega-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

@media (max-width: 640px) {
    .tactical-top-bar .container {
        padding: 0 1rem;
    }
    
    .site-header .container {
        padding: 0 1rem;
    }
}

/* Animation Enhancements */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu,
.user-menu-dropdown {
    animation: slideDown 0.3s ease-out;
}

/* Focus States for Accessibility */
.site-header button:focus,
.site-header a:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .site-header {
        border-bottom: 3px solid #f59e0b;
    }
    
    .mega-menu,
    .user-menu-dropdown {
        border: 2px solid #f59e0b;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .site-header *,
    .mega-menu *,
    .user-menu-dropdown * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Scroll Effects */
.site-header {
    transition: transform 0.3s ease-in-out;
}

.site-header.scrolled {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}


/* Enhanced Hover Effects */
.tactical-icon,
.user-menu-button,
.cart-icon {
    position: relative;
    overflow: hidden;
}

.tactical-icon::before,
.user-menu-button::before,
.cart-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    transition: left 0.5s ease;
}

.tactical-icon:hover::before,
.user-menu-button:hover::before,
.cart-icon:hover::before {
    left: 100%;
}

/* Mega Menu Enhanced Animation */
.mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Staggered Animation for Mega Menu Items */
.mega-menu .space-y-4 > * {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.3s ease forwards;
}

.mega-menu .space-y-4 > *:nth-child(1) { animation-delay: 0.1s; }
.mega-menu .space-y-4 > *:nth-child(2) { animation-delay: 0.2s; }
.mega-menu .space-y-4 > *:nth-child(3) { animation-delay: 0.3s; }
.mega-menu .space-y-4 > *:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Bar Enhanced Focus */
.search-bar-container {
    position: relative;
}

.search-bar-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    transition: width 0.3s ease;
}

.search-bar-container:focus-within::after {
    width: 100%;
}

/* Mobile Menu Slide Animation */
.mobile-menu {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu:not(.hidden) {
    transform: translateY(0);
}

/* Enhanced Cart Badge */
.cart-badge {
    position: relative;
    overflow: hidden;
}

.cart-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Top Bar Enhanced */
.tactical-top-bar {
    position: relative;
    overflow: hidden;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .mega-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        border-radius: 0;
        transform: translateY(-100%);
    }
    
    .group:hover .mega-menu {
        transform: translateY(0);
    }
    
    .mega-menu .container {
        padding: 2rem 1rem;
        height: 100%;
        overflow-y: auto;
    }
    
    .mega-menu .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Performance Optimizations */
.site-header,
.mega-menu,
.user-menu-dropdown {
    will-change: transform, opacity;
}

.tactical-icon,
.user-menu-button,
.cart-icon {
    will-change: transform, background-color;
}

/* Print Styles */
@media print {
    .tactical-top-bar,
    .site-header {
        background: none !important;
        color: #000 !important;
        box-shadow: none !important;
    }
    
    .mega-menu,
    .user-menu-dropdown,
    .mobile-menu {
        display: none !important;
    }
}

/* ========================================
   SEARCH COMPONENT STYLES - AIRSOFT-LOCATOR
   ======================================== */

/* Search Component Container */
.search-component {
    position: relative;
    z-index: 1000;
}

/* Search Input Styling */
#airsoft-search-input {
    background-color: #F5F5F5;
    border: 2px solid #E0E0E0;
    color: #1A1A1A;
    transition: all 0.3s ease;
}

#airsoft-search-input:focus {
    background-color: #FFFFFF;
    border-color: #9B9472;
    box-shadow: 0 0 0 3px rgba(155, 148, 114, 0.1);
}

#airsoft-search-input::placeholder {
    color: #999999;
}

/* Search Results Dropdown */
#search-results {
    background-color: #FFFFFF;
    border: 2px solid #E0E0E0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    overflow: hidden;
}

/* Search Result Items - Style Airsoft-Locator */
.airsoft-locator-search-result-item {
    display: block;
    position: relative;
    padding: 20px 24px;
    border-bottom: 2px solid #F5F5F5;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.airsoft-locator-search-result-item:hover {
    background: linear-gradient(to right, #FFFEF8, #FFFFFF);
    border-left: 4px solid #9B9472;
    padding-left: 20px;
    transform: translateX(4px);
}

.airsoft-locator-search-result-item:last-child {
    border-bottom: none;
}

/* Search Result Header */
.search-result-header {
    margin-bottom: 8px;
}

/* Search Result Badge Styles */
.search-result-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 0;
    background: #1A1A1A;
    color: #FFFFFF;
}

/* Search Result Title */
.search-result-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #1A1A1A;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.airsoft-locator-search-result-item:hover .search-result-title {
    color: #9B9472;
}

/* Search Result Excerpt */
.search-result-excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

/* Search Result Meta */
.search-result-meta {
    font-size: 13px;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Search Result Arrow */
.search-result-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9B9472;
    opacity: 0;
    transition: all 0.3s ease;
}

.airsoft-locator-search-result-item:hover .search-result-arrow {
    opacity: 1;
    right: 24px;
}

/* Search Highlight */
.search-highlight {
    background: #9B9472;
    color: #FFFFFF;
    padding: 2px 4px;
    font-weight: 700;
}

/* No Results Styling */
#search-no-results {
    background-color: #FFFFFF;
    border: 2px solid #E0E0E0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    text-align: center;
    padding: 40px 20px;
}

#search-no-results p {
    color: #666666;
    font-size: 16px;
}

#search-no-results svg {
    color: #999999;
}

/* Loading Spinner */
#search-loading .animate-spin {
    animation: spin 1s linear infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-component {
        position: relative;
    }
    
    #search-results,
    #search-no-results {
        position: fixed;
        top: 80px;
        left: 1rem;
        right: 1rem;
        max-height: 60vh;
        z-index: 9999;
    }
    
    .airsoft-locator-search-result-item {
        padding: 16px 20px;
    }
    
    .search-result-title {
        font-size: 16px;
    }
    
    .search-result-excerpt {
        font-size: 13px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    #search-results {
        max-height: 50vh;
    }
}

/* Search Result Icons */
.search-result-item .w-8.h-8 {
    background: linear-gradient(135deg, var(--search-primary), var(--site-accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Focus States for Accessibility */
.airsoft-locator-search-result-item:focus {
    outline: 2px solid #9B9472;
    outline-offset: 2px;
}

/* Animation for Results Appearance */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#search-results.show,
#search-no-results.show {
    animation: slideDown 0.3s ease-out;
}

/* Search Input Focus Enhancement */
#airsoft-search-input:focus {
    transform: scale(1.02);
}

/* Custom Scrollbar for Search Results */
#search-results::-webkit-scrollbar {
    width: 6px;
}

#search-results::-webkit-scrollbar-track {
    background: #F5F5F5;
}

#search-results::-webkit-scrollbar-thumb {
    background: #9B9472;
    border-radius: 0;
}

#search-results::-webkit-scrollbar-thumb:hover {
    background: #8A8361;
}

/* ========================================
   New Arrivals Section
   ======================================== */
.new-arrivals-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}

.new-arrivals-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.new-arrivals-header {
    text-align: center;
    margin-bottom: 60px;
}

.new-arrivals-title {
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
}

.new-arrivals-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

/* Grille de produits */
.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Carte produit */
.new-arrival-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.new-arrival-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Image produit */
.new-arrival-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* Ratio 3:2 */
    overflow: hidden;
    background: #F5F5F5;
}

.new-arrival-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.new-arrival-card:hover .new-arrival-image img {
    transform: scale(1.08);
}

.new-arrival-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.new-arrival-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: #D4AF37;
    color: #1A1A1A;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
}

/* Contenu produit */
.new-arrival-content {
    padding: 32px 28px;
    text-align: center;
}

.new-arrival-product-title {
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0 0 16px 0;
    line-height: 1.3;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Métadonnées des parties */
.new-arrival-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.new-arrival-date,
.new-arrival-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.new-arrival-date svg,
.new-arrival-location svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #9B9472;
}

.new-arrival-price {
    font-size: 20px;
    font-weight: 700;
    color: #9B9472;
    margin: 0 0 24px 0;
}

/* Message vide */
.new-arrivals-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.new-arrivals-empty p {
    font-size: 18px;
    color: #666666;
    margin: 0;
}

/* Bouton */
.new-arrival-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: #D4AF37;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.new-arrival-btn:hover {
    background-color: #C29F2F;
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.new-arrival-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.new-arrival-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .new-arrivals-grid {
        gap: 24px;
    }
    
    .new-arrival-product-title {
        font-size: 20px;
        min-height: 55px;
    }
}

@media screen and (max-width: 1024px) {
    .new-arrivals-section {
        padding: 80px 0;
    }
    
    .new-arrivals-title {
        font-size: 42px;
    }
    
    .new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 768px) {
    .new-arrivals-section {
        padding: 60px 0;
    }
    
    .new-arrivals-container {
        padding: 0 24px;
    }
    
    .new-arrivals-header {
        margin-bottom: 40px;
    }
    
    .new-arrivals-title {
        font-size: 36px;
    }
    
    .new-arrivals-subtitle {
        font-size: 14px;
    }
    
    .new-arrivals-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .new-arrival-product-title {
        font-size: 20px;
        min-height: auto;
    }
}

@media screen and (max-width: 480px) {
    .new-arrivals-section {
        padding: 50px 0;
    }
    
    .new-arrivals-title {
        font-size: 28px;
    }
    
    .new-arrival-content {
        padding: 24px 20px;
    }
    
    .new-arrival-product-title {
        font-size: 18px;
    }
    
    .new-arrival-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* ========================================
   Airsoft-Locator Hero Section - 2 Columns
   ======================================== */
.airsoft-locator-hero-section {
    width: 100%;
    overflow: hidden;
}

.airsoft-locator-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
}

/* Colonne Texte - Gauche */
.airsoft-locator-hero-content {
    background-color: #9B9472;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
}

.airsoft-locator-hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/topographic-pattern.png');
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.02;
    z-index: 1;
}

.airsoft-locator-hero-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.airsoft-locator-hero-subtitle {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.airsoft-locator-hero-title {
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    font-style: italic;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    word-spacing: 0.05em;
}

/* Colonne Image/Map - Droite */
.airsoft-locator-hero-image {
    position: relative;
    overflow: hidden;
    background-color: #E8E5DA;
}

.airsoft-locator-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0%, transparent 15%);
    pointer-events: none;
    z-index: 1;
}

.airsoft-locator-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease-out;
}

.airsoft-locator-hero-image:hover img {
    transform: scale(1.02);
}

/* Map styling in hero section */
.airsoft-locator-hero-map {
    display: flex;
    align-items: stretch;
}

.airsoft-locator-hero-map .airsoft-map-container {
    width: 100%;
    height: 100% !important;
    min-height: 580px;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.airsoft-locator-hero-map .leaflet-container {
    height: 100% !important;
    width: 100%;
}

/* Animation fade in up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .airsoft-locator-hero-content {
        padding: 70px 60px;
    }
    
    .airsoft-locator-hero-title {
        font-size: 46px;
    }
}

@media screen and (max-width: 1024px) {
    .airsoft-locator-hero-content {
        padding: 60px 50px;
    }
    
    .airsoft-locator-hero-title {
        font-size: 42px;
    }
    
    .airsoft-locator-hero-subtitle {
        font-size: 12px;
        letter-spacing: 2.5px;
    }
}

@media screen and (max-width: 768px) {
    .airsoft-locator-hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .airsoft-locator-hero-content {
        padding: 80px 50px;
        order: 1;
        background-size: 600px 600px;
    }
    
    .airsoft-locator-hero-image {
        min-height: 500px;
        order: 2;
    }
    
    .airsoft-locator-hero-map .airsoft-map-container {
        min-height: 500px;
    }
    
    .airsoft-locator-hero-title {
        font-size: 38px;
    }
}

@media screen and (max-width: 480px) {
    .airsoft-locator-hero-content {
        padding: 60px 30px;
        background-size: 500px 500px;
    }
    
    .airsoft-locator-hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }
    
    .airsoft-locator-hero-title {
        font-size: 30px;
        line-height: 1.2;
    }
    
    .airsoft-locator-hero-image {
        min-height: 400px;
    }
    
    .airsoft-locator-hero-map .airsoft-map-container {
        min-height: 400px;
    }
}

/* ========================================
   Airsoft-Locator Footer
   ======================================== */
.airsoft-locator-footer {
    width: 100%;
    background-color: #1A1A1A;
    color: #FFFFFF;
}

.airsoft-locator-footer-main {
    padding: 80px 0 60px 0;
    background-color: #1A1A1A;
}

.airsoft-locator-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Brand Section */
.airsoft-locator-footer-brand {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.airsoft-locator-footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 1px;
}

.airsoft-locator-footer-about-link {
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.airsoft-locator-footer-about-link:hover {
    color: #D4AF37;
}

/* Contact & Social Section */
.airsoft-locator-footer-contact {
    grid-column: span 2;
}

.airsoft-locator-footer-address {
    font-size: 14px;
    color: #CCCCCC;
    margin: 0 0 12px 0;
}

.airsoft-locator-footer-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.airsoft-locator-footer-phone,
.airsoft-locator-footer-email {
    font-size: 14px;
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.airsoft-locator-footer-phone:hover,
.airsoft-locator-footer-email:hover {
    color: #C29F2F;
}

.airsoft-locator-footer-social {
    display: flex;
    gap: 12px;
}

.airsoft-locator-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.airsoft-locator-social-icon:hover {
    background-color: #D4AF37;
    transform: translateY(-3px);
}

.airsoft-locator-social-icon svg {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
}

/* Links Columns */
.airsoft-locator-footer-links {
    grid-column: span 1;
}

.airsoft-locator-footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    letter-spacing: 1px;
}

.airsoft-locator-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.airsoft-locator-footer-menu li a {
    font-size: 14px;
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.airsoft-locator-footer-menu li a:hover {
    color: #D4AF37;
    transform: translateX(4px);
}

/* Info Box */
.airsoft-locator-footer-info-box {
    grid-column: span 1;
}

.airsoft-locator-footer-secure {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}

.airsoft-locator-footer-hours {
    font-size: 13px;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

/* Footer Bottom */
.airsoft-locator-footer-bottom {
    padding: 24px 0;
    background-color: #0F0F0F;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.airsoft-locator-footer-copyright {
    font-size: 13px;
    color: #999999;
    text-align: center;
    margin: 0;
}

.airsoft-locator-footer-copyright a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.airsoft-locator-footer-copyright a:hover {
    color: #D4AF37;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .airsoft-locator-footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .airsoft-locator-footer-brand {
        grid-column: span 2;
    }
    
    .airsoft-locator-footer-contact {
        grid-column: span 2;
    }
    
    .airsoft-locator-footer-info-box {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .airsoft-locator-footer-main {
        padding: 60px 0 40px 0;
    }
    
    .airsoft-locator-footer-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px;
        gap: 32px;
    }
    
    .airsoft-locator-footer-brand,
    .airsoft-locator-footer-contact,
    .airsoft-locator-footer-links,
    .airsoft-locator-footer-info-box {
        grid-column: span 1;
    }
}

@media screen and (max-width: 480px) {
    .airsoft-locator-footer-main {
        padding: 40px 0 30px 0;
    }
    
    .airsoft-locator-footer-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
        gap: 24px;
    }
    
    .airsoft-locator-footer-brand,
    .airsoft-locator-footer-contact,
    .airsoft-locator-footer-links,
    .airsoft-locator-footer-info-box {
        grid-column: span 1;
    }
    
    .airsoft-locator-footer-social {
        justify-content: flex-start;
    }
    
    /* Ajuster les tailles de texte pour mieux s'adapter aux 2 colonnes */
    .airsoft-locator-footer-title {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .airsoft-locator-footer-menu li a,
    .airsoft-locator-footer-email,
    .airsoft-locator-footer-secure,
    .airsoft-locator-footer-hours {
        font-size: 0.8125rem;
    }
    
    .airsoft-locator-footer-logo h3 {
        font-size: 1.125rem;
    }
    
    .airsoft-locator-footer-bottom {
        padding: 20px 0;
    }
    
    .airsoft-locator-footer-copyright {
        font-size: 0.75rem;
        text-align: center;
    }
}

/* ========================================
   Airsoft-Locator Single Partie
   ======================================== */

/* Hero Section */
.airsoft-locator-single-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 100px 0 60px 0;
}

.airsoft-locator-single-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.airsoft-locator-single-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.airsoft-locator-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Breadcrumb */
.airsoft-locator-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.airsoft-locator-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.airsoft-locator-breadcrumb a:hover {
    color: #D4AF37;
}

.airsoft-locator-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.airsoft-locator-breadcrumb-current {
    color: rgba(255, 255, 255, 0.7);
}

/* Author Actions */
.airsoft-locator-author-actions {
    margin-bottom: 20px;
}

.airsoft-locator-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgba(212, 175, 55, 0.2);
    color: #FFFFFF;
    border: 2px solid #D4AF37;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.airsoft-locator-edit-btn:hover {
    background-color: #D4AF37;
    color: #1A1A1A;
    transform: translateY(-2px);
}

.airsoft-locator-edit-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Titre */
.airsoft-locator-single-title {
    font-size: 56px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

/* Métadonnées */
.airsoft-locator-single-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.airsoft-locator-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 15px;
}

.airsoft-locator-meta-item svg {
    width: 18px;
    height: 18px;
    fill: #D4AF37;
}

.airsoft-locator-meta-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: #D4AF37;
    color: #1A1A1A;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
}

.airsoft-locator-meta-badge.airsoft-locator-status-past {
    background-color: #6C757D;
    color: #FFFFFF;
}

.airsoft-locator-meta-badge.airsoft-locator-status-full {
    background-color: #DC3545;
    color: #FFFFFF;
}

.airsoft-locator-meta-badge.airsoft-locator-status-open {
    background-color: #28A745;
    color: #FFFFFF;
}

/* Main Content */
.airsoft-locator-single-main {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.airsoft-locator-single-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.airsoft-locator-single-content {
    background: #FFFFFF;
}

/* Info Cards */
.airsoft-locator-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.airsoft-locator-info-card {
    background: linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%);
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #E8E8E8;
    transition: all 0.3s ease;
}

.airsoft-locator-info-card:hover {
    transform: translateY(-4px);
    border-color: #D4AF37;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.airsoft-locator-info-card.full {
    border-color: #DC3545;
}

.airsoft-locator-info-card.full .airsoft-locator-info-icon {
    color: #DC3545;
}

.airsoft-locator-info-card.full .airsoft-locator-info-icon svg {
    fill: #DC3545;
}

.airsoft-locator-info-icon {
    display: flex;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 12px;
}

.airsoft-locator-info-icon svg {
    width: 32px;
    height: 32px;
    fill: #D4AF37;
}

.airsoft-locator-info-label {
    font-size: 13px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.airsoft-locator-info-value {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
}

/* Content Sections */
.airsoft-locator-content-section {
    margin-bottom: 48px;
}

.airsoft-locator-section-title {
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 3px solid #D4AF37;
}

.airsoft-locator-section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 20px 0;
}

.airsoft-locator-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.airsoft-locator-content-text p {
    margin-bottom: 16px;
}

/* Details Grid */
.airsoft-locator-details-grid {
    margin-bottom: 60px;
}

.airsoft-locator-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.airsoft-locator-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: #F8F8F8;
    border-radius: 6px;
    border-left: 4px solid #D4AF37;
}

.airsoft-locator-detail-label {
    font-size: 13px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.airsoft-locator-detail-label svg {
    width: 18px;
    height: 18px;
    fill: #D4AF37;
    flex-shrink: 0;
}

.airsoft-locator-organizer-name {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.airsoft-locator-detail-value {
    font-size: 15px;
    color: #1A1A1A;
}

.airsoft-locator-detail-value a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.airsoft-locator-detail-value a:hover {
    color: #C29F2F;
}

/* Rules Box */
.airsoft-locator-rules-box {
    background: #F8F8F8;
    padding: 24px;
    border-radius: 8px;
    border: 2px solid #E8E8E8;
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
}

/* Registration Section */
.airsoft-locator-registration-section {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
    padding: 48px;
    border-radius: 12px;
    border: 2px solid #E8E8E8;
}

/* Alerts */
.airsoft-locator-alert {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 600;
}

.airsoft-locator-alert svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.airsoft-locator-alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 2px solid #C3E6CB;
}

.airsoft-locator-alert-danger {
    background-color: #F8D7DA;
    color: #721C24;
    border: 2px solid #F5C6CB;
}

.airsoft-locator-alert-warning {
    background-color: #FFF3CD;
    color: #856404;
    border: 2px solid #FFEEBA;
}

.airsoft-locator-alert-info {
    background-color: #D1ECF1;
    color: #0C5460;
    border: 2px solid #BEE5EB;
}

/* Buttons */
.airsoft-locator-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.airsoft-locator-btn-primary {
    background-color: #D4AF37;
    color: #1A1A1A;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.airsoft-locator-btn-primary:hover {
    background-color: #C29F2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.airsoft-locator-btn-secondary {
    background-color: #6C757D;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.airsoft-locator-btn-secondary:hover {
    background-color: #5A6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 117, 125, 0.4);
}

.airsoft-locator-form-inline {
    display: inline-block;
}

/* Participants */
.airsoft-locator-participants-section {
    margin-top: 48px;
}

.airsoft-locator-participants-count {
    font-size: 18px;
    color: #666666;
    font-weight: 600;
    font-style: normal;
}

.airsoft-locator-progress-bar {
    width: 100%;
    height: 12px;
    background-color: #E8E8E8;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px 0 24px 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.airsoft-locator-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37 0%, #C29F2F 100%);
    transition: width 0.5s ease;
    position: relative;
}

.airsoft-locator-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.airsoft-locator-participants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.airsoft-locator-participant-card {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #E8E8E8;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.airsoft-locator-participant-card:hover {
    border-color: #D4AF37;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.airsoft-locator-participant-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #C29F2F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

.airsoft-locator-participant-info {
    flex: 1;
    text-align: left;
}

.airsoft-locator-participant-name {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.airsoft-locator-participant-badge {
    display: inline-block;
    padding: 4px 10px;
    background-color: #D4AF37;
    color: #1A1A1A;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
}

.airsoft-locator-no-participants {
    text-align: center;
    padding: 60px 40px;
    background: #F8F8F8;
    border-radius: 12px;
    border: 2px dashed #E8E8E8;
}

.airsoft-locator-no-participants svg {
    width: 64px;
    height: 64px;
    fill: #CCCCCC;
    margin: 0 auto 20px auto;
}

.airsoft-locator-no-participants p {
    font-size: 16px;
    color: #666666;
    margin: 0 0 8px 0;
}

.airsoft-locator-no-participants-sub {
    font-size: 14px !important;
    color: #999999 !important;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .airsoft-locator-single-title {
        font-size: 48px;
    }
    
    .airsoft-locator-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .airsoft-locator-participants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .airsoft-locator-single-container {
        padding: 0 20px;
    }
    
    .airsoft-locator-single-hero {
        min-height: 400px;
        padding: 80px 0 40px 0;
    }
    
    .airsoft-locator-single-title {
        font-size: 36px;
    }
    
    .airsoft-locator-single-main {
        padding: 60px 0;
    }
    
    .airsoft-locator-info-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .airsoft-locator-registration-section {
        padding: 32px 20px;
    }
    
    .airsoft-locator-participants-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .airsoft-locator-no-participants {
        padding: 40px 24px;
    }
}

@media screen and (max-width: 576px) {
    /* Single joueur - padding optimisé pour mobile */
    .airsoft-locator-single-container {
        padding: 0 12px;
    }
    
    .airsoft-locator-single-hero {
        min-height: 350px;
        padding: 60px 0 32px 0;
    }
    
    .airsoft-locator-single-title {
        font-size: 24px;
    }
    
    .airsoft-locator-single-meta {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .airsoft-locator-meta-item {
        font-size: 13px;
    }
    
    .airsoft-locator-meta-item svg {
        width: 14px;
        height: 14px;
    }
    
    .airsoft-locator-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .airsoft-locator-section-subtitle {
        font-size: 18px;
    }
    
    .airsoft-locator-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .airsoft-locator-info-cards {
        gap: 12px;
    }
    
    .airsoft-locator-info-card {
        padding: 16px;
    }
    
    .airsoft-locator-participants-grid {
        grid-template-columns: 1fr;
    }
    
    .airsoft-locator-registration-section {
        padding: 24px 12px;
    }
    
    .airsoft-locator-single-main {
        padding: 40px 0;
    }
    
    /* Breadcrumb mobile */
    .airsoft-locator-breadcrumb {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    /* Photo de profil dans hero - mobile */
    .airsoft-locator-single-hero-content > div > div[style*="display: flex"] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem !important;
    }
    
    .airsoft-locator-single-hero-content > div > div[style*="display: flex"] > div[style*="width: 100px"] {
        width: 80px !important;
        height: 80px !important;
    }
}

/* ========================================
   Page de Modification de Partie
   ======================================== */

.airsoft-locator-edit-party-page {
    background-color: #F8F8F8;
    min-height: 100vh;
    padding: 60px 0;
}

/* Success Message */
.airsoft-locator-success-message {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background-color: #D4EDDA;
    border: 2px solid #C3E6CB;
    border-radius: 8px;
    color: #155724;
    font-weight: 600;
    margin-bottom: 32px;
    animation: slideDown 0.5s ease;
    position: relative;
}

.airsoft-locator-success-message svg {
    width: 24px;
    height: 24px;
    fill: #28A745;
    flex-shrink: 0;
}

/* Error Message */
.airsoft-locator-error-message {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background-color: #F8D7DA;
    border: 2px solid #F5C6CB;
    border-radius: 8px;
    color: #721C24;
    font-weight: 600;
    margin-bottom: 32px;
    animation: slideDown 0.5s ease;
    position: relative;
}

.airsoft-locator-error-message svg {
    width: 24px;
    height: 24px;
    fill: #DC3545;
    flex-shrink: 0;
}

.airsoft-locator-error-message div {
    flex: 1;
}

.airsoft-locator-error-message span {
    font-weight: 400;
    display: block;
    margin-top: 8px;
}

.airsoft-locator-close-message {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #155724;
    cursor: pointer;
    padding: 4px 8px;
    transition: opacity 0.3s ease;
}

.airsoft-locator-close-message:hover {
    opacity: 0.7;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.airsoft-locator-edit-header {
    margin-bottom: 40px;
}

.airsoft-locator-edit-header-content {
    padding: 0 40px;
}

.airsoft-locator-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.airsoft-locator-back-btn:hover {
    color: #D4AF37;
}

.airsoft-locator-back-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.airsoft-locator-edit-title {
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0;
}

.airsoft-locator-edit-form {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.airsoft-locator-form-section {
    padding: 40px;
    border-bottom: 2px solid #F0F0F0;
}

.airsoft-locator-form-section:last-of-type {
    border-bottom: none;
}

.airsoft-locator-form-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #D4AF37;
}

.airsoft-locator-form-group {
    margin-bottom: 24px;
}

.airsoft-locator-form-group:last-child {
    margin-bottom: 0;
}

.airsoft-locator-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.airsoft-locator-form-input,
.airsoft-locator-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E8E8E8;
    border-radius: 6px;
    font-size: 15px;
    color: #1A1A1A;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.airsoft-locator-form-input:focus,
.airsoft-locator-form-textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.airsoft-locator-form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.airsoft-locator-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Banner Upload */
.airsoft-locator-banner-upload {
    border: 2px dashed #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
    background-color: #FAFAFA;
}

.airsoft-locator-current-banner {
    position: relative;
    min-height: 300px;
}

.airsoft-locator-current-banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.airsoft-locator-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.airsoft-locator-current-banner:hover .airsoft-locator-banner-overlay {
    opacity: 1;
}

.airsoft-locator-no-banner {
    text-align: center;
    padding: 60px 40px;
}

.airsoft-locator-no-banner svg {
    width: 64px;
    height: 64px;
    fill: #CCCCCC;
    margin: 0 auto 16px auto;
}

.airsoft-locator-no-banner p {
    font-size: 16px;
    color: #999999;
    margin: 0 0 24px 0;
}

.airsoft-locator-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #D4AF37;
    color: #1A1A1A;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.airsoft-locator-upload-btn:hover {
    background-color: #C29F2F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.airsoft-locator-upload-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.airsoft-locator-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #DC3545;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.airsoft-locator-remove-btn:hover {
    background-color: #C82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.airsoft-locator-remove-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Form Actions */
.airsoft-locator-form-actions {
    padding: 32px 40px;
    background: #F8F8F8;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.airsoft-locator-form-actions .airsoft-locator-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.airsoft-locator-form-actions .airsoft-locator-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive Edit Page */
@media screen and (max-width: 768px) {
    .airsoft-locator-edit-party-page {
        padding: 40px 0;
    }
    
    .airsoft-locator-edit-title {
        font-size: 32px;
    }
    
    .airsoft-locator-form-section {
        padding: 24px;
    }
    
    .airsoft-locator-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .airsoft-locator-form-actions {
        padding: 24px;
        flex-direction: column-reverse;
    }
    
    .airsoft-locator-form-actions .airsoft-locator-btn {
        width: 100%;
        justify-content: center;
    }
    
    .airsoft-locator-banner-overlay {
        opacity: 1;
    }
    
    .airsoft-locator-current-banner img {
        height: 200px;
    }
}

/* ========================================
   Composant Boutons - Style Airsoft-Locator
   ======================================== */

/* Bouton principal (doré style Airsoft-Locator) */
.airsoft-locator-btn,
.compte-btn-primary,
.empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: #9B9472;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.airsoft-locator-btn::after,
.compte-btn-primary::after,
.empty-btn::after {
    content: '»';
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.airsoft-locator-btn:hover,
.compte-btn-primary:hover,
.empty-btn:hover {
    background-color: #8A8361;
    transform: translateX(4px);
}

.airsoft-locator-btn:hover::after,
.compte-btn-primary:hover::after,
.empty-btn:hover::after {
    transform: translateX(4px);
}

.airsoft-locator-btn svg,
.compte-btn-primary svg,
.empty-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: currentColor;
}

/* Bouton secondaire (transparent avec bordure) */
.airsoft-locator-btn-secondary,
.compte-btn-edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: transparent;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.airsoft-locator-btn-secondary::after,
.compte-btn-edit::after {
    content: '»';
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.airsoft-locator-btn-secondary:hover,
.compte-btn-edit:hover {
    background-color: #1A1A1A;
    color: #FFFFFF;
    transform: translateX(4px);
}

.airsoft-locator-btn-secondary:hover::after,
.compte-btn-edit:hover::after {
    transform: translateX(4px);
}

.airsoft-locator-btn-secondary svg,
.compte-btn-edit svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: currentColor;
}

/* Bouton vert (success) */
.airsoft-locator-btn-success,
.compte-btn-view,
.item-btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: #1A1A1A;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.airsoft-locator-btn-success::after,
.compte-btn-view::after,
.item-btn-view::after {
    content: '»';
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.airsoft-locator-btn-success:hover,
.compte-btn-view:hover,
.item-btn-view:hover {
    background-color: #9B9472;
    color: #FFFFFF;
    transform: translateX(4px);
}

.airsoft-locator-btn-success:hover::after,
.compte-btn-view:hover::after,
.item-btn-view:hover::after {
    transform: translateX(4px);
}

/* Bouton danger (rouge) */
.airsoft-locator-btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: #DC3545;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.airsoft-locator-btn-danger::after {
    content: '»';
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.airsoft-locator-btn-danger:hover {
    background-color: #C82333;
    transform: translateX(4px);
}

.airsoft-locator-btn-danger:hover::after {
    transform: translateX(4px);
}

/* Bouton bleu (info) */
.item-btn-edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: #17A2B8;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.item-btn-edit::after {
    content: '»';
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.item-btn-edit:hover {
    background-color: #138496;
    transform: translateX(4px);
}

.item-btn-edit:hover::after {
    transform: translateX(4px);
}

/* Variantes de taille */
.airsoft-locator-btn-sm {
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 2px;
}

.airsoft-locator-btn-sm::after {
    font-size: 16px;
}

.airsoft-locator-btn-lg {
    padding: 22px 50px;
    font-size: 16px;
    letter-spacing: 4px;
}

.airsoft-locator-btn-lg::after {
    font-size: 24px;
}

/* Bouton pleine largeur */
.airsoft-locator-btn-block {
    width: 100%;
}

/* Bouton désactivé */
.airsoft-locator-btn:disabled,
.airsoft-locator-btn.disabled {
    background-color: #CCCCCC;
    border-color: #CCCCCC;
    color: #666666;
    cursor: not-allowed;
    transform: none;
}

.airsoft-locator-btn:disabled:hover,
.airsoft-locator-btn.disabled:hover {
    background-color: #CCCCCC;
    border-color: #CCCCCC;
    color: #666666;
    transform: none;
    box-shadow: none;
}

/* Groupe de boutons */
.airsoft-locator-btn-group {
    display: inline-flex;
    gap: 0;
}

.airsoft-locator-btn-group .airsoft-locator-btn {
    border-radius: 0;
}

.airsoft-locator-btn-group .airsoft-locator-btn:not(:last-child) {
    border-right: none;
}

.airsoft-locator-btn-group .airsoft-locator-btn:hover {
    z-index: 1;
    border-right: 2px solid #D4AF37;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .airsoft-locator-btn,
    .airsoft-locator-btn-secondary,
    .airsoft-locator-btn-success,
    .airsoft-locator-btn-danger,
    .compte-btn-primary,
    .compte-btn-edit,
    .compte-btn-view,
    .item-btn-edit {
        padding: 14px 28px;
        font-size: 12px;
        letter-spacing: 2px;
        gap: 8px;
    }
    
    .airsoft-locator-btn::after,
    .airsoft-locator-btn-secondary::after,
    .airsoft-locator-btn-success::after,
    .airsoft-locator-btn-danger::after,
    .compte-btn-primary::after,
    .compte-btn-edit::after,
    .compte-btn-view::after,
    .item-btn-edit::after {
        font-size: 16px;
    }
    
    .airsoft-locator-btn svg,
    .airsoft-locator-btn-secondary svg,
    .compte-btn-primary svg,
    .compte-btn-edit svg {
        width: 14px;
        height: 14px;
    }
}

/* ========================================
   Page Catégories Airsoft
   ======================================== */

.airsoft-locator-categories-page {
    background-color: #F8F8F8;
    min-height: 100vh;
}

/* Hero Section */
.airsoft-locator-categories-hero {
    background: linear-gradient(135deg, #9B9472 0%, #8A8361 100%);
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.airsoft-locator-categories-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/topographic-pattern.png');
    background-repeat: repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.airsoft-locator-categories-hero .airsoft-locator-single-container {
    position: relative;
    z-index: 2;
}

.airsoft-locator-categories-hero-title {
    font-size: 56px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.airsoft-locator-categories-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
    font-weight: 400;
}

/* Filtres / Onglets - Style Airsoft-Locator */
.airsoft-locator-categories-filters {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.airsoft-locator-filter-tab {
    background: none;
    border: none;
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    color: #CCCCCC;
}

.airsoft-locator-filter-tab:hover {
    color: #999999;
}

.airsoft-locator-filter-tab.active {
    color: #1A1A1A;
}

/* Compteur de résultats */
.airsoft-locator-results-count {
    text-align: center;
    padding: 0 0 32px 0;
    font-size: 18px;
    color: #666666;
    font-weight: 600;
}

/* Grille de cartes */
.airsoft-locator-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 80px;
}

.airsoft-locator-category-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.airsoft-locator-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Image de la carte */
.category-card-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Ratio 4:3 */
    overflow: hidden;
    background: #F0F0F0;
}

.category-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.airsoft-locator-category-card:hover .category-card-image img {
    transform: scale(1.05);
}

/* Icône de catégorie */
.category-card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
}

.category-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Contenu de la carte */
.category-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.category-card-title a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-card-title a:hover {
    color: #D4AF37;
}

/* Métadonnées */
.category-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666666;
}

.meta-item svg {
    width: 16px;
    height: 16px;
    fill: #D4AF37;
    flex-shrink: 0;
}

/* Prix */
.category-card-price {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 16px;
}

/* Lien de la carte */
.category-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.category-card-link:hover {
    gap: 12px;
}

.category-card-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Message aucun résultat */
.airsoft-locator-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
}

.airsoft-locator-no-results svg {
    width: 64px;
    height: 64px;
    fill: #CCCCCC;
    margin-bottom: 24px;
}

.airsoft-locator-no-results h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 12px 0;
}

.airsoft-locator-no-results p {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .airsoft-locator-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 992px) {
    .airsoft-locator-categories-hero-title {
        font-size: 48px;
    }
    
    .airsoft-locator-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .airsoft-locator-categories-hero {
        padding: 60px 0 40px 0;
    }
    
    .airsoft-locator-categories-hero-title {
        font-size: 36px;
    }
    
    .airsoft-locator-categories-hero-subtitle {
        font-size: 16px;
    }
    
    .airsoft-locator-categories-filters {
        padding: 32px 0;
        gap: 32px;
    }
    
    .airsoft-locator-filter-tab {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .airsoft-locator-categories-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .airsoft-locator-categories-hero-title {
        font-size: 28px;
    }
    
    .airsoft-locator-categories-filters {
        gap: 24px;
    }
    
    .airsoft-locator-filter-tab {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .airsoft-locator-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card-content {
        padding: 20px;
    }
}

/* ========================================
   Page Joueurs Airsoft
   ======================================== */

.airsoft-locator-joueurs-page {
    background-color: #F8F8F8;
    min-height: 100vh;
}

/* Hero Section */
.airsoft-locator-joueurs-hero {
    background: linear-gradient(135deg, #9B9472 0%, #8A8361 100%);
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.airsoft-locator-joueurs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/topographic-pattern.png');
    background-repeat: repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.airsoft-locator-joueurs-hero .airsoft-locator-single-container {
    position: relative;
    z-index: 2;
}

.airsoft-locator-joueurs-hero-title {
    font-size: 56px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.airsoft-locator-joueurs-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
    font-weight: 400;
}

/* Filtres / Onglets */
.airsoft-locator-joueurs-filters {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.airsoft-locator-joueur-filter-tab {
    background: none;
    border: none;
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    color: #CCCCCC;
}

.airsoft-locator-joueur-filter-tab:hover {
    color: #999999;
}

.airsoft-locator-joueur-filter-tab.active {
    color: #1A1A1A;
}

/* Compteur de résultats */
.airsoft-locator-joueurs-results-count {
    text-align: center;
    padding: 0 0 32px 0;
    font-size: 18px;
    color: #666666;
    font-weight: 600;
}

/* Grille de joueurs */
.airsoft-locator-joueurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-bottom: 80px;
}

.airsoft-locator-joueur-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.airsoft-locator-joueur-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* En-tête de la carte avec bannière */
.joueur-card-header {
    position: relative;
    padding-bottom: 0; /* Pas de padding, l'avatar chevauchera */
}

/* Bannière du joueur */
.joueur-banner {
    position: relative;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: transform 0.5s ease;
}

/* Bannière vide (sans image) */
.joueur-banner-empty {
    background: linear-gradient(135deg, #9B9472 0%, #8A8361 100%);
}

.airsoft-locator-joueur-card:hover .joueur-banner {
    transform: scale(1.05);
}

/* Avatar superposé - chevauche entre bannière et contenu (style Twitter) */
.joueur-avatar-wrapper {
    position: absolute;
    bottom: -40px; /* Moitié de 80px pour chevaucher */
    left: 24px;
    z-index: 10;
}

.joueur-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.airsoft-locator-joueur-card:hover .joueur-avatar {
    transform: scale(1.05);
}

.joueur-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.joueur-avatar svg {
    width: 40px;
    height: 40px;
    color: #9B9472;
}

/* Badge de statut sur la bannière */
.joueur-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.badge-disponible {
    background-color: #28A745;
    color: #FFFFFF;
}

.badge-occupe {
    background-color: #DC3545;
    color: #FFFFFF;
}

.badge-recherche {
    background-color: #17A2B8;
    color: #FFFFFF;
}

.badge-default {
    background-color: #6C757D;
    color: #FFFFFF;
}

/* Contenu de la carte */
.joueur-card-content {
    padding: 24px;
    padding-top: 50px; /* Espace pour l'avatar qui chevauche */
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left; /* Aligné à gauche comme Twitter */
}

.joueur-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: #1A1A1A;
    transition: color 0.3s ease;
}

.airsoft-locator-joueur-card:hover .joueur-card-title {
    color: #D4AF37;
}

.joueur-card-subtitle {
    font-size: 14px;
    color: #999999;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligné à gauche */
    gap: 8px;
    flex-wrap: wrap;
}

.joueur-card-subtitle .separator {
    color: #DDDDDD;
}

/* Métadonnées en grille */
.joueur-card-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEEEEE;
}

.joueur-card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666666;
}

.joueur-card-meta .meta-item svg {
    width: 18px;
    height: 18px;
    fill: #D4AF37;
    flex-shrink: 0;
}

.joueur-card-meta .meta-item span {
    color: #666666;
}

/* Texte du bouton dans la carte */
.joueur-card-link-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #D4AF37;
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: stretch; /* Prend toute la largeur */
}

.airsoft-locator-joueur-card:hover .joueur-card-link-text {
    background-color: #C29F2F;
    transform: translateX(4px);
}

.joueur-card-link-text svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .airsoft-locator-joueurs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 992px) {
    .airsoft-locator-joueurs-hero-title {
        font-size: 48px;
    }
    
    .airsoft-locator-joueurs-filters {
        gap: 32px;
    }
    
    .airsoft-locator-joueur-filter-tab {
        font-size: 24px;
        letter-spacing: 1.5px;
    }
}

@media screen and (max-width: 768px) {
    .airsoft-locator-joueurs-hero {
        padding: 60px 0 40px 0;
    }
    
    .airsoft-locator-joueurs-hero-title {
        font-size: 36px;
    }
    
    .airsoft-locator-joueurs-hero-subtitle {
        font-size: 16px;
    }
    
    .airsoft-locator-joueurs-filters {
        padding: 32px 0;
        gap: 24px;
    }
    
    .airsoft-locator-joueur-filter-tab {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .airsoft-locator-joueurs-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    /* Hero section mobile */
    .airsoft-locator-joueurs-hero {
        padding: 40px 0 30px 0;
    }
    
    .airsoft-locator-joueurs-hero-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .airsoft-locator-joueurs-hero-subtitle {
        font-size: 14px;
    }
    
    /* Filtres responsive - wrap au lieu de colonne */
    .airsoft-locator-joueurs-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 16px 12px;
        margin: 0;
    }
    
    .airsoft-locator-joueur-filter-tab {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    /* Page joueurs - padding mobile */
    .airsoft-locator-joueurs-page > div {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Garder 2 colonnes sur mobile pour meilleure utilisation de l'espace */
    .airsoft-locator-joueurs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 0 40px 0;
    }
    
    .joueur-card-content {
        padding: 14px 10px;
        padding-top: 38px;
    }
    
    .joueur-card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .joueur-card-subtitle {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .joueur-card-subtitle svg {
        width: 12px;
        height: 12px;
    }
    
    .joueur-card-meta {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .joueur-card-meta .meta-item {
        font-size: 11px;
        gap: 6px;
    }
    
    .joueur-card-meta .meta-item svg {
        width: 14px;
        height: 14px;
    }
    
    .joueur-card-link-text {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .joueur-avatar {
        width: 70px;
        height: 70px;
    }
    
    .joueur-avatar-wrapper {
        top: 90px;
    }
    
    .joueur-banner {
        height: 110px;
    }
    
    /* Compteur de résultats */
    .airsoft-locator-joueurs-results-count {
        padding: 0 0 20px 0;
        font-size: 14px;
    }
    
    /* No results message */
    .airsoft-locator-no-results {
        padding: 40px 20px;
    }
    
    .airsoft-locator-no-results h3 {
        font-size: 18px;
    }
    
    .airsoft-locator-no-results p {
        font-size: 14px;
    }
}

/* Extra small screens - Passer à 1 colonne si vraiment trop petit */
@media screen and (max-width: 360px) {
    .airsoft-locator-joueurs-grid {
        grid-template-columns: 1fr;
        padding: 0 12px 40px 12px;
    }
}

/* ========================================
   Page Mon Compte - Style Airsoft-Locator
   ======================================== */

.airsoft-locator-compte-page {
    background-color: #F8F8F8;
    min-height: 100vh;
}

/* Hero Section */
.airsoft-locator-compte-hero {
    background: linear-gradient(135deg, #9B9472 0%, #8A8361 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.airsoft-locator-compte-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/topographic-pattern.png');
    background-repeat: repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.airsoft-locator-compte-hero .airsoft-locator-single-container {
    position: relative;
    z-index: 2;
}

.airsoft-locator-compte-hero-title {
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.airsoft-locator-compte-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
    font-weight: 400;
}

/* Stats Grid */
.compte-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 0;
}

.compte-stat-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.compte-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.compte-stat-card .stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #C29F2F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compte-stat-card .stat-icon svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
}

.compte-stat-card .stat-content {
    display: flex;
    flex-direction: column;
}

.compte-stat-card .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1;
    margin-bottom: 4px;
}

.compte-stat-card .stat-label {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

/* Sections */
.compte-section {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.compte-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F0F0F0;
}

.compte-section-title {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    color: #1A1A1A;
    margin: 0;
}

.compte-section-actions {
    display: flex;
    gap: 12px;
}

.compte-btn-primary,
.compte-btn-edit,
.compte-btn-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compte-btn-primary {
    background-color: #D4AF37;
    color: #1A1A1A;
}

.compte-btn-primary:hover {
    background-color: #C29F2F;
    transform: translateY(-2px);
}

.compte-btn-primary svg {
    width: 16px;
    height: 16px;
}

.compte-btn-edit {
    background-color: #17A2B8;
    color: #FFFFFF;
}

.compte-btn-edit:hover {
    background-color: #138496;
}

.compte-btn-edit svg {
    width: 16px;
    height: 16px;
}

.compte-btn-view {
    background-color: #28A745;
    color: #FFFFFF;
}

.compte-btn-view:hover {
    background-color: #218838;
}

.compte-btn-view svg {
    width: 16px;
    height: 16px;
}

/* Profil Joueur Card */
.compte-joueur-card {
    background: linear-gradient(135deg, #9B9472 0%, #8A8361 100%);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.joueur-card-visual {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.joueur-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.joueur-avatar-large .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.joueur-avatar-large svg {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.7);
}

.joueur-info {
    flex: 1;
}

.joueur-name {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.joueur-details {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.joueur-details .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

.joueur-status {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.joueur-status.status-disponible {
    background-color: #28A745;
    color: #FFFFFF;
}

.joueur-status.status-occupe {
    background-color: #DC3545;
    color: #FFFFFF;
}

.joueur-status.status-recherche {
    background-color: #17A2B8;
    color: #FFFFFF;
}

.joueur-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.joueur-card-stats .stat-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.joueur-card-stats .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.joueur-card-stats .stat-icon svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.joueur-card-stats .stat-item > div {
    display: flex;
    flex-direction: column;
}

.joueur-card-stats .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.joueur-card-stats .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

/* Items Grid */
.compte-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.compte-item-card {
    display: block;
    background: #F8F8F8;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 2px solid #E8E8E8;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.compte-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #9B9472;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.item-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.item-header h3 {
    color: #1A1A1A;
    transition: color 0.3s ease;
}

.compte-item-card:hover .item-header h3 {
    color: #9B9472;
}

.item-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-badge.badge-publish {
    background-color: #28A745;
    color: #FFFFFF;
}

.item-badge.badge-draft {
    background-color: #FFC107;
    color: #1A1A1A;
}

.item-badge.badge-association {
    background-color: #D4AF37;
    color: #1A1A1A;
}

.item-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.meta-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666666;
}

.meta-info svg {
    width: 16px;
    height: 16px;
    fill: #D4AF37;
    flex-shrink: 0;
}

/* Empty States */
.compte-empty-state {
    text-align: center;
    padding: 60px 40px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #D4AF37 0%, #C29F2F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon svg {
    width: 40px;
    height: 40px;
    color: #FFFFFF;
}

.compte-empty-state h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 12px 0;
}

.compte-empty-state p {
    font-size: 16px;
    color: #666666;
    margin: 0 0 24px 0;
}

.empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: #D4AF37;
    color: #1A1A1A;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.empty-btn:hover {
    background-color: #C29F2F;
    transform: translateY(-2px);
}

/* Actions Section */
.compte-actions-section {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.compte-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #F8F8F8;
    border-radius: 12px;
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #E8E8E8;
}

.action-card:hover {
    background: #FFFFFF;
    border-color: #D4AF37;
    transform: translateX(4px);
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #C29F2F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .compte-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compte-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .airsoft-locator-compte-hero-title {
        font-size: 36px;
    }
    
    .compte-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .compte-section {
        padding: 24px;
    }
    
    .compte-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .compte-items-grid {
        grid-template-columns: 1fr;
    }
    
    .joueur-card-visual {
        flex-direction: column;
        text-align: center;
    }
    
    .joueur-card-stats {
        grid-template-columns: 1fr;
    }
    
    .compte-actions-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .airsoft-locator-compte-hero-title {
        font-size: 28px;
    }
    
    .compte-section-title {
        font-size: 22px;
    }
    
    .joueur-name {
        font-size: 24px;
    }
}

/* ========================================
   Pages Single (Joueur/Team/Association)
   ======================================== */

/* Réutilisation des styles de single-parties.php */
/* Les styles principaux sont définis dans la section "Airsoft-Locator Single Partie" */

/* Styles spécifiques pour l'équipe dans single-joueur */
.airsoft-locator-team-box {
    background: #F5F5F5;
    padding: 24px;
    border-radius: 0;
    border-left: 4px solid #9B9472;
}

.airsoft-locator-team-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #1A1A1A;
}

.airsoft-locator-team-box h4 a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.airsoft-locator-team-box h4 a:hover {
    color: #9B9472;
}

.airsoft-locator-team-box p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.airsoft-locator-team-box .airsoft-locator-btn-sm {
    display: inline-block;
    font-size: 12px;
    padding: 10px 24px;
}

/* Grille d'équipes pour single-association */
.airsoft-locator-teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.airsoft-locator-team-mini-card {
    background: #F5F5F5;
    padding: 20px;
    border-radius: 0;
    border-left: 4px solid #9B9472;
    transition: all 0.3s ease;
}

.airsoft-locator-team-mini-card:hover {
    border-left-color: #1A1A1A;
    transform: translateX(4px);
}

.airsoft-locator-team-mini-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.airsoft-locator-team-mini-card h4 a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.airsoft-locator-team-mini-card h4 a:hover {
    color: #9B9472;
}

.airsoft-locator-team-mini-card .team-location {
    color: #666666;
    font-size: 13px;
    margin: 0;
}

/* Section d'actions spécifique */
.airsoft-locator-actions-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #E0E0E0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Grille des membres de l'équipe */
.airsoft-locator-team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.airsoft-locator-member-card {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.airsoft-locator-member-card:hover {
    border-color: #9B9472;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    background: #F5F5F5;
    position: relative;
    border: 3px solid #E0E0E0;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
    padding: 16px;
    color: #999999;
}

.member-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
}

.member-status.status-disponible {
    background-color: #28A745;
}

.member-status.status-recherche {
    background-color: #17A2B8;
}

/* Badge créateur */
.member-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.badge-creator {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

/* Carte créateur avec bordure spéciale */
.creator-card {
    border-color: #9B9472;
    background: linear-gradient(to bottom, #FFFEF8, #FFFFFF);
}

.creator-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 20px rgba(155, 148, 114, 0.3);
}

.member-info {
    width: 100%;
}

.member-role {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9B9472;
    margin-bottom: 8px;
}

.member-name {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.airsoft-locator-member-card:hover .member-name {
    color: #9B9472;
}

.member-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: #666666;
}

.member-skill {
    display: inline-block;
    background: #9B9472;
    color: #FFFFFF;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.member-location svg {
    flex-shrink: 0;
}

/* État vide - Aucun membre */
.airsoft-locator-no-members {
    text-align: center;
    padding: 60px 20px;
    background: #F5F5F5;
    border: 2px dashed #D0D0D0;
    margin-top: 24px;
}

.airsoft-locator-no-members svg {
    color: #999999;
    margin-bottom: 20px;
}

.airsoft-locator-no-members p {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.airsoft-locator-no-members small {
    font-size: 14px;
    color: #666666;
    display: block;
}

/* Responsive pour pages single */
@media screen and (max-width: 1024px) {
    .airsoft-locator-teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .airsoft-locator-team-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .airsoft-locator-teams-grid {
        grid-template-columns: 1fr;
    }
    
    .airsoft-locator-team-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .airsoft-locator-actions-section {
        flex-direction: column;
    }
    
    .airsoft-locator-actions-section .airsoft-locator-btn,
    .airsoft-locator-actions-section .airsoft-locator-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .airsoft-locator-team-members-grid {
        grid-template-columns: 1fr;
    }
    
    .member-avatar {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   PARTY PARTICIPANTS ADMIN SECTION
   ======================================== */

/* Participants Button in Hero Actions */
.airsoft-locator-participants-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.airsoft-locator-participants-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.airsoft-locator-participants-btn svg {
    width: 16px;
    height: 16px;
}

/* Admin Section Container */
.airsoft-locator-admin-participants-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

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

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Modal Container */
.airsoft-locator-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.airsoft-locator-modal.active {
    display: flex;
}

/* Modal Overlay */
.airsoft-locator-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease-out;
}

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

/* Modal Content Container */
.airsoft-locator-modal-container {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    z-index: 10000;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Header */
.airsoft-locator-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e9ecef;
    background: linear-gradient(135deg, #9B9472 0%, #8A8361 100%);
    border-radius: 12px 12px 0 0;
}

.airsoft-locator-modal-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.airsoft-locator-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.airsoft-locator-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.airsoft-locator-modal-close svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Modal Body */
.airsoft-locator-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

/* Selection Controls */
.airsoft-locator-selection-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 1rem;
}

.airsoft-locator-checkbox-all {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    user-select: none;
}

.airsoft-locator-checkbox-all input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #f59e0b;
}

.airsoft-locator-checkbox-all:hover {
    color: #f59e0b;
}

.airsoft-locator-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Modal Table */
.airsoft-locator-modal-table-wrapper {
    background: white;
    border-radius: 8px;
    overflow-x: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.airsoft-locator-modal-participants-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.airsoft-locator-modal-participants-table thead {
    background: linear-gradient(135deg, #9B9472 0%, #8A8361 100%);
    color: white;
}

.airsoft-locator-modal-participants-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #D4AF37;
}

.airsoft-locator-modal-participants-table th.checkbox-column {
    width: 50px;
    text-align: center;
}

.airsoft-locator-modal-participants-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.airsoft-locator-modal-participants-table tbody tr:hover {
    background-color: #f8f9fa;
}

.airsoft-locator-modal-participants-table tbody tr:last-child {
    border-bottom: none;
}

.airsoft-locator-modal-participants-table td {
    padding: 1rem;
    font-size: 0.9375rem;
    color: #495057;
}

.airsoft-locator-modal-participants-table td.checkbox-column {
    text-align: center;
}

.airsoft-locator-modal-participants-table .participant-checkbox,
.airsoft-locator-modal-participants-table .select-all-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #f59e0b;
}

/* Modal Footer */
.airsoft-locator-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 2px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    flex-wrap: wrap;
}

/* Modal Notification */
.airsoft-locator-modal-notification {
    position: sticky;
    top: 0;
    z-index: 10;
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: 0;
}

/* Admin Header */
.airsoft-locator-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.airsoft-locator-admin-header .airsoft-locator-section-title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.airsoft-locator-admin-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

/* Statistics Cards */
.airsoft-locator-participants-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.airsoft-locator-stat-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.airsoft-locator-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.airsoft-locator-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.airsoft-locator-stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Participants Table */
.airsoft-locator-admin-participants-table-wrapper {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.airsoft-locator-admin-participants-table {
    width: 100%;
    border-collapse: collapse;
}

.airsoft-locator-admin-participants-table thead {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.airsoft-locator-admin-participants-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #1a252f;
}

.airsoft-locator-admin-participants-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.airsoft-locator-admin-participants-table tbody tr:hover {
    background-color: #f8f9fa;
}

.airsoft-locator-admin-participants-table tbody tr:last-child {
    border-bottom: none;
}

.airsoft-locator-admin-participants-table td {
    padding: 1rem;
    font-size: 0.9375rem;
    color: #495057;
}

/* Participant Cell with Avatar */
.airsoft-locator-participant-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.airsoft-locator-participant-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

/* Email and Phone Links */
.airsoft-locator-email-link,
.airsoft-locator-phone-link {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s;
}

.airsoft-locator-email-link:hover,
.airsoft-locator-phone-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* No Data Indicator */
.airsoft-locator-no-data {
    color: #adb5bd;
    font-style: italic;
    font-size: 0.875rem;
}

.airsoft-locator-no-data-row {
    text-align: center;
    padding: 2rem !important;
    color: #6c757d;
    font-style: italic;
}

/* Date Badge */
.airsoft-locator-date-badge {
    display: inline-block;
    background: #e9ecef;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    color: #495057;
}

/* Admin Actions */
.airsoft-locator-admin-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.airsoft-locator-btn-ghost {
    background: transparent;
    border: 2px solid #6c757d;
    color: #6c757d;
}

.airsoft-locator-btn-ghost:hover {
    background: #6c757d;
    color: white;
}


/* Last Update Timestamp */
.airsoft-locator-last-update {
    text-align: right;
    font-size: 0.8125rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 1rem;
}

/* Notification */
.airsoft-locator-notification {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.airsoft-locator-notification svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.airsoft-locator-notification-success {
    background: #d1f2eb;
    border: 1px solid #0fc783;
    color: #0d7053;
}

.airsoft-locator-notification-error {
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    color: #842029;
}

.airsoft-locator-notification-info {
    background: #cfe2ff;
    border: 1px solid #b6d4fe;
    color: #084298;
}

/* Spin Animation for Refresh Button */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .airsoft-locator-admin-participants-table-wrapper {
        overflow-x: auto;
    }
    
    .airsoft-locator-admin-participants-table {
        min-width: 800px;
    }
}

@media (max-width: 768px) {
    .airsoft-locator-admin-participants-section {
        padding: 1.5rem;
    }
    
    .airsoft-locator-admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .airsoft-locator-participants-stats {
        grid-template-columns: 1fr;
    }
    
    .airsoft-locator-stat-value {
        font-size: 1.5rem;
    }
    
    .airsoft-locator-admin-actions {
        flex-direction: column;
    }
    
    .airsoft-locator-admin-actions .airsoft-locator-btn {
        width: 100%;
        justify-content: center;
    }
    
    .airsoft-locator-admin-participants-table th,
    .airsoft-locator-admin-participants-table td {
        padding: 0.75rem;
        font-size: 0.8125rem;
    }
    
    .airsoft-locator-participant-avatar-small {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .airsoft-locator-last-update {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .airsoft-locator-admin-participants-section {
        padding: 1rem;
    }
    
    .airsoft-locator-admin-header .airsoft-locator-section-title {
        font-size: 1.25rem;
    }
    
    .airsoft-locator-admin-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   MODAL RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .airsoft-locator-modal-participants-table {
        min-width: 900px;
    }
}

@media (max-width: 768px) {
    .airsoft-locator-modal-container {
        width: 98%;
        max-height: 95vh;
    }
    
    .airsoft-locator-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .airsoft-locator-modal-title {
        font-size: 1.25rem;
    }
    
    .airsoft-locator-modal-body {
        padding: 1.5rem;
    }
    
    .airsoft-locator-modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .airsoft-locator-modal-footer .airsoft-locator-btn {
        width: 100%;
        justify-content: center;
    }
    
    .airsoft-locator-participants-stats {
        grid-template-columns: 1fr;
    }
    
    .airsoft-locator-selection-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .airsoft-locator-selection-controls .airsoft-locator-btn {
        width: 100%;
        justify-content: center;
    }
    
    .airsoft-locator-modal-participants-table th,
    .airsoft-locator-modal-participants-table td {
        padding: 0.75rem;
        font-size: 0.8125rem;
    }
    
    .airsoft-locator-participant-avatar-small {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .airsoft-locator-participants-btn {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .airsoft-locator-modal-container {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .airsoft-locator-modal-header {
        padding: 1rem;
        border-radius: 0;
    }
    
    .airsoft-locator-modal-title {
        font-size: 1.1rem;
    }
    
    .airsoft-locator-modal-title svg {
        width: 20px !important;
        height: 20px !important;
        margin-right: 6px !important;
    }
    
    .airsoft-locator-modal-body {
        padding: 1rem;
    }
    
    .airsoft-locator-modal-close {
        width: 35px;
        height: 35px;
    }
    
    .airsoft-locator-participants-stats {
        gap: 0.75rem;
    }
    
    .airsoft-locator-stat-card {
        padding: 1rem;
    }
    
    .airsoft-locator-stat-value {
        font-size: 1.5rem;
    }
    
    .airsoft-locator-stat-label {
        font-size: 0.75rem;
    }
    
    .airsoft-locator-checkbox-all span {
        font-size: 0.875rem;
    }
    
    .airsoft-locator-modal-table-wrapper {
        margin-bottom: 1rem;
    }
    
    .airsoft-locator-modal-participants-table {
        min-width: 700px;
    }
    
    .airsoft-locator-modal-footer {
        padding: 1rem;
    }
    
    .airsoft-locator-modal-footer .airsoft-locator-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .airsoft-locator-participants-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .airsoft-locator-author-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .airsoft-locator-edit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   SEARCH BAR MOBILE UNIQUEMENT
   ======================================== */

/* Sur mobile : cacher search du header, afficher search mobile */
@media (max-width: 768px) {
    /* Cacher la search bar du header sur mobile */
    #masthead .flex-1.max-w-2xl {
        display: none !important;
    }
    
    /* Afficher la search bar mobile entre header et nav */
    .search-mobile-only {
        display: block !important;
        background-color: #fafafa;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .search-mobile-only input[type="search"],
    .search-mobile-only input[type="text"] {
        width: 100%;
        font-size: 0.9375rem;
        padding: 0.625rem 0.875rem;
    }
}

/* Sur desktop : cacher la search mobile */
@media (min-width: 769px) {
    .search-mobile-only {
        display: none !important;
    }
}

/* ========================================
   PAGE SINGLE JOUEUR - MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* Container principal */
    .airsoft-locator-single-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    /* Hero section */
    .airsoft-locator-single-hero {
        padding: 60px 0 32px 0;
    }
    
    .airsoft-locator-single-hero-content {
        padding: 0 16px;
    }
    
    /* Titre et meta */
    .airsoft-locator-single-title {
        font-size: 28px;
    }
    
    .airsoft-locator-single-meta {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .airsoft-locator-meta-item {
        font-size: 14px;
    }
    
    /* Sections content */
    .airsoft-locator-single-main {
        padding: 40px 16px;
    }
    
    .airsoft-locator-info-cards {
        gap: 16px;
    }
    
    .airsoft-locator-info-card {
        padding: 20px 16px;
    }
    
    .airsoft-locator-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    /* Plus petit padding sur très petits écrans */
    .airsoft-locator-single-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .airsoft-locator-single-hero-content {
        padding: 0 12px;
    }
    
    .airsoft-locator-single-main {
        padding: 32px 12px;
    }
    
    .airsoft-locator-single-title {
        font-size: 24px;
    }
    
    .airsoft-locator-section-title {
        font-size: 20px;
    }
    
    .airsoft-locator-info-card {
        padding: 16px 12px;
    }
}

/* ===============================================
   GALERIE PHOTOS
   =============================================== */

.airsoft-locator-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.airsoft-locator-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.airsoft-locator-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.airsoft-locator-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.airsoft-locator-gallery-item:hover img {
    transform: scale(1.1);
}

.airsoft-locator-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.airsoft-locator-gallery-item:hover .airsoft-locator-gallery-overlay {
    opacity: 1;
}

.airsoft-locator-gallery-overlay svg {
    color: white;
    width: 48px;
    height: 48px;
}

/* Lightbox simple avec CSS (alternative à une librairie) */
.airsoft-locator-gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.airsoft-locator-gallery-lightbox.active {
    display: flex;
}

.airsoft-locator-gallery-lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.airsoft-locator-gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transition: background 0.3s ease;
}

.airsoft-locator-gallery-lightbox-close:hover {
    background: #e74c3c;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .airsoft-locator-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
}

/* ===============================================
   BADGES DE DIFFICULTÉ
   =============================================== */

.airsoft-locator-difficulty-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.airsoft-locator-difficulty-debutant {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.airsoft-locator-difficulty-intermediaire {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #333;
}

.airsoft-locator-difficulty-avance {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
}

.airsoft-locator-difficulty-expert {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* ===============================================
   BOUTONS D'ANNULATION ET SUPPRESSION
   =============================================== */

.airsoft-locator-cancel-btn,
.airsoft-locator-delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.airsoft-locator-cancel-btn {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #333;
}

.airsoft-locator-cancel-btn:hover {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.airsoft-locator-delete-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.airsoft-locator-delete-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71d2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.airsoft-locator-cancel-btn svg,
.airsoft-locator-delete-btn svg {
    width: 16px;
    height: 16px;
}

/* ===============================================
   ALERTE PARTIE ANNULÉE
   =============================================== */

.airsoft-locator-alert-cancelled {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe5a0 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.airsoft-locator-alert-cancelled svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #ff9800;
}

.airsoft-locator-alert-cancelled strong {
    display: block;
    color: #e65100;
    font-size: 18px;
    margin-bottom: 8px;
}

.airsoft-locator-alert-cancelled p {
    color: #333;
    margin: 4px 0;
    line-height: 1.6;
}

/* Badge statut annulé */
.airsoft-locator-status-cancelled {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Actions de l'auteur avec espacement pour les nouveaux boutons */
.airsoft-locator-author-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .airsoft-locator-cancel-btn,
    .airsoft-locator-delete-btn {
        width: 100%;
        justify-content: center;
    }
    
    .airsoft-locator-author-actions {
        flex-direction: column;
    }
}

/* ===============================================
   FLASH MESSAGES
   =============================================== */

.airsoft-locator-flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 500px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.airsoft-locator-flash-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
}

.airsoft-locator-flash-message svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #28a745;
}

.airsoft-locator-flash-message strong {
    display: block;
    color: #155724;
    font-size: 16px;
    margin-bottom: 4px;
}

.airsoft-locator-flash-message p {
    color: #155724;
    margin: 0;
    font-size: 14px;
}

.airsoft-locator-flash-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #155724;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.airsoft-locator-flash-close:hover {
    background: rgba(21, 87, 36, 0.1);
}

@media (max-width: 768px) {
    .airsoft-locator-flash-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}


/* ========================================
   SEO CONTENT SECTIONS
   ======================================== */

/* Section Introduction SEO */
.seo-intro-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F8F8 100%);
}

.seo-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.seo-intro-header {
    text-align: center;
    margin-bottom: 60px;
}

.seo-section-title {
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
}

.seo-section-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.seo-feature-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.seo-feature-icon {
    width: 60px;
    height: 60px;
    background: #9B9472;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.seo-feature-icon svg {
    width: 30px;
    height: 30px;
    color: #FFFFFF;
}

.seo-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-feature-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.seo-feature-text strong {
    color: #1A1A1A;
    font-weight: 600;
}

/* Section Services SEO */
.seo-services-section {
    width: 100%;
    padding: 100px 0;
    background: #FFFFFF;
}

.seo-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.seo-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.seo-service-card {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
    padding: 35px;
    border-radius: 8px;
    border: 2px solid #E8E5DA;
    transition: all 0.3s ease;
}

.seo-service-card:hover {
    border-color: #9B9472;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(155, 148, 114, 0.15);
}

.seo-service-icon {
    width: 50px;
    height: 50px;
    background: #9B9472;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.seo-service-icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.seo-service-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-service-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

.seo-service-text strong {
    color: #1A1A1A;
    font-weight: 600;
}

/* Section Régions SEO */
.seo-regions-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(180deg, #F8F8F8 0%, #E8E5DA 100%);
}

.seo-regions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.seo-regions-header {
    text-align: center;
    margin-bottom: 40px;
}

.seo-regions-intro {
    font-size: 17px;
    color: #1A1A1A;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto 50px;
    max-width: 900px;
}

.seo-regions-intro strong {
    color: #9B9472;
    font-weight: 700;
}

.seo-regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.seo-region-card {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.seo-region-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.seo-region-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-region-card p {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* CTA Box */
.seo-cta-box {
    background: #9B9472;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seo-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/topographic-pattern.png');
    background-repeat: repeat;
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.seo-cta-box h3 {
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.seo-cta-box p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    margin: 0 auto 30px;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.seo-cta-box p strong {
    font-weight: 700;
}

.seo-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.seo-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.seo-cta-btn.primary {
    background: #FFFFFF;
    color: #9B9472;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.seo-cta-btn.primary:hover {
    background: #F8F8F8;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.seo-cta-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.seo-cta-btn.secondary:hover {
    background: #FFFFFF;
    color: #9B9472;
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .seo-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .seo-intro-section,
    .seo-services-section,
    .seo-regions-section {
        padding: 70px 0;
    }
    
    .seo-section-title {
        font-size: 42px;
    }
    
    .seo-features-grid {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .seo-intro-section,
    .seo-services-section,
    .seo-regions-section {
        padding: 60px 0;
    }
    
    .seo-intro-container,
    .seo-services-container,
    .seo-regions-container {
        padding: 0 24px;
    }
    
    .seo-section-title {
        font-size: 32px;
    }
    
    .seo-section-subtitle {
        font-size: 14px;
    }
    
    .seo-features-grid,
    .seo-services-grid,
    .seo-regions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .seo-feature-card,
    .seo-service-card {
        padding: 30px;
    }
    
    .seo-cta-box {
        padding: 40px 30px;
    }
    
    .seo-cta-box h3 {
        font-size: 28px;
    }
    
    .seo-cta-buttons {
        flex-direction: column;
    }
    
    .seo-cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .seo-section-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .seo-feature-card {
        padding: 24px;
    }
    
    .seo-feature-title {
        font-size: 20px;
    }
    
    .seo-cta-box h3 {
        font-size: 24px;
    }
}

/* ========================================
   HERO SECTION - Additional Styles
   ======================================== */

.airsoft-locator-hero-description {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.7;
    margin: 20px 0 30px 0;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.airsoft-locator-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.airsoft-locator-hero-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.airsoft-locator-hero-btn.primary {
    background: #FFFFFF;
    color: #9B9472;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.airsoft-locator-hero-btn.primary:hover {
    background: #F8F8F8;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.airsoft-locator-hero-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.airsoft-locator-hero-btn.secondary:hover {
    background: #FFFFFF;
    color: #9B9472;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .airsoft-locator-hero-description {
        font-size: 15px;
        margin: 18px 0 24px 0;
    }
    
    .airsoft-locator-hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .airsoft-locator-hero-btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }
}

@media screen and (max-width: 480px) {
    .airsoft-locator-hero-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .airsoft-locator-hero-btn {
        font-size: 13px;
        padding: 14px 20px;
    }
}
