/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --thingvalla-blue: #0066FF;
    --thingvalla-dark: #2C3E50;
    --thingvalla-light: #F8F9FA;
    --thingvalla-white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--thingvalla-dark);
    background: linear-gradient(135deg, var(--thingvalla-blue) 0%, #0052CC 100%);
    min-height: 100vh;
}

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

/* Header */
.hero {
    background: linear-gradient(135deg, var(--thingvalla-blue) 0%, #0052CC 100%);
    color: var(--thingvalla-white);
    padding: 2rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: url('assets/logos/Thingvalla_Technology_Icon_Blue.png') no-repeat;
    background-size: contain;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 30px;
    width: auto;
    max-width: 150px;
}

.hero-content {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--thingvalla-white), #E3F2FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--thingvalla-white);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-cta .primary-cta:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Demo Container */
.demo-container {
    margin-top: 3rem;
}

.community-preview {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hunt-feed {
    flex: 1;
    max-width: 350px;
    min-width: 300px;
}

.feed-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.feed-card.show {
    opacity: 1;
    transform: translateY(0);
}

.hunter-info {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.hunter-details {
    display: flex;
    flex-direction: column;
}

.hunter-name {
    font-weight: 600;
    color: var(--thingvalla-white);
    font-size: 0.9rem;
}

.hunt-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.hunt-image {
    position: relative;
}

.placeholder-hunt {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.engagement-stats {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    gap: 1rem;
}

.engagement-stats span {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: white;
    backdrop-filter: blur(5px);
}

.area-activity {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.area-activity.show {
    opacity: 1;
    transform: translateX(0);
}

.area-activity h3 {
    color: var(--thingvalla-white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.interactive-map {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2f1a, #2d5016);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-svg {
    width: 100%;
    height: 180px;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.live-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    color: #00ff88;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

.activity-popup {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 0.8rem;
    min-width: 140px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0) translate(-50%, -100%);
    transform-origin: bottom center;
    left: 30%;
    top: 25%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.activity-popup.show {
    transform: scale(1) translate(-50%, -100%);
    opacity: 1;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.unit-name {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.8rem;
}

.activity-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
}

.popup-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hunter-username {
    color: var(--thingvalla-white);
    font-weight: 500;
    font-size: 0.8rem;
}

.activity-type {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}

.popup-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.9);
}

.map-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: featurePulse 2s infinite;
}

/* SVG Animations */
.hotspot {
    animation: hotspotPulse 3s infinite ease-in-out;
}

.hotspot-1 {
    animation-delay: 0s;
}

.hotspot-2 {
    animation-delay: 1s;
}

.hotspot-3 {
    animation-delay: 2s;
}

.gps-dot {
    animation: gpsBlink 2s infinite ease-in-out;
}

.dot-1 {
    animation-delay: 0s;
}

.dot-2 {
    animation-delay: 0.5s;
}

.dot-3 {
    animation-delay: 1s;
}

.dot-4 {
    animation-delay: 1.5s;
}

.radar-sweep {
    animation: radarSweep 4s infinite linear;
}

/* Map Animations */
@keyframes livePulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2); 
    }
}

@keyframes hotspotPulse {
    0%, 100% { 
        r: 8; 
        opacity: 0.6; 
    }
    50% { 
        r: 15; 
        opacity: 0.9; 
    }
}

@keyframes gpsBlink {
    0%, 100% { 
        r: 2; 
        opacity: 1; 
    }
    50% { 
        r: 4; 
        opacity: 0.7; 
    }
}

@keyframes radarSweep {
    0% { 
        transform: rotate(0deg); 
        opacity: 0; 
    }
    10% { 
        opacity: 0.6; 
    }
    90% { 
        opacity: 0.6; 
    }
    100% { 
        transform: rotate(360deg); 
        opacity: 0; 
    }
}

@keyframes featurePulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2); 
    }
}

.demo-trigger {
    text-align: center;
}

.demo-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--thingvalla-white);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.demo-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.demo-button span {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.demo-button:hover .button-glow {
    left: 100%;
}

/* Features Section */
.features-section {
    background: var(--thingvalla-white);
    padding: 4rem 0;
    margin-top: -3rem;
    border-radius: 3rem 3rem 0 0;
    position: relative;
    z-index: 2;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--thingvalla-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 102, 255, 0.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--thingvalla-dark);
}

.feature-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Main CTA Section */
.main-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--thingvalla-light), white);
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.main-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--thingvalla-dark);
}

.main-cta p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.primary-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--thingvalla-blue), #0099FF);
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
    text-decoration: none;
    color: white;
}

.secondary-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--thingvalla-blue);
    border: 2px solid var(--thingvalla-blue);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-cta:hover {
    background: var(--thingvalla-blue);
    color: white;
    transform: translateY(-2px);
}

.beta-notice {
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 1.5rem;
}

.beta-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

    color: #6B7280;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--thingvalla-blue), #0052CC);
    color: var(--thingvalla-white);
    text-decoration: none;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4);
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.button-triangles {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid rgba(255, 255, 255, 0.3);
}

.triangle-1 {
    transform: rotate(90deg);
    right: 5px;
}

.triangle-2 {
    transform: rotate(90deg);
    right: -5px;
    opacity: 0.6;
}

/* Technology Section */
.tech-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(44, 62, 80, 0.05));
    border-radius: 20px;
    text-align: center;
}

