@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --font-body: 'Manrope', 'Segoe UI', sans-serif;
    --font-display: 'Bebas Neue', 'Impact', sans-serif;

    --bg-950: #04070d;
    --bg-900: #091120;
    --bg-850: #0f1a2f;
    --surface-900: rgba(14, 24, 41, 0.88);
    --surface-800: rgba(21, 34, 56, 0.82);
    --surface-700: rgba(32, 50, 78, 0.78);
    --line: rgba(173, 207, 255, 0.2);

    --text-100: #eef5ff;
    --text-200: #d8e4f7;
    --text-300: #9fb2cf;

    --accent: #13d4cf;
    --accent-strong: #06a9bd;
    --accent-soft: rgba(19, 212, 207, 0.18);
    --warm: #ff8c42;
    --warm-strong: #f76737;
    --warm-soft: rgba(255, 140, 66, 0.18);

    --success: #49d86f;
    --danger: #ff6b6b;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 28px 60px rgba(1, 6, 16, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-100);
    background: radial-gradient(circle at 12% -10%, rgba(19, 212, 207, 0.3), transparent 40%),
                radial-gradient(circle at 90% 20%, rgba(255, 140, 66, 0.26), transparent 34%),
                linear-gradient(155deg, var(--bg-950), var(--bg-900) 55%, #141f33 100%);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(125deg, rgba(4, 7, 13, 0.5), rgba(4, 7, 13, 0.72));
    pointer-events: none;
    z-index: -1;
}

.background-image {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.26;
    filter: saturate(1.1) contrast(1.05) brightness(0.55);
    animation: slowPan 24s ease-in-out infinite alternate;
}

@keyframes slowPan {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

a {
    color: inherit;
    text-decoration: none;
}

.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100% - 28px));
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(130deg, rgba(10, 19, 34, 0.86), rgba(18, 32, 52, 0.82));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    z-index: 2000;
}

.nav-left ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-left a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-200);
    font-weight: 700;
    font-size: 0.87rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.nav-left a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), var(--warm));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-left a:hover,
.nav-left a.active {
    color: var(--text-100);
}

.nav-left a:hover::after,
.nav-left a.active::after {
    transform: scaleX(1);
}

.nav-center {
    justify-self: center;
}

.logo {
    display: block;
    height: clamp(34px, 4vw, 44px);
    width: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(15, 25, 43, 0.64);
    color: var(--text-100);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cart-icon:hover {
    transform: translateY(-2px);
    border-color: rgba(19, 212, 207, 0.6);
    background: rgba(19, 212, 207, 0.15);
}

.login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--warm), var(--warm-strong));
    color: #fff;
    font-weight: 800;
    font-size: 0.83rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(247, 103, 55, 0.35);
    filter: saturate(1.08);
}

.content,
.why-choose-us,
.catalog-section,
.steps-section {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.content {
    min-height: 100vh;
    padding-top: clamp(120px, 20vh, 170px);
    padding-bottom: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    animation: revealUp 0.8s ease both;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.satisfaction-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(19, 212, 207, 0.5);
    background: linear-gradient(125deg, var(--accent-soft), rgba(6, 169, 189, 0.08));
    color: #9beee8;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px rgba(19, 212, 207, 0.15);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.satisfaction-badge i {
    color: var(--accent);
}

.content h1 {
    margin-top: 18px;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 11vw, 7.2rem);
    letter-spacing: 0.06em;
    line-height: 0.92;
    text-transform: uppercase;
    max-width: 780px;
}

