/* Globe Widget Styles */
.hero-image {
    perspective: 1000px;
}

#globe-container {
    width: 100%;
    height: 450px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    /* Glassmorphism background matching the theme */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#globe-container:active {
    cursor: grabbing;
}

#globe-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 240, 255, 0.15);
    /* Cyan glow on hover */
    border-color: rgba(0, 240, 255, 0.3);
}

/* Floating label over the globe */
.globe-overlay {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    pointer-events: none;
    /* Let clicks pass through to globe */
    z-index: 10;
    padding: 0 20px;
}

.globe-label {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.globe-label h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
    margin-bottom: 4px;
    font-weight: 600;
}

.globe-label p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 0;
}

.globe-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto -20px auto;
    /* Overlap top */
    position: relative;
    top: -20px;
    box-shadow: 0 10px 15px -3px rgba(0, 240, 255, 0.3);
}

@media screen and (max-width: 768px) {
    #globe-container {
        height: 350px;
    }
}