/* ==========================================================================
   WC Game — Legal / info pages (contacts, terms, license, privacy, ...)
   Restyled to match the landing page design system.
   ========================================================================== */

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #F2F2F7;
}

.root {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #11111b;
    background-image:
        radial-gradient(560px circle at 8% -10%, rgba(71, 81, 215, .28), transparent 70%),
        radial-gradient(520px circle at 100% 110%, rgba(52, 45, 159, .28), transparent 70%),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: auto, auto, 42px 42px, 42px 42px;
    padding: 40px 16px;
    box-sizing: border-box;
}

.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.content .icon .name {
    font-weight: 600;
    font-size: 18px;
    color: #F2F2F7;
    background: #23232F;
    display: inline-block;
    vertical-align: middle;
    padding: 10px 22px;
    line-height: 21px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(71, 81, 215, .35), 0 0 0 1px rgba(255,255,255,.06) inset;
}

.content .icon {
    user-select: none;
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.content .icon img {
    width: 70px;
    height: auto;
    vertical-align: middle;
    z-index: 3;
    position: relative;
}

.content .block {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #1a1a24;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255,255,255,.05) inset;
    border-radius: 28px;
    margin-top: 60px;
    margin-bottom: 12px;
    padding: 34px 26px;
    box-sizing: border-box;
}
.content .block.big {
    max-width: 800px;
}

.title {
    margin-top: 25px;
    text-align: center;
    background: linear-gradient(120deg, #7d88ef, #4751D7 55%, #E43A3A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 27px;
    font-weight: 700;
}

.price {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    color: #A5A5B6;
    text-transform: uppercase;
}

.price b {
    font-weight: 600;
    color: #F2F2F7;
}

.offers {
    width: 100%;
}

.header {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #F2F2F7;
    font-weight: 500;
}

.offers .item {
    display: inline-block;
    background: #23232F;
    color: #E7E7EF;
    width: calc(50% - 5px);
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset;
    transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .28s cubic-bezier(.16, 1, .3, 1), background .2s;
    cursor: pointer;
    user-select: none;
}

.offers .item:hover {
    background: #2b2b3a;
    box-shadow: 0 10px 28px rgba(71, 81, 215, .35), 0 0 0 1px rgba(255,255,255,.1) inset;
    transform: scale(1.05);
}
.offers .item.selected {
    background: linear-gradient(135deg, #342D9F, #3636BF, #4751D7);
    color: #fff;
    box-shadow: 0 10px 28px rgba(71, 81, 215, .45);
}

.offers .item .coins {
    font-size: 18px;
    font-weight: 600;
}

.offers .item .rub {
    opacity: 0.7;
}

.offers .item .rub b {
    font-weight: 600;
}

.offers .item.n1 {
    margin-right: 5px;
}
.offers .item.n2 {
    margin-left: 5px;
}

@media (max-width: 450px) {
    .offers .item{
        width: 100%;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

.input {
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 0;

    background: #23232F;
    color: #F2F2F7;
    outline: none;
    box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: box-shadow .2s;
}

.input:focus {
    box-shadow: 0 0 0 2px rgba(71, 81, 215, .6) inset;
}

.input::placeholder {
    color: #A5A5B6;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #A5A5B6;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #A5A5B6;
    opacity: 1;
}

.button {
    display: block;
    width: 100%;
    padding: 14px 15px;
    border: 0;
    box-sizing: border-box;
    border-radius: 999px;
    background: linear-gradient(135deg, #342D9F, #3636BF, #4751D7);
    box-shadow: 0 10px 28px rgba(71, 81, 215, .38);
    outline: none;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .28s cubic-bezier(.16, 1, .3, 1);
}

.button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 34px rgba(71, 81, 215, .55);
}

.social {
    margin-bottom: 40px;
    text-align: center;
    width: 90%;
}

.socialButton {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(6px);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #A5A5B6;
    margin: 8px 4px 0;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    transition: background 200ms ease-out, color 200ms ease-out, transform 200ms ease-out;
}

.socialButton:hover {
    background: rgba(255, 255, 255, .1);
    color: #F2F2F7;
    transform: translateY(-1px);
}

.copy {
    margin-bottom: 30px;
    color: #898994;
    font-size: 12px;
    font-weight: 400;
}

.contactsText {
    text-align: center;
    margin: 30px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #E7E7EF;
}

.contactsText a {
    font-weight: 600;
    color: #7d88ef;
}

.bigText{
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    color: #E7E7EF;
    white-space: pre-line;
    margin-bottom: 30px;
}
.bigText a {
    font-weight: 600;
    color: #7d88ef;
}
.error {
    color: #E43A3A;
    font-size: 14px;
    font-weight: 500;
    max-height: 50px;
    transition: all 200ms ease-out;
    padding-top: 10px;
    text-align: center;
}
.error.hidden {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
}
