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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
}

/* Logo Section */
.logo-section {
    margin-bottom: 20px;
}

.main-logo {
    height: 50px;
    width: auto;
}

/* Products Section */
.products-title {
    font-size: 24px;
    color: #999;
    font-weight: 400;
    margin-bottom: 20px;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.product-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
    width: 450px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.product-card.clickable:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.product-logo {
    height: auto;
    width: 280px;
}

.product-text {
    font-size: 36px;
    color: #4285f4;
    font-weight: 400;
}

.coming-soon-text {
    font-size: 18px;
    color: #999;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .main-logo {
        height: 60px;
    }

    .products-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        min-width: 280px;
        padding: 30px 40px;
    }

    .product-domain {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        height: 30px;
    }

    .product-card {
        min-width: 250px;
        padding: 25px 30px;
    }

    .product-domain {
        font-size: 28px;
    }
}