:root {
    --page-bg: #080603;
    --panel-bg: #0f0b05;
    --panel-border: #d69a21;
    --gold: #f7ce68;
    --gold-deep: #9a5d08;
    --gold-dark: #5d3603;
    --green: #31d65f;
    --green-dark: #15933a;
    --text: #f8e8b7;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: Arial, Tahoma, sans-serif;
    color: var(--text);
    text-align: center;
    background:
        linear-gradient(90deg, rgba(214, 154, 33, 0.12), transparent 18%, transparent 82%, rgba(214, 154, 33, 0.12)),
        linear-gradient(180deg, #151006 0%, var(--page-bg) 34%, #050403 100%),
        var(--page-bg);
}

.page-shell {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 14px 32px;
}

.container {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(180deg, rgba(247, 206, 104, 0.08), transparent 170px),
        var(--panel-bg);
    border: 2px solid var(--panel-border);
    border-radius: 10px;
    box-shadow:
        0 0 0 1px rgba(255, 224, 129, 0.2),
        0 18px 42px rgba(0, 0, 0, 0.55),
        0 0 26px rgba(214, 154, 33, 0.22);
}

.logo {
    width: 100%;
}

.logo img {
    width: min(46vw, 170px);
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
}

.buttons {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.cta {
    width: 90%;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    padding: 10px 18px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(255, 232, 166, 0.72);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    animation: pulse-effect 1s infinite;
}

.social-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: none;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.72),
        0 3px 8px rgba(0, 0, 0, 0.28);
}

.line-icon {
    color: #06c755;
}

.whatsapp-icon {
    color: #25d366;
}

.cta-text {
    min-width: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-channel {
    font-size: 13px;
    line-height: 1;
    opacity: 0.92;
}

.cta-label {
    font-size: 18px;
    line-height: 1.2;
}

.cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.signup {
    background: linear-gradient(180deg, var(--gold), var(--gold-deep) 58%, var(--gold-dark));
}

.signup:hover {
    filter: brightness(1.09);
}

.contact {
    background: linear-gradient(180deg, var(--green), var(--green-dark));
}

.contact:hover {
    filter: brightness(1.08);
}

@keyframes pulse-effect {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 206, 104, 0.55);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 12px 10px rgba(214, 154, 33, 0.34);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 206, 104, 0);
    }
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid rgba(247, 206, 104, 0.28);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.footer-banner-card {
    width: 94%;
    margin-top: 20px;
    padding: 10px;
    background: linear-gradient(180deg, #fff4c7, #d8a438 42%, #523108);
    border-radius: 10px;
    box-shadow:
        0 0 0 1px rgba(255, 236, 162, 0.55),
        0 10px 22px rgba(0, 0, 0, 0.34);
}

.footer-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.blur-image {
    object-fit: cover;
}

.credit-wrap {
    width: 100%;
    max-width: 700px;
}

.contacts {
    width: 100px;
    display: block;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #e6c266;
    text-align: left;
    text-decoration: none;
}

.contacts:hover {
    color: #fff6c7;
}

@media (max-width: 1024px) {
    .contacts {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-shell {
        padding: 14px 10px 24px;
    }

    .container {
        padding: 14px;
    }

    .logo img {
        width: min(50vw, 145px);
        margin-bottom: 16px;
    }

    .buttons {
        gap: 12px;
    }

    .cta {
        width: 94%;
        min-height: 50px;
        gap: 10px;
        padding: 9px 14px;
        font-size: 17px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 10px;
    }

    .cta-channel {
        font-size: 12px;
    }

    .cta-label {
        font-size: 17px;
    }

    .promo-image {
        margin-top: 14px;
    }

    .footer-banner-card {
        width: 96%;
        margin-top: 14px;
        padding: 7px;
        border-radius: 9px;
    }
}
