/* === ОБЩИЙ СТИЛЬ И ФУТЕР === */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
}

/* === ОСНОВНОЙ ФОН КОНТЕНТА === */
.content-wrapper {
    flex: 1 0 auto;
    background-color: #111314;
    width: 100%;
    padding-top: 20px;
    box-sizing: border-box;
}

/* === МОБИЛЬНЫЙ РЕЖИМ: ОТСТУПЫ ПО БОКАМ === */
@media (max-width: 700px) {
    .content-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* === ОБЁРТКА ДЛЯ ЦЕНТРИРОВАНИЯ === */
.wrapper {
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* === БЛОК 1: Категории === */
.main__clashofclans {
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
}

.main__clashofclans-content {
    background-color: #161b1f;
    border: 0.5px solid #3a3a3a95;
    border-radius: 15px;
    overflow: hidden;
}

.main__clashofclans-content-img-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    object-position: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.main__clashofclans-content-donate {
    padding: 20px;
    text-align: center;
}

.main__clashofclans-content-donate-name {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 15px 0;
}

/* Сетка 2×2: Гемы | Пропуски
              Другое | Акции */
.main__clashofclans-content-donate-method {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 425px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.main__clashofclans-content-donate-method-gems     { grid-column: 1; grid-row: 1; }
.main__clashofclans-content-donate-method-pass     { grid-column: 2; grid-row: 1; }
.main__clashofclans-content-donate-method-other    { grid-column: 1; grid-row: 2; }
.main__clashofclans-content-donate-method-sale     { grid-column: 2; grid-row: 2; }

/* Кнопки */
.main__clashofclans-content-donate-method-gems,
.main__clashofclans-content-donate-method-pass,
.main__clashofclans-content-donate-method-sale,
.main__clashofclans-content-donate-method-other {
    position: relative;
    height: 42px;
    background-color: #3f4b55;
    border: 0.5px solid #3a3a3a95;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
    overflow: hidden;
}

.main__clashofclans-content-donate-method-pass,
.main__clashofclans-content-donate-method-sale,
.main__clashofclans-content-donate-method-other {
    background-color: #29323a;
}

/* Центрирование текста */
.aa1, .aa2, .aa3, .aa4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

/* Только основной текст */
.main__clashofclans-content-donate-method-gems-name1,
.main__clashofclans-content-donate-method-pass-name1,
.main__clashofclans-content-donate-method-sale-name1,
.main__clashofclans-content-donate-method-other-name1 {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

/* === БЛОК 2: Паки гемов === */
.main__clashofclans-donate-gems {
    width: 100%;
    max-width: 470px;
    margin: 20px auto;
    background-color: #161b1f;
    border: 0.5px solid #3a3a3a95;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
}

.main__clashofclans-donate-gems-name {
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    text-align: center;
    margin: 10px 0;
}

.main__clashofclans-donate-gems-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 400px;
    margin: 15px auto 0;
    justify-content: center;
}

.main__clashofclans-donate-gems-content-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 12px;
    position: relative;
    margin: 10px;
}

.main__clashofclans-donate-gems-content-item:hover {
    transform: translateY(-3px);
}

.main__clashofclans-donate-gems-content-item.selected {
    transform: translateY(0);
}

.main__clashofclans-donate-gems-content-item.selected img {
    border: 2px solid #249c94;
}

.main__clashofclans-donate-gems-content-item.selected::before {
    content: "Выбран";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #249c94;
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 10px;
    white-space: nowrap;
    z-index: 2;
}

.main__clashofclans-donate-gems-content-item img {
    width: 120px;
    height: auto;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.main__clashofclans-donate-gems-content-item .gems-name {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 8px 0 4px 0;
    text-align: center;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 130px;
    word-wrap: break-word;
    line-height: 1.2;
    display: block;
}

.main__clashofclans-donate-gems-content-item .gems-price {
    color: #ffa500;
    font-size: 16px;
    font-weight: 450;
    margin: 0;
    text-align: center;
    display: block;
}

/* === КНОПКА "КУПИТЬ" === */
.main__clashofclans-donate-pay-pay {
    display: block;
    margin: 15px auto;
    width: 400px;
    max-width: 100%;
    height: 40px;
    background-color: #249c94;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #114c48;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.1s;
}

.main__clashofclans-donate-pay-pay:hover:not(:disabled) {
    background-color: #1f7f79;
}

.main__clashofclans-donate-pay-pay:disabled {
    background-color: #3a3a3a;
    color: #777;
    cursor: not-allowed;
    border-color: #323232;
}

/* === БЛОК 3: Инструкция === */
.main__clashofclans-guide {
    width: 100%;
    max-width: 470px;
    margin: 20px auto;
    background-color: #161b1f;
    border: 0.5px solid #3a3a3a95;
    border-radius: 15px;
    overflow: hidden;
}

.main__clashofclans-guide-content {
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.gg1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 3px;
}

.main__clashofclans-guide-content-1-name {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.main__clashofclans-guide-content-1,
.main__clashofclans-guide-content-2,
.main__clashofclans-guide-content-3,
.main__clashofclans-guide-content-4 {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 10px;
}

.main__clashofclans-guide-content-1-img,
.main__clashofclans-guide-content-2-img,
.main__clashofclans-guide-content-3-img,
.main__clashofclans-guide-content-4-img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.main__clashofclans-guide-content-1-text,
.main__clashofclans-guide-content-2-text,
.main__clashofclans-guide-content-3-text,
.main__clashofclans-guide-content-4-text {
    color: #919191;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    padding: 2px 0;
    word-wrap: break-word;
}

/* === ВИДЕОИНСТРУКЦИЯ === */
.main__clashofclans-guide-video-wrapper {
    width: 100%;
    max-width: 640px;
    margin: 15px auto;
    border-radius: 12px;
    overflow: hidden;
}

.main__clashofclans-guide-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    border-radius: 12px;
}

/* ============
   МОБИЛЬНЫЙ РЕЖИМ (до 485px)
   ============ */
@media (max-width: 485px) {
    .main__clashofclans-content-donate-method {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .main__clashofclans-content-donate-method-gems,
    .main__clashofclans-content-donate-method-pass,
    .main__clashofclans-content-donate-method-sale,
    .main__clashofclans-content-donate-method-other {
        width: 100%;
        max-width: 400px;
        height: 42px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main__clashofclans-donate-gems-content {
        grid-template-columns: repeat(2, 1fr);
        margin: 15px auto;
    }

    .main__clashofclans-donate-gems-content-item img {
        width: 140px;
    }

    .main__clashofclans-donate-gems-content-item .gems-name,
    .main__clashofclans-donate-gems-content-item .gems-price {
        font-size: 15px;
    }

    .main__clashofclans-donate-pay-pay {
        width: 100%;
        max-width: 400px;
    }

    .main__clashofclans-guide-video-wrapper {
        max-width: 640px;
        margin: 15px auto;
    }
}

/* Убираем рамку на узких экранах */
@media (max-width: 767px) {
    .main__clashofclans-content,
    .main__clashofclans-donate-gems,
    .main__clashofclans-guide {
        border: none;
    }

.main__clashofclans-donate-gems-content-item:hover {
    transform: translateY(0px);
}
}