
        body {
            background-color: #050505;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #050505;
        }
        ::-webkit-scrollbar-thumb {
            background: #1a1d24;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #00f0ff;
        }

        .glass {
            background: rgba(15, 17, 21, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .glass-card {
            background: linear-gradient(145deg, rgba(26, 29, 36, 0.9) 0%, rgba(15, 17, 21, 0.9) 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            border-color: rgba(0, 240, 255, 0.3);
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
            transform: translateY(-5px);
        }

        .text-gradient {
            background: linear-gradient(to right, #00f0ff, #7000ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .animated-border {
            position: relative;
            background: #0f1115;
            border-radius: 12px;
            z-index: 1;
        }
        .animated-border::before {
            content: "";
            position: absolute;
            inset: -2px;
            border-radius: 14px;
            background: linear-gradient(45deg, #00f0ff, #7000ff, #00f0ff);
            z-index: -1;
            animation: border-spin 3s linear infinite;
            background-size: 200% 200%;
        }
        @keyframes border-spin {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        #canvas-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .form-input {
            background: rgba(26, 29, 36, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 12px 16px;
            color: white;
            width: 100%;
            transition: all 0.3s ease;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
        }

        .form-input:focus {
            outline: none;
            border-color: #00f0ff;
            box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.1);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.2);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
        }

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #f8fafc;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(0, 240, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00f0ff;
            transition: all 0.3s ease;
        }

        .contact-icon:hover {
            background: #00f0ff;
            color: #050505;
            transform: scale(1.1);
        }

        .map-container {
            position: relative;
            width: 100%;
            height: 260px;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
            pointer-events: none;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #10b981;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        .success-message {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
            border: 1px solid rgba(16, 185, 129, 0.2);
            color: #10b981;
            padding: 16px;
            border-radius: 12px;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            display: none;
        }

        .error-message {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(185, 28, 28, 0.1));
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #ef4444;
            padding: 16px;
            border-radius: 12px;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            display: none;
        }

*{
    max-width:100%;
    box-sizing:border-box;
}

img,
iframe,
video{
    max-width:100%;
    height:auto;
}

body{
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    overflow-x:hidden;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    html,
    body{
        overflow-x:hidden;
    }

    section{
        overflow:hidden;
    }

    h1,h2,h3,h4{
        line-height:1.2;
        word-break:break-word;
    }

    p{
        line-height:1.7;
    }

    .glass-card:hover{
        transform:none;
    }

    .animated-border::before{
        animation:none;
    }

    #canvas-container{
        height:100%;
    }

    .form-input{
        font-size:16px;
        padding:14px 16px;
    }

    iframe{
        width:100%;
        border-radius:20px;
    }

    .map-container{
        height:260px;
    }

    .contact-icon{
        width:42px;
        height:42px;
    }

    .container{
        padding-left:16px !important;
        padding-right:16px !important;
    }

    .glass,
    .glass-card{
        border-radius:20px;
    }

    .reveal{
        transform:translateY(20px);
    }
}
