:root {
    --tmp-primary: #e8a03a;
    --tmp-primary-glow: rgba(232, 160, 58, 0.4);
    --tmp-bg-dark: #0d0d0f;
    --tmp-bg-card: rgba(26, 26, 30, 0.85);
    --tmp-bg-overlay: rgba(13, 13, 15, 0.75);
    --tmp-text: #f0f0f2;
    --tmp-text-muted: #a0a0a8;
    --tmp-border: rgba(255, 255, 255, 0.08);
    --tmp-radius: 12px;
    --tmp-font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --tmp-ease: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--tmp-font);
    color: var(--tmp-text);
    background: var(--tmp-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.tmp-cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--tmp-primary-glow) 0%, rgba(232, 160, 58, 0.1) 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    transition: opacity 0.15s ease;
}

.tmp-cursor-glow.is-hidden {
    opacity: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--tmp-ease), opacity var(--tmp-ease);
}

a:hover {
    color: var(--tmp-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.tmp-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.tmp-bg__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #0d0d0f 0%,
        #1a1520 25%,
        #0f1419 50%,
        #151a1f 75%,
        #0d0d0f 100%
    );
    background-size: 400% 400%;
    animation: tmpGradientMove 18s ease infinite;
}

.tmp-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: tmpGlowPulse 8s ease-in-out infinite;
}

.tmp-bg__glow--1 {
    width: 60vmax;
    height: 60vmax;
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, var(--tmp-primary-glow) 0%, transparent 70%);
    animation-delay: 0s;
}

.tmp-bg__glow--2 {
    width: 50vmax;
    height: 50vmax;
    bottom: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(80, 120, 180, 0.2) 0%, transparent 70%);
    animation-delay: -4s;
}

.tmp-bg__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

@keyframes tmpGradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes tmpGlowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.tmp-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.tmp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--tmp-bg-overlay);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tmp-border);
}

.tmp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.tmp-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    color: var(--tmp-text);
}

.tmp-logo:hover {
    color: var(--tmp-primary);
}

.tmp-logo__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tmp-primary);
    transition: color var(--tmp-ease), transform var(--tmp-ease);
}

.tmp-logo__icon svg {
    display: block;
    width: 36px;
    height: 36px;
}

.tmp-logo:hover .tmp-logo__icon {
    color: var(--tmp-primary);
    transform: scale(1.05);
}

.tmp-logo__text {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.tmp-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.tmp-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.tmp-nav__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--tmp-text-muted);
}

.tmp-nav__link--active,
.tmp-nav__link:hover {
    color: var(--tmp-primary);
}

.tmp-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tmp-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    cursor: pointer;
    color: var(--tmp-text);
    transition: background var(--tmp-ease), border-color var(--tmp-ease);
}

.tmp-burger:hover {
    background: var(--tmp-bg-card);
    border-color: var(--tmp-primary);
}

.tmp-burger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform var(--tmp-ease), opacity var(--tmp-ease);
}

.tmp-burger[aria-expanded="true"] .tmp-burger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.tmp-burger[aria-expanded="true"] .tmp-burger__line:nth-child(2) {
    opacity: 0;
}

.tmp-burger[aria-expanded="true"] .tmp-burger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
    .tmp-burger {
        display: flex;
    }

    .tmp-nav {
        position: fixed;
        display: none;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 64px);
            background: rgb(13 13 15);
        backdrop-filter: blur(12px);
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 24px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--tmp-ease), opacity var(--tmp-ease), visibility var(--tmp-ease);
        overflow-y: auto;
        z-index: 999;
    }

    .tmp-nav.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        display: flex;
    }

    .tmp-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .tmp-nav__link {
        display: block;
        padding: 14px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--tmp-border);
    }

    .tmp-header__actions {
        margin-top: auto;
        flex-direction: column;
    }

    .tmp-header__actions .tmp-btn {
        width: 100%;
        text-align: center;
    }
}

