* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
}

.logo {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
}

.logo-red {
    color: #e53935;
}

.logo-black {
    color: #000;
}

.buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    min-width: 300px;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Wildberries */
.btn.wb {
    background: linear-gradient(90deg, #7b1fa2, #c2185b);
}

.btn.wb .icon {
    background: rgba(255,255,255,0.2);
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 700;
}

/* Ozon */
.btn.ozon {
    background: linear-gradient(90deg, #005bff, #1e88e5);
}

.btn.ozon .text {
    font-size: 22px;
    font-weight: 800;
}

.btn.ozon .subtext {
    font-size: 16px;
    font-weight: 500;
}

/* Footer */
.footer {
    max-width: 900px;
    text-align: center;
    font-size: 14px;
    color: #777;
    padding: 20px;
}


@media (max-width: 768px) {

    .logo {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .buttons {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .btn {
        min-width: 260px;
        width: 100%;
        font-size: 16px;
        padding: 16px 20px;
    }

    .btn.ozon .text {
        font-size: 20px;
    }

    .footer {
        font-size: 12px;
        padding: 16px;
    }
}