.content h1 span {
    background: linear-gradient(105deg, #f4fbff 0%, #a3edf7 36%, #ffc89f 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.subtitle {
    margin-bottom: 28px;
    max-width: 620px;
    color: var(--text-200);
    font-size: clamp(1.06rem, 2.2vw, 1.24rem);
    line-height: 1.6;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.features div {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid rgba(173, 207, 255, 0.3);
    background: rgba(12, 20, 35, 0.55);
    border-radius: 999px;
    color: var(--text-200);
    font-weight: 600;
    font-size: 0.9rem;
}

.features i {
    color: var(--accent);
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    min-height: 46px;
    padding: 0 24px;
    font-weight: 800;
    font-size: 0.84rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: linear-gradient(130deg, var(--accent), var(--accent-strong));
    color: #04202a;
    box-shadow: 0 12px 24px rgba(6, 169, 189, 0.34);
}

.btn.secondary {
    border-color: rgba(173, 207, 255, 0.38);
    background: rgba(17, 29, 48, 0.5);
    color: var(--text-100);
}

.btn.secondary:hover {
    border-color: rgba(255, 140, 66, 0.6);
    background: rgba(255, 140, 66, 0.12);
}

.rating {
    color: var(--text-300);
    font-size: 0.9rem;
}

.why-choose-us,
.catalog-section,
.steps-section {
    position: relative;
    padding-top: 72px;
}

.section-subtitle,
.steps-subtitle {
    color: #9beee8;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title,
.steps-title,
.catalog-title {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    line-height: 0.95;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    text-transform: uppercase;
    color: var(--text-100);
}

.section-description,
.steps-description,
.catalog-subtitle {
    margin-top: 14px;
    max-width: 760px;
    color: var(--text-300);
    font-size: 1rem;
    line-height: 1.6;
}

.features-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    position: relative;
    padding: 22px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(173, 207, 255, 0.22);
    background: linear-gradient(150deg, rgba(15, 25, 43, 0.9), rgba(18, 31, 50, 0.72));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    animation: revealUp 0.75s ease both;
}

.feature-card:nth-child(2) {
    animation-delay: 0.06s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.12s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.18s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.24s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.3s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--warm));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(19, 212, 207, 0.45);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(19, 212, 207, 0.22), rgba(255, 140, 66, 0.18));
    border: 1px solid rgba(173, 207, 255, 0.28);
    margin-bottom: 12px;
}

.card-icon i {
    color: #baf5ff;
    font-size: 1.15rem;
}

.feature-card h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--text-100);
}

.feature-card p {
    color: var(--text-300);
    line-height: 1.55;
    font-size: 0.92rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(173, 207, 255, 0.28);
    background: rgba(19, 212, 207, 0.14);
    color: #b9f8f6;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.tag.safe,
.tag.automatic,
.tag.online,
.tag.updated,
.tag.benefit,
.tag.proven {
    background: rgba(255, 140, 66, 0.16);
    color: #ffd0aa;
    border-color: rgba(255, 140, 66, 0.36);
}

.catalog-section {
    margin-top: 12px;
}

.catalog-container {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(173, 207, 255, 0.2);
    background: linear-gradient(155deg, rgba(10, 18, 32, 0.92), rgba(13, 23, 39, 0.72));
    box-shadow: var(--shadow-soft);
}

.catalog-header {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    min-width: 42px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(173, 207, 255, 0.32);
    border-radius: 999px;
    background: rgba(18, 30, 48, 0.82);
    color: var(--text-200);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(19, 212, 207, 0.65);
}

.filter-btn.active {
    color: #07262d;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), #69f0e6);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
}

.game-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(173, 207, 255, 0.22);
    background: linear-gradient(165deg, rgba(19, 30, 50, 0.78), rgba(13, 22, 37, 0.95));
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: revealUp 0.75s ease both;
}

.game-card:nth-child(2n) {
    animation-delay: 0.08s;
}

.game-card:nth-child(3n) {
    animation-delay: 0.12s;
}

.game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 0%, rgba(19, 212, 207, 0.16), transparent 45%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(19, 212, 207, 0.45);
    box-shadow: var(--shadow-soft);
}

.game-card:hover::after {
    opacity: 1;
}

.game-figure {
    position: relative;
    height: 252px;
    overflow: hidden;
}

.game-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-figure img {
    transform: scale(1.06);
}

.game-info {
    padding: 14px 14px 16px;
}