.tmp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: var(--tmp-font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--tmp-radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background var(--tmp-ease), color var(--tmp-ease), border-color var(--tmp-ease), box-shadow var(--tmp-ease);
}

.tmp-btn--primary {
    background: var(--tmp-primary);
    color: #0d0d0f;
    border-color: var(--tmp-primary);
}

.tmp-btn--primary:hover {
    background: #f0b050;
    box-shadow: 0 0 24px var(--tmp-primary-glow);
}

.tmp-btn--outline {
    background: transparent;
    color: var(--tmp-text);
    border-color: var(--tmp-border);
}

.tmp-btn--outline:hover {
    border-color: var(--tmp-primary);
    color: var(--tmp-primary);
}

.tmp-btn--lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.tmp-hero {
    padding: 80px 0 100px;
    position: relative;
}

.tmp-hero--with-bg .tmp-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.tmp-hero--with-bg .tmp-container {
    position: relative;
    z-index: 1;
}

.tmp-hero__content {
    max-width: 640px;
}

.tmp-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--tmp-text);
    text-shadow: 0 0 40px var(--tmp-primary-glow);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.tmp-hero__text {
    font-size: 1.15rem;
    color: var(--tmp-text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.tmp-hero .tmp-btn {
    margin-top: 8px;
}

.tmp-section {
    padding: 64px 0;
}

.tmp-section--alt {
    background: var(--tmp-bg-card);
    border-top: 1px solid var(--tmp-border);
    border-bottom: 1px solid var(--tmp-border);
}

.tmp-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--tmp-text);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

@keyframes tmp-card-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); border-color: rgba(255, 255, 255, 0.06); }
    50% { box-shadow: 0 8px 28px rgba(232, 160, 58, 0.12); border-color: rgba(232, 160, 58, 0.2); }
}

.tmp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tmp-card {
    background: var(--tmp-bg-card);
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    padding: 28px;
    transition: border-color var(--tmp-ease), box-shadow var(--tmp-ease);
    animation: tmp-card-glow 4s ease-in-out infinite;
}

.tmp-card:hover {
    border-color: rgba(232, 160, 58, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: none;
}

.tmp-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.tmp-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--tmp-text);
    margin-bottom: 10px;
}

.tmp-card__text {
    font-size: 0.95rem;
    color: var(--tmp-text-muted);
    line-height: 1.6;
}

.tmp-feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--tmp-bg-dark);
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    padding: 40px;
}

.tmp-feature__content {
    flex: 1;
    min-width: 280px;
}

.tmp-feature__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tmp-primary);
    text-shadow: 0 0 20px var(--tmp-primary-glow);
    margin-bottom: 12px;
}

.tmp-feature__text {
    color: var(--tmp-text-muted);
    margin-bottom: 24px;
    max-width: 480px;
}

.tmp-feature__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 2px solid var(--tmp-primary);
    border-radius: 50%;
    color: var(--tmp-primary);
    box-shadow: 0 0 24px var(--tmp-primary-glow);
}

.tmp-feature__num {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.tmp-feature__label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tmp-about-block {
    max-width: 720px;
}

.tmp-about-block__text {
    font-size: 1.05rem;
    color: var(--tmp-text-muted);
    line-height: 1.7;
}

.tmp-about-block__text a {
    color: var(--tmp-primary);
}

@keyframes tmp-review-glow {
    0%, 100% { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15); border-color: rgba(255, 255, 255, 0.06); }
    50% { box-shadow: 0 6px 20px rgba(232, 160, 58, 0.08); border-color: rgba(232, 160, 58, 0.15); }
}

.tmp-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.tmp-review {
    background: var(--tmp-bg-card);
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    padding: 24px;
    margin: 0;
    animation: tmp-review-glow 4.5s ease-in-out infinite;
}

.tmp-review:hover {
    animation: none;
}

.tmp-review__text {
    font-size: 1rem;
    color: var(--tmp-text);
    margin-bottom: 12px;
    font-style: italic;
}

