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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e0e7ff 100%) !important;
    overflow: hidden;
    color: white;
}

#container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #1e3a32, #2d5a45, #1a4c3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#header h1 img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

#header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

#globe-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

#map-view {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 60;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.map-title {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 60;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.resort-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff6b6b;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: pulse 2s infinite;
}

.resort-pin:hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: #4ecdc4;
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.8);
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.continent-overlay {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.continent-overlay:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

#instructions {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.us-map {
    width: 80%;
    height: 70%;
    position: absolute;
    top: 15%;
    left: 10%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect fill="%23f0f0f0" width="1000" height="600"/><text x="500" y="300" text-anchor="middle" font-size="24" fill="%23666">US Map Placeholder</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.state-pin {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #4ecdc4;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.6);
}

.state-pin:hover {
    transform: translate(-50%, -50%) scale(1.3);
    background: #ff6b6b;
}

.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -120%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resort-list {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
}

.resort-item {
    padding: 12px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resort-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}