* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
}

/* Marble texture overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 139, 139, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(169, 169, 169, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.content {
    width: 100%;
    text-align: center;
    animation: fadeIn 1.5s ease-in;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(218, 165, 32, 0.3));
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(218, 165, 32, 0.5);
}

.coming-soon {
    font-size: 2rem;
    font-weight: 300;
    color: #a8a8a8;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
}

.description {
    font-size: 1.1rem;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.contact-section {
    margin: 2rem 0;
}

.email-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-icon {
    width: 25px;
    height: 25px;
    color: #DAA520;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(218, 165, 32, 0.3));
}

.email-link:hover .email-icon {
    color: #FFD700;
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 10px 25px rgba(218, 165, 32, 0.5));
}

.email-link:active .email-icon {
    transform: translateY(-2px) scale(1.05);
}

.footer {
    width: 100%;
    padding: 1rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    margin-top: auto;
}

.rm-link {
    color: #DAA520;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.rm-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .content {
        padding-bottom: 2rem;
    }

    .logo-container {
        margin-bottom: 1.5rem;
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .brand-name {
        font-size: 2.2rem;
        letter-spacing: 0.3rem;
        margin-bottom: 0.8rem;
    }

    .coming-soon {
        font-size: 1.3rem;
        letter-spacing: 0.15rem;
        margin-bottom: 1rem;
    }

    .description {
        font-size: 0.95rem;
        padding: 0 1rem;
        line-height: 1.5;
    }

    .contact-section {
        margin: 1.5rem 0;
    }

    .email-icon {
        width: 25px;
        height: 25px;
    }

    .footer {
        font-size: 0.75rem;
        padding: 0.8rem;
        margin-top: auto;
        position: relative;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.75rem;
    }

    .content {
        padding-bottom: 2rem;
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .brand-name {
        font-size: 1.6rem;
        letter-spacing: 0.2rem;
        margin-bottom: 0.6rem;
    }

    .coming-soon {
        font-size: 1.1rem;
        letter-spacing: 0.1rem;
        margin-bottom: 0.8rem;
    }

    .description {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-section {
        margin: 1rem 0;
    }

    .email-icon {
        width: 25px;
        height: 25px;
    }

    .footer {
        font-size: 0.7rem;
        padding: 0.6rem;
        margin-top: auto;
        line-height: 1.4;
        position: relative;
    }
}
