/* DLP Networks - Main Stylesheet */

/* Base Styles */
body {
    background-color: #D3D3D3;
    padding-bottom: 40px;
    color: #5a5a5a;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* World/Globe Container */
.world {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.world #rotatingGlobe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    max-width: none;
    max-height: none;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

/* Main Page Content */
.page {
    background: rgba(200, 200, 200, 0.8);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-height: auto;
    padding: 20pt;
    color: #333333;
    font-weight: 600;
    border-radius: 8px;
}

/* Ultrawide monitor support */
@media (min-width: 1920px) {
    .page {
        width: 60%;
    }
}

.page header {
    margin-bottom: 10pt;
}

.page h1 {
    margin: 0;
    padding: 0;
    font-size: 24pt;
    font-weight: 700;
}

.page header p {
    margin: 5pt 0 0 0;
    font-size: 14pt;
    font-weight: 400;
}

.page .item-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10pt;
    padding: 20pt 0;
    flex-wrap: wrap;
}

.page .item {
    padding: 4pt 3pt;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    flex: 0 1 auto;
    text-align: center;
    margin: 2pt;
    min-width: 120pt;
    max-width: 150pt;
    position: relative;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    .page .item-section {
        flex-direction: column;
        gap: 15pt;
    }
    
    .page .item {
        flex: none;
        width: 100%;
        max-width: 300pt;
        margin: 5pt auto;
    }
}

@media (max-width: 480px) {
    .page .item {
        padding: 3pt 2pt;
        font-size: 12pt;
        min-width: 100pt;
    }
}


/* Footer */
footer {
    position: absolute;
    bottom: 0;
    padding-left: 50pt;
    font-size: 10pt;
    color: #666;
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .world #rotatingGlobe {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}
