/* ZoneLab Alpha Landing Page */

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

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.icon {
    width: 250px;
    height: 250px;
    display: block;
    margin: 0 auto 30px;
    max-width: 100%;
    height: auto;
}

.logo {
    display: block;
    margin: 0 auto 40px;
    width: auto;
    height: 60px;
    max-width: 100%;
}

.tagline {
    font-size: 18px;
    line-height: 1.6;
    color: #CCCCCC;
    letter-spacing: 0.5px;
}

.tagline a {
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 1px solid #FFFFFF;
    transition: opacity 0.2s ease;
}

.tagline a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .icon {
        width: 200px;
        height: 200px;
        margin-bottom: 24px;
    }

    .logo {
        height: 50px;
        margin-bottom: 32px;
    }

    .tagline {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .icon {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .logo {
        height: 40px;
        margin-bottom: 24px;
    }

    .tagline {
        font-size: 14px;
    }
}
