@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&family=Russo+One&display=swap');

:root {
    --green: #087b3e;
    --green-dark: #045529;
    --yellow: #ffd900;
    --blue: #0b45c4;
    --white: #ffffff;
    --black: #050505;
    --text: #eeeeee;
    --muted: #aaaaaa;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 8%, rgba(8, 123, 62, .18), transparent 34%),
        radial-gradient(circle at 50% 100%, rgba(11, 69, 196, .12), transparent 32%),
        var(--black);
    color: var(--text);
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 32px 18px;
}

.hero {
    width: min(920px, 100%);
    text-align: center;
}

.accent-line {
    width: 110px;
    height: 5px;
    margin: 0 auto 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--green), var(--yellow), var(--blue));
}

h1 {
    margin: 0 0 24px;
    color: var(--white);
    font-family: "Russo One", Arial, sans-serif;
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1.15;
    text-transform: uppercase;
}

.logo-wrap {
    width: min(720px, 94%);
    margin: 0 auto 26px;
}

.logo-wrap img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .65));
}

.card {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: clamp(24px, 5vw, 42px);
    border: 1px solid rgba(255, 217, 0, .32);
    border-top: 4px solid var(--yellow);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(18, 18, 18, .97), rgba(5, 5, 5, .97));
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
}

.card h2 {
    margin: 0 0 24px;
    color: var(--yellow);
    font-family: "Russo One", Arial, sans-serif;
    font-size: clamp(1.45rem, 3.5vw, 2.2rem);
}

.card p {
    max-width: 680px;
    margin: 0 auto 17px;
    color: var(--text);
    font-size: clamp(1.08rem, 2vw, 1.25rem);
    line-height: 1.6;
}

.card strong {
    color: var(--white);
}

.instagram-area {
    margin: 24px auto 28px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 12px 20px;
    border: 2px solid var(--yellow);
    border-radius: 999px;
    color: var(--white);
    background: var(--green);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 123, 62, .4);
}

.instagram-icon {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}

.instagram-icon .dot {
    fill: currentColor;
    stroke: none;
}

.signature {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    color: var(--white) !important;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem) !important;
    font-weight: 700;
}

footer {
    padding: 28px 0 4px;
    color: var(--muted);
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .page {
        padding: 22px 12px;
    }

    h1 {
        margin-bottom: 18px;
    }

    .logo-wrap {
        width: 100%;
        margin-bottom: 20px;
    }

    .card {
        border-radius: 14px;
        padding: 24px 18px;
    }

    .card p {
        line-height: 1.52;
    }

    .instagram-link {
        width: 100%;
        max-width: 310px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .instagram-link {
        transition: none;
    }
}
