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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f4efe8;
    color: #0b1726;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: #0b1726;
    color: #f4efe8;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease;
}

body.dark-mode::before{
    opacity: 0.05;
}

.content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.coming-soon {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.email {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #0b1726;
    text-decoration: none;
    letter-spacing: 1px;
    z-index: 1;
    transition: color 0.3s ease;
}

body.dark-mode .email {
    color: #f4efe8;
}

.email:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .logo-img {
        max-width: 90%;
    }

    .coming-soon {
        font-size: 1.5rem;
    }

    .email {
        font-size: 1.08rem;
    }
}
