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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    width: 100%;
    background-color: #ffffff;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(200, 200, 200, 0.1) 10px,
            rgba(200, 200, 200, 0.1) 20px
        );
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Video Section */
.video-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #000;
}

.video-section.hidden {
    display: none;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Coming Soon Section */
.coming-soon-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    opacity: 0;
    transition: opacity 0.8s ease-in;
    background-color: #ffffff;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(200, 200, 200, 0.1) 10px,
            rgba(200, 200, 200, 0.1) 20px
        );
}

.coming-soon-section:not(.hidden) {
    opacity: 1;
}

.coming-soon-section.hidden {
    display: none;
}

.container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    z-index: 1;
}

/* Logo in upper right */
.logo {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 10;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Main Content - Centered */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

/* Centered Logo */
.logo-center {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-center img {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Coming Soon Text - Large, bold, black */
.coming-soon-text {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* Description Text - Smaller, grey */
.description-text {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .logo-center {
        margin-bottom: 25px;
    }
    
    .logo-center img {
        max-width: 150px;
    }
    
    .coming-soon-text {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .description-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .logo-center {
        margin-bottom: 20px;
    }
    
    .logo-center img {
        max-width: 120px;
    }
    
    .coming-soon-text {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .description-text {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .content {
        padding: 0 15px;
    }
}