.tmp-review__author {
    font-size: 0.9rem;
    color: var(--tmp-text-muted);
    font-style: normal;
}

.tmp-cta {
    text-align: center;
    padding: 80px 0;
}

.tmp-cta__text {
    color: var(--tmp-text-muted);
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.tmp-footer {
    padding: 56px 0 28px;
    border-top: 1px solid var(--tmp-border);
    background: linear-gradient(180deg, rgba(20, 20, 24, 0.98) 0%, rgba(13, 13, 15, 0.99) 100%);
}

.tmp-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tmp-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px 40px;
}

@media (min-width: 640px) {
    .tmp-footer__grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (min-width: 900px) {
    .tmp-footer__grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}

.tmp-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tmp-logo--footer {
    font-size: 1.35rem;
    font-weight: 700;
}

.tmp-footer__tagline {
    font-size: 0.9rem;
    color: var(--tmp-text-muted);
    max-width: 320px;
    line-height: 1.5;
}

.tmp-footer__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tmp-text-muted);
    margin-bottom: 12px;
    opacity: 0.9;
}

.tmp-footer__actions .tmp-footer__badges {
    margin-bottom: 16px;
}

.tmp-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tmp-footer__badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tmp-text);
    background: rgba(232, 160, 58, 0.12);
    border: 1px solid rgba(232, 160, 58, 0.35);
    border-radius: var(--tmp-radius);
    transition: background var(--tmp-ease), border-color var(--tmp-ease), color var(--tmp-ease), box-shadow var(--tmp-ease);
}

.tmp-footer__badge:hover {
    background: rgba(232, 160, 58, 0.2);
    border-color: var(--tmp-primary);
    color: var(--tmp-primary);
    box-shadow: 0 0 16px var(--tmp-primary-glow);
}

.tmp-footer__badge--age {
    background: rgba(232, 160, 58, 0.18);
    border-color: rgba(232, 160, 58, 0.5);
    color: var(--tmp-primary);
}

.tmp-footer__compliance {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.tmp-footer__compliance-link {
    display: inline-block;
    padding: 8px 12px;
    background: var(--tmp-bg-card);
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    opacity: 0.9;
    transition: opacity var(--tmp-ease), border-color var(--tmp-ease), box-shadow var(--tmp-ease);
}

.tmp-footer__compliance-link:hover {
    opacity: 1;
    border-color: rgba(232, 160, 58, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tmp-footer__compliance-logo {
    display: block;
    height: 32px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
}

.tmp-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 24px;
}

.tmp-footer__links a {
    font-size: 0.9rem;
    color: var(--tmp-text-muted);
    transition: color var(--tmp-ease);
}

.tmp-footer__links a:hover {
    color: var(--tmp-primary);
}

.tmp-footer__disclaimer-box {
    padding: 20px 24px;
    background: var(--tmp-bg-card);
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    border-left: 3px solid var(--tmp-primary);
}

.tmp-footer__disclaimer-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--tmp-primary);
    margin: 0 0 10px 0;
    letter-spacing: 0.02em;
}

.tmp-footer__disclaimer {
    font-size: 0.8rem;
    color: var(--tmp-text-muted);
    line-height: 1.6;
    margin: 0;
}

.tmp-footer__copy {
    font-size: 0.85rem;
    color: var(--tmp-text-muted);
    padding-top: 8px;
    border-top: 1px solid var(--tmp-border);
    opacity: 0.85;
}

.tmp-section__lead {
    color: var(--tmp-text-muted);
    margin-bottom: 32px;
    max-width: 560px;
}

.tmp-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

@keyframes tmp-game-card-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); border-color: rgba(255, 255, 255, 0.06); }
    50% { box-shadow: 0 8px 32px rgba(232, 160, 58, 0.15); border-color: rgba(232, 160, 58, 0.25); }
}

