* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #00d4ff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2rem;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 3rem;
}

.logo {
    width: 100px;
    height: 100px;
    border: 2px solid #00d4ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    background: rgba(0, 212, 255, 0.05);
    animation: subtlePulse 4s ease-in-out infinite;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px #00d4ff);
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.4); }
}

.title-section {
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    color: #66d4ff;
    letter-spacing: 1px;
    animation: fadeIn 1.5s ease-out both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.video-container {
    position: relative;
    width: 300px;
    height: 533px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 212, 255, 1.5);
    background: transparent;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.video-player {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    background: #000;
    outline: none;
}

.contact-btn {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease-in-out;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.6);
}

.contact-btn:hover::before {
    left: 100%;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.modal-overlay.visible {
    opacity: 1;
}

.contact-form {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #00d4ff;
    border-radius: 15px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    animation: slideIn 0.6s ease-out;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s ease-in-out;
}

.contact-form.visible {
    transform: translateY(0) scale(1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-title {
    color: #00d4ff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00d4ff;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #00d4ff;
    border-radius: 5px;
    color: #00d4ff;
    font-family: inherit;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #66d4ff;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.2);
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.btn-submit {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #000;
}

.btn-cancel {
    background: transparent;
    border: 1px solid #ff4444;
    color: #ff4444;
}

.btn:hover {
    transform: translateY(-2px);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ff4444;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.close-btn:hover {
    color: #ff7777;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
    flex-wrap: wrap;
}

.cloudflare-logo {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(50%) sepia(98%) saturate(2065%) hue-rotate(180deg) brightness(118%) contrast(119%);
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .video-container {
        width: 250px;
        height: 444px;
    }
    
    .main-content {
        gap: 2rem;
    }
    
    .footer {
        font-size: 0.8rem;
        text-align: center;
    }

    .logo {
        width: 120px;
        height: 120px;
        border-radius: 10%;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 0.9rem;
    }
    
    .video-container {
        width: 200px;
        height: 356px;
    }

    .logo {
        width: 120px;
        height: 120px;
    }
}
.footer {
    color: #ffffff;
    text-decoration: none;
}
a {
    color: #ffffff;
    text-decoration: none;
}