.game-title {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(173, 207, 255, 0.28);
    backdrop-filter: blur(6px);
    background: linear-gradient(130deg, rgba(7, 21, 35, 0.85), rgba(12, 34, 43, 0.8));
    color: var(--text-100);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.no-games {
    display: grid;
    place-items: center;
    min-height: 250px;
    text-align: center;
    border-radius: 20px;
    border: 1px dashed rgba(173, 207, 255, 0.34);
    background: rgba(14, 24, 40, 0.65);
    color: var(--text-300);
    padding: 28px;
}

.no-games i {
    display: block;
    font-size: 2.2rem;
    color: rgba(19, 212, 207, 0.7);
    margin-bottom: 10px;
}

.no-games h3 {
    margin-bottom: 6px;
    font-size: 1.2rem;
    color: var(--text-200);
}

.steps-section {
    padding-bottom: 76px;
}

.steps-container {
    display: grid;
    gap: 34px;
}

.steps-header {
    text-align: center;
}

.steps-title span {
    color: var(--accent);
}

.steps-description {
    margin-inline: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    position: relative;
    padding: 24px 18px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(173, 207, 255, 0.25);
    background: linear-gradient(150deg, rgba(17, 29, 48, 0.9), rgba(16, 26, 43, 0.72));
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 66, 0.55);
    box-shadow: var(--shadow-soft);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #101a2c;
    background: linear-gradient(135deg, #ffe2cc, #ffbb8e);
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(173, 207, 255, 0.28);
    background: linear-gradient(145deg, var(--accent-soft), rgba(255, 140, 66, 0.1));
}

.step-icon i {
    color: #a0f4eb;
    font-size: 1.25rem;
}

.step-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
    color: var(--text-100);
}

.step-card p {
    color: var(--text-300);
    font-size: 0.92rem;
    line-height: 1.55;
}

.steps-footer {
    text-align: center;
}

.cta-section h3 {
    font-size: 1.45rem;
    color: var(--text-100);
    margin-bottom: 8px;
}

.cta-section p {
    color: var(--text-300);
    margin-bottom: 18px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 12px 24px;
    border: 1px solid transparent;
    background: linear-gradient(140deg, var(--warm), var(--warm-strong));
    color: #fff;
    font-weight: 800;
    font-size: 0.84rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(247, 103, 55, 0.35);
}

.main-footer {
    border-top: 1px solid rgba(173, 207, 255, 0.2);
    background: rgba(8, 15, 27, 0.82);
    backdrop-filter: blur(8px);
    margin-top: 44px;
}

.footer-content {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-left p,
.footer-right p {
    color: var(--text-300);
    font-size: 0.84rem;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    padding: 20px;
    background: rgba(2, 5, 11, 0.72);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal-content {
    margin: 6vh auto;
    width: min(460px, 100%);
    border-radius: 24px;
    border: 1px solid rgba(173, 207, 255, 0.26);
    background: linear-gradient(165deg, rgba(12, 21, 35, 0.96), rgba(19, 32, 53, 0.88));
    box-shadow: var(--shadow-strong);
    animation: modalReveal 0.25s ease;
    overflow: hidden;
}

@keyframes modalReveal {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(173, 207, 255, 0.16);
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #b5f7f1;
}

.close-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(173, 207, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-200);
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 140, 66, 0.2);
    color: #fff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px 24px 24px;
}

.auth-form {
    padding: 20px 24px 24px;
}

.auth-form .form-group {
    margin-bottom: 14px;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-200);
    font-size: 0.88rem;
    font-weight: 700;
}

.auth-form .form-group input {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(173, 207, 255, 0.3);
    background: rgba(11, 20, 35, 0.92);
    color: var(--text-100);
    padding: 0 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: rgba(19, 212, 207, 0.7);
    box-shadow: 0 0 0 3px rgba(19, 212, 207, 0.16);
}

.auth-form .btn {
    width: 100%;
    margin-top: 8px;
    border: none;
    background: linear-gradient(140deg, var(--accent), var(--accent-strong));
    color: #08242a;
    cursor: pointer;
}

.switch-form {
    margin-top: 16px;
    text-align: center;
    color: var(--text-300);
    font-size: 0.88rem;
}

.switch-form a {
    color: #94f3ec;
    font-weight: 700;
}

#lojaModal .modal-content {
    width: min(560px, 100%);
}

.update-notice {
    text-align: left;
}

.notice-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border: 1px solid rgba(173, 207, 255, 0.28);
    background: linear-gradient(145deg, var(--accent-soft), rgba(255, 140, 66, 0.16));
    color: #b5f7f1;
    font-size: 1.5rem;
}