@keyframes tmp-game-card-img {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.tmp-game-card {
    background: var(--tmp-bg-card);
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    overflow: hidden;
    transition: border-color var(--tmp-ease), box-shadow var(--tmp-ease);
    animation: tmp-game-card-glow 3.5s ease-in-out infinite;
}

.tmp-game-card:hover {
    border-color: rgba(232, 160, 58, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: none;
}

.tmp-game-card__img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--tmp-bg-dark);
}

.tmp-game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: tmp-game-card-img 5s ease-in-out infinite;
}

.tmp-game-card:hover .tmp-game-card__img {
    animation: none;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.tmp-game-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: var(--tmp-primary);
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity var(--tmp-ease);
}

.tmp-game-card:hover .tmp-game-card__play {
    opacity: 1;
}

.tmp-game-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--tmp-text);
    margin: 16px 20px 8px;
}

.tmp-game-card__text {
    font-size: 0.9rem;
    color: var(--tmp-text-muted);
    margin: 0 20px 20px;
    line-height: 1.5;
}

.tmp-game-card .tmp-btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

.tmp-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--tmp-ease), visibility var(--tmp-ease);
}

.tmp-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.tmp-popup.is-open body {
    overflow: hidden;
}

.tmp-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.tmp-popup__wrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    background: var(--tmp-bg-dark);
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.tmp-popup__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--tmp-bg-card);
    border-bottom: 1px solid var(--tmp-border);
}

.tmp-popup__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tmp-text);
    margin: 0;
}

.tmp-popup__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    color: var(--tmp-text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--tmp-ease), border-color var(--tmp-ease), color var(--tmp-ease);
}

.tmp-popup__close:hover {
    background: var(--tmp-bg-card);
    border-color: var(--tmp-primary);
    color: var(--tmp-primary);
}

.tmp-popup__body {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
}

.tmp-popup__iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.tmp-form-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--tmp-ease), visibility var(--tmp-ease);
}

.tmp-form-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.tmp-form-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.tmp-form-popup__wrap {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 28px;
    background: var(--tmp-bg-dark);
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.tmp-form-popup__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tmp-primary);
    margin: 0 0 12px 0;
}

.tmp-form-popup__text {
    font-size: 1rem;
    color: var(--tmp-text-muted);
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.tmp-form-popup__close {
    width: 100%;
}

.tmp-page {
    padding: 48px 0 80px;
}

.tmp-page__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--tmp-text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.tmp-page__content {
    max-width: 720px;
}

.tmp-page__content p {
    color: var(--tmp-text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.tmp-page__content h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--tmp-text);
    margin-top: 32px;
    margin-bottom: 12px;
}

.tmp-page__content a {
    color: var(--tmp-primary);
}

.tmp-form {
    max-width: 480px;
    margin-top: 24px;
}

.tmp-form__group {
    margin-bottom: 20px;
}

.tmp-form__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tmp-text-muted);
    margin-bottom: 8px;
}

.tmp-form__input,
.tmp-form__textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--tmp-font);
    font-size: 1rem;
    color: var(--tmp-text);
    background: var(--tmp-bg-card);
    border: 1px solid var(--tmp-border);
    border-radius: var(--tmp-radius);
    transition: border-color var(--tmp-ease);
}

.tmp-form__input:focus,
.tmp-form__textarea:focus {
    outline: none;
    border-color: var(--tmp-primary);
}

.tmp-form__textarea {
    min-height: 120px;
    resize: vertical;
}

.tmp-form__msg {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--tmp-radius);
    font-size: 0.95rem;
    display: none;
}

.tmp-form__msg.is-visible {
    display: block;
}

.tmp-form__msg--success {
    background: rgba(0, 180, 100, 0.15);
    border: 1px solid rgba(0, 180, 100, 0.4);
    color: #6ee7a0;
}

.tmp-form__msg--error {
    background: rgba(220, 80, 80, 0.15);
    border: 1px solid rgba(220, 80, 80, 0.4);
    color: #f0a0a0;
}
