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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: black;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.container {
    text-align: center;
    z-index: 1;
}

.globe-container {
    margin-bottom: 2rem;
    position: relative;
}

#globe-canvas {
    width: 800px;
    height: 800px;
    margin: 0 auto;
    max-width: 100%;
    max-height: 80vh;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-family: monospace;
    font-weight: 800;
    color: #dda0dd;
    text-shadow: 0 0 10px rgba(221, 160, 221, 0.5);
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    #globe-canvas { 
        width: 400px; 
        height: 400px; 
    }
    .center-text {
        font-size: 1.5rem;
    }
    h1 { 
        font-size: 2.5rem; 
    }
}

@media (max-width: 480px) {
    #globe-canvas { 
        width: 300px; 
        height: 300px; 
    }
    .center-text {
        font-size: 3.2rem;
    }
    h1 { 
        font-size: 2rem; 
    }
}

@media (max-width: 320px) {
    #globe-canvas { 
        width: 250px; 
        height: 250px; 
    }
    .center-text {
        font-size: 3rem;
    }
    h1 { 
        font-size: 1.5rem; 
    }
} 