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

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    position: relative;
    height: 100vh;
    background: #000;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1.5s ease-out;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.hotol-app {
    color: white;
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    animation: fadeInUp 1.5s ease-out;
}

.mazi-app {
    color: white;
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    animation: fadeInUp 1.5s ease-out;
}

.download-container {
    margin-bottom: 1rem;
    animation: fadeInUp 1.5s ease-out 0.2s both;
}

.download-icon {
    max-width: 150px;
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
    opacity: 0.9;
}

.coming-soon-text {
    color: white;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    animation: fadeInUp 1.5s ease-out 0.3s both;
    opacity: 0.9;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .content {
        padding: 1rem;
        padding-top: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .download-icon {
        max-width: 120px;
    }
    
    .coming-soon-text {
        margin-bottom: 0.3rem;
    }
    
    .hotol-app {
        margin-bottom: 0.8rem;
    }
    
    .download-container {
        margin-bottom: 0.8rem;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }
    
    .download-icon {
        max-width: 100px;
    }
    
    .coming-soon-text {
        margin-bottom: 0.2rem;
    }
    
    .hotol-app {
        font-size: clamp(1.5rem, 6vw, 3rem);
        margin-bottom: 0.6rem;
    }
    
    .download-container {
        margin-bottom: 0.6rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
}

/* Ensure video plays on mobile */
@media (max-width: 768px) {
    .video-background {
        object-position: center;
    }
} 