.update-notice h3 {
    font-size: 1.28rem;
    color: var(--text-100);
    margin-bottom: 8px;
}

.update-notice p {
    color: var(--text-300);
    line-height: 1.55;
    margin-bottom: 10px;
}

.crack-features {
    margin: 16px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid rgba(173, 207, 255, 0.26);
    background: rgba(17, 30, 50, 0.7);
    padding: 10px 11px;
    color: var(--text-200);
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-item i {
    color: var(--success);
}

.download-info {
    border-radius: 12px;
    border: 1px solid rgba(19, 212, 207, 0.35);
    background: rgba(19, 212, 207, 0.1);
    padding: 12px 14px;
    color: #9cefeb;
    font-size: 0.9rem;
    line-height: 1.45;
}

.modal-actions {
    display: flex;
    justify-content: center;
    padding: 4px 24px 24px;
}

.crack-btn {
    width: 100%;
    max-width: 320px;
    min-height: 46px;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    background: linear-gradient(140deg, var(--warm), var(--warm-strong));
    color: #fff;
    font-weight: 800;
    font-size: 0.83rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.crack-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(247, 103, 55, 0.35);
}

.crack-btn.disabled {
    background: linear-gradient(140deg, #556680, #6b7f99);
    cursor: not-allowed;
    box-shadow: none;
}

.crack-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

#gameModal .modal-content {
    width: min(860px, 100%);
}

.game-modal-info {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    padding: 6px 24px 12px;
}

.game-modal-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(173, 207, 255, 0.24);
    background: rgba(7, 15, 25, 0.8);
}

.game-modal-details h3 {
    margin: 0 0 8px;
    color: #a9f4ef;
    font-size: 1.05rem;
}

.game-modal-details p {
    color: var(--text-300);
    line-height: 1.55;
    margin-bottom: 16px;
}

.game-modal-details ul {
    list-style: none;
    display: grid;
    gap: 6px;
}

.game-modal-details li {
    position: relative;
    padding-left: 18px;
    color: var(--text-200);
    font-size: 0.93rem;
}

.game-modal-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(19, 212, 207, 0.2);
}

#gameModal .modal-actions {
    padding-top: 8px;
}

#toastContainer {
    position: fixed;
    top: 96px;
    right: 18px;
    z-index: 3500;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 240px;
    max-width: 340px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(173, 207, 255, 0.3);
    background: rgba(10, 21, 35, 0.95);
    color: var(--text-100);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-error {
    border-left: 4px solid var(--danger);
}

.toast-warning {
    border-left: 4px solid var(--warm);
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .navbar {
        top: 10px;
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .nav-center {
        order: -1;
        justify-self: start;
        grid-column: 1 / -1;
    }

    .nav-left ul {
        gap: 12px;
    }

    .nav-left a {
        font-size: 0.76rem;
    }

    .content {
        align-items: center;
        text-align: center;
        padding-top: 168px;
    }

    .content h1 {
        font-size: clamp(3.1rem, 16vw, 5.4rem);
    }

    .subtitle,
    .section-description,
    .steps-description,
    .catalog-subtitle {
        max-width: 100%;
    }

    .features,
    .buttons {
        justify-content: center;
    }

    .catalog-container {
        padding: 18px;
    }

    .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .game-modal-info {
        grid-template-columns: 1fr;
        padding: 0 18px 8px;
    }

    .game-modal-image img {
        height: 220px;
    }

    .crack-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    #toastContainer {
        left: 10px;
        right: 10px;
        top: auto;
        bottom: 12px;
    }

    .toast {
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 580px) {
    .content,
    .why-choose-us,
    .catalog-section,
    .steps-section {
        width: calc(100% - 24px);
    }

    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }

    .btn,
    .cta-button,
    .login-button {
        width: 100%;
    }

    .buttons {
        width: 100%;
    }

    .modal {
        padding: 12px;
    }

    .modal-content {
        margin: 4vh auto;
        border-radius: 18px;
    }

    .modal-header,
    .auth-form,
    .modal-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .game-figure {
        height: 226px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
