    
body {
    background: linear-gradient(110deg, #7DC6F1 60%,#1368E4 60%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Allow selection for specific elements */
a {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.home-page {
    display:grid;
    grid-template-columns: 40px 50px auto 50px 40px;
    grid-row-gap: 80px;
    grid-template-rows: 25% 100px auto;
    font-family: 'Oswald', sans-serif;

}

.dexter {
    grid-column-start:3;
    grid-column-end:4;
    grid-row-start:2;
    grid-row-end:3;
    justify-items: center;
    color: white;

}

.dexter h1 {
    font-size:48px;
    font-weight: 600;
    margin: 0;
}

.what-i-do {
    grid-column-start:3;
    grid-column-end:4;
    grid-row-start:3;
    grid-row-end:3;
    font-size:24px;
    color:white;
}

/* Easter Egg Triggers */
.maps-trigger,
.data-trigger {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.maps-trigger:hover,
.data-trigger:hover {
    text-decoration-style: solid;
    opacity: 0.8;
}

/* Map Overlay */
.map-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-overlay.active {
    display: block;
    opacity: 1;
}

#map-container {
    width: 100%;
    height: 100%;
}

/* Close Button */
.close-map-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.close-map-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Location Status Message */
.location-status {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #333;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.location-status.visible {
    opacity: 1;
}

/* Data Fingerprint Overlay */
.data-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow-y: auto;
}

.data-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.data-container {
    background: white;
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.data-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 30px 0;
    color: #1368E4;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .data-container {
        padding: 20px;
        border-radius: 0;
        max-height: 100vh;
        height: 100%;
    }
    
    .data-container h2 {
        font-size: 24px;
        margin: 0 0 20px 0;
        padding-right: 40px;
    }
    
    .close-data-btn {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .data-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .data-section h3 {
        font-size: 18px;
    }
    
    .data-label {
        font-size: 11px;
    }
    
    .data-value {
        font-size: 14px;
    }
    
    .data-value code {
        font-size: 12px;
    }
    
    .warning-text {
        font-size: 13px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .data-overlay.active {
        padding: 0;
    }
    
    .data-container h2 {
        font-size: 20px;
    }
    
    .data-section h3 {
        font-size: 16px;
    }
}

.close-data-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 300;
}

.close-data-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.data-content {
    font-family: 'Oswald', sans-serif;
    color: #333;
}

.data-content .loading {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

.data-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.data-section:last-child {
    border-bottom: none;
}

.data-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #1368E4;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.data-item {
    display: flex;
    flex-direction: column;
}

.data-label {
    font-size: 12px;
    font-weight: 300;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.data-value {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    word-break: break-word;
}

.data-value code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 14px;
}

.warning-text {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
    color: #856404;
    border-radius: 4px;
}

.warning-text strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
