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

body {
    background-color: #000;
    color: #000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Стили для центрального логотипа */
.center-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.main-logo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.center-logo h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.top-row, .bottom-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-row {
    justify-content: space-between;
}

.bottom-row {
    justify-content: space-between;
}

.block-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.top-row .block-link:first-child {
    flex: 2;
}

.top-row .block-link:last-child,
.bottom-row .block-link {
    flex: 1;
}

.kraken-block {
    background-color: #fff;
    border-radius: 50px;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    transition: transform 0.3s;
    width: 100%;
    height: 100%;
}

.kraken-block:hover {
    transform: scale(1.02);
}

.pyxis-block {
    background-color: #fff;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    transition: transform 0.3s;
    width: 100%;
    height: 100%;
}

.pyxis-block:hover {
    transform: scale(1.02);
}

.small-block {
    background-color: #fff;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: transform 0.3s;
    width: 100%;
    height: 100%;
}

.small-block:hover {
    transform: scale(1.02);
}

h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

h5 {
    font-size: 20px;
    margin: 15px 0;
    font-weight: 700;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 250px;
    line-height: 1.5;
}

button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #333;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    max-width: 100%;
    height: auto;
}

/* Адаптивный дизайн */
@media (max-width: 1024px) {
    .top-row, .bottom-row {
        flex-direction: column;
    }

    .top-row .block-link,
    .bottom-row .block-link,
    .kraken-block, .pyxis-block, .small-block {
        width: 100%;
    }

    .main-logo {
        width: 150px;
    }

    .center-logo h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .top-row, .bottom-row {
        gap: 20px;
    }

    .kraken-block, .pyxis-block, .small-block {
        min-height: auto;
        padding: 25px;
    }

    h2 {
        font-size: 18px;
    }

    h5 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    button {
        padding: 8px 30px;
        font-size: 18px;
    }

    .main-logo {
        width: 120px;
    }

    .center-logo h1 {
        font-size: 32px;
    }

    .container {
        gap: 30px;
    }
}
