:root {
    --bg: #070311;
    --text: #ffffff;
    --border: #ff5aa5;
    --accent: #f0067f;
    --purple: #7b2ff7;
    --gold: #f0ba5a;
    --radius: 18px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #090414 0%, #05020b 100%);
}

.page-shell {
    min-height: 100vh;
    background: url("src/BG.webp") center / cover no-repeat;
    padding: 20px 0 40px;
    overflow: hidden;
}

.container {
    width: calc(100% - 32px);
    margin: 0 auto;
}

.hero__logo {
    width: 130px;
    margin: 0 auto -30px;
    display: block;
}

.hero__title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.socials__link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers {
    display: grid;
    grid-template-columns: 1fr minmax(0, 600px) 1fr;
    align-items: center;
    gap: 20px;
}

.col-left,
.col-right {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
    height: 100%;
}

.col-left img,
.col-right img {
    min-width: 600px;
    width: 100%;
    height: auto;
    position: absolute;
    top: -20%;
}
.col-right img {
    left: -50%;
}
.col-left img {
    right: -50%;
}
/* Центральна колонка */
.col-center {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

/* КАРТКИ */
.offer-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    min-height: 54px;
    padding: 14px 20px;

    border-radius: 20px; /* максимально кругла */
    border: none;

    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;

    /* 🔥 Градієнт як на кнопці */
    background: linear-gradient(180deg, #c30054 0%, #c6005c 100%);

    /* ✨ Глибина */
    box-shadow:
        0 8px 20px rgba(255, 0, 120, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transition: all 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(255, 0, 120, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* 🔥 MOBILE (до 640px) */
@media (max-width: 640px) {
    .offers {
        grid-template-columns: 1fr;
    }

    .col-left,
    .col-right {
        display: none;
    }

    .col-center {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* TABLET */
@media (min-width: 640px) {
    .hero__title {
        font-size: 26px;
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .container {
        max-width: 1100px;
    }

    .offers__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .offer-card {
        min-height: 110px;
    }

    .page-shell {
        background: url("src/BG.webp") center / cover no-repeat;
    }
}