.tech-section h2 {
    margin-bottom: 2rem;
    color: var(--thingvalla-dark);
    font-size: 2.2rem;
    font-weight: 700;
}

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

.tech-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--thingvalla-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.tech-item h4 {
    color: var(--thingvalla-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-item p {
    color: var(--thingvalla-dark);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--thingvalla-dark);
    color: var(--thingvalla-white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    opacity: 0.8;
}

/* RackMap Interface Demo */
.demo-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
}

.rackmap-demo {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.rackmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--thingvalla-blue), #0088cc);
    color: white;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.thingvalla-logo {
    height: 24px;
}

.app-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.filter-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.user-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.user-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-btn.primary {
    background: #28a745;
    color: white;
    border: none;
}

.user-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.user-btn.logout {
    background: #dc3545;
    color: white;
    border: none;
}

.map-interface {
    position: relative;
    height: 500px;
    background: #f8f9fa;
}

.hunting-map {
    width: 100%;
    height: 100%;
}

.unit-label {
    fill: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    text-anchor: middle;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.photo-count {
    fill: white;
    font-size: 12px;
    font-weight: 700;
    text-anchor: middle;
    font-family: 'Inter', sans-serif;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.8));
}

.heat-zone {
    cursor: pointer;
    transition: all 0.3s ease;
}

.heat-zone:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.heat-zone.high {
    fill: rgba(255, 100, 100, 0.5);
}

.heat-zone.medium {
    fill: rgba(255, 150, 100, 0.5);
}

.heat-zone.low {
    fill: rgba(255, 200, 100, 0.5);
}

.legend-panel {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #495057;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
}

.legend-color.high {
    background: rgba(255, 100, 100, 0.6);
}

.legend-color.medium {
    background: rgba(255, 150, 100, 0.6);
}

.legend-color.low {
    background: rgba(255, 200, 100, 0.6);
}

.legend-color.none {
    background: #f8f9fa;
}

.demo-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.demo-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.demo-button.primary {
    background: linear-gradient(135deg, var(--thingvalla-blue), #0088cc);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.demo-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.demo-button.secondary {
    background: white;
    color: var(--thingvalla-blue);
    border: 2px solid var(--thingvalla-blue);
}

.demo-button.secondary:hover {
    background: var(--thingvalla-blue);
    color: white;
    transform: translateY(-2px);
}

/* Area Discovery Map */
.area-discovery {
    flex: 1;
    max-width: 500px;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.map-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.discovery-map {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nd-map {
    width: 100%;
    height: auto;
    max-height: 300px;
}

.unit-name {
    fill: #6c757d;
    font-size: 14px;
    font-weight: 600;
    text-anchor: middle;
    font-family: 'Inter', sans-serif;
}

.activity-count {
    fill: white;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.pulse {
    animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { r: attr(r); opacity: 0.2; }
    50% { r: calc(attr(r) * 1.5); opacity: 0.1; }
}

.map-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    flex: 1;
    max-width: 120px;
}

.stat-card.hot {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thingvalla-blue);
    margin-bottom: 0.25rem;
}

.stat-card.hot .stat-number {
    color: white;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card.hot .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Social Proof */
.social-proof {
    text-align: center;
    margin-top: 2rem;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.community-stats .stat {
    text-align: center;
    color: white;
}

.community-stats .stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.community-stats .stat span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-svg {
    width: 100%;
    height: 100%;
}

.unit-label {
    fill: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    text-anchor: middle;
    font-family: 'Inter', sans-serif;
}

.hunting-unit {
    cursor: pointer;
    transition: all 0.3s ease;
}

.hunting-unit:hover path {
    fill: rgba(0, 102, 255, 0.15);
    stroke: rgba(255, 255, 255, 0.4);
}

.hunting-unit:hover .unit-label {
    fill: white;
}

.pulse-point {
    filter: blur(1px);
}

.map-data-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-panel {
    position: absolute;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    color: white;
}

.top-panel {
    top: 1rem;
    left: 1rem;
    right: 1rem;
}

.metric-row {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 0.25rem;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unit-info-panel {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    animation: slideUp 0.5s ease forwards;
    animation-delay: 1s;
}

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

.unit-info-panel h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.unit-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-item .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.metric-item .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0066FF;
}

.activity-bar {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.activity-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066FF, #0099FF);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.pulse-icon {
    background: #0066FF;
    position: relative;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #0066FF;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Feed Card Styles */
.avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a2332, #0f1419);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.deer-silhouette {
    opacity: 0.6;
    transform: scale(1.5);
}

.engagement-stats {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animations */
@keyframes scanPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes scanMove {
    0% { top: 0; }
    100% { top: 100%; }
}

@keyframes scanRotate {
    0% { transform: rotate(0deg) scale(0.8); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

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

@keyframes highlightPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

@keyframes badgePopIn {
    0% { 
        opacity: 0; 
        transform: scale(0) rotate(-180deg); 
    }
    70% { 
        transform: scale(1.2) rotate(10deg); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
}

@keyframes numberCount {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .demo-preview {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0 4rem;
    }
    
    .logo-img {
        height: 25px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hunt-feed, .area-activity {
        min-width: auto;
    }
    
    .area-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.6rem;
    }
    
    .score-number {
        font-size: 3rem;
    }
}