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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    height: 100vh;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.logo-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    animation: fadeIn 1s ease-out;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.logo-wrapper:hover .logo-text {
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8),
                 0 0 30px rgba(0, 212, 255, 0.6),
                 0 0 45px rgba(0, 212, 255, 0.4);
}

.logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8))
            drop-shadow(0 0 50px rgba(0, 212, 255, 0.6))
            drop-shadow(0 0 70px rgba(0, 212, 255, 0.4));
}

.logo-text {
    color: #00D4FF;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.contact-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    animation: pulse 2s infinite;
}

.contact-icon:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #00D4FF;
}

.contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.contact-form-overlay.active {
    display: flex;
}

.contact-form {
    background: rgba(20, 20, 20, 0.95);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
    animation: slideUp 0.5s ease-out;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: #00D4FF;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.contact-form h2 {
    color: #00D4FF;
    margin-bottom: 30px;
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 3px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 1.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D4FF;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00D4FF, #0099CC);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00E5FF, #00AADD);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo-container {
        bottom: 20px;
        right: 20px;
    }
    
    .logo {
        width: 70px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .contact-icon {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}