@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap");

:root {
    --clr-bg: #24344f;
    --clr-header: #0f1a2d;
    --clr-btn-dark: #0f1a2d;
    --clr-btn-blue: #3388ff;
    --clr-accent: #ffd700;
    --clr-text: #e8edf5;
    --clr-text-muted: #a0afcc;
    --clr-card: #1a2a42;
    --clr-card-alt: #162238;
    --clr-border: #2e4266;
    --clr-success: #2ecc71;
    --radius: 12px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

button {
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    line-height: 1.3;
    color: var(--clr-text);
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.section-gap {
    padding: 60px 0;
}

.section-gap-sm {
    padding: 40px 0;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--clr-text);
}

.section-subtitle {
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    font-size: 0.95rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    transition: transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--clr-btn-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(51, 136, 255, 0.35);
}

.btn-primary:hover {
    background: #2277ee;
    color: #fff;
}

.btn-dark {
    background: var(--clr-btn-dark);
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
}

.btn-dark:hover {
    background: #16283d;
    color: var(--clr-text);
}

.btn-accent {
    background: var(--clr-accent);
    color: #0f1a2d;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.btn-accent:hover {
    background: #e6c200;
    color: #0f1a2d;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* ── HEADER ── */
.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo img {
    height: 48px;
    width: auto;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.header-nav a {
    color: var(--clr-text-muted);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color var(--transition),
    background var(--transition);
    font-family: "Montserrat", sans-serif;
}

.header-nav a:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, 0.06);
}

.header-nav a.active {
    color: var(--clr-btn-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-online {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-online .dot {
    width: 7px;
    height: 7px;
    background: var(--clr-success);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition),
    opacity var(--transition);
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO SLIDER ── */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--clr-header);
}

.hero-slider .slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider .slide {
    min-width: 100%;
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    padding: 0 48px;
    max-width: 600px;
}

.hero-slider .slide-content h1,
.hero-slider .slide-content h2 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-slider .slide-content p {
    font-size: 1.05rem;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.slider-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background var(--transition),
    transform var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--clr-btn-blue);
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--clr-btn-blue);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* ── HERO STATIC ── */
.hero-static {
    background: var(--clr-header);
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-static .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
}

.hero-static .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px;
    max-width: 680px;
}

.hero-static .hero-content h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-static .hero-content p {
    font-size: 1rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.88);
}

.breadcrumbs {
    background: var(--clr-card);
    padding: 14px 0;
    font-size: 0.85rem;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: var(--clr-text-muted);
}

.breadcrumbs a {
    color: var(--clr-btn-blue);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .current {
    color: var(--clr-text-muted);
}

.card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--transition),
    box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.box-alt {
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px;
}

.jackpot-block {
    background: linear-gradient(135deg, #0f1a2d 0%, #162238 100%);
    border: 1px solid var(--clr-btn-blue);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 0 40px rgba(51, 136, 255, 0.15);
}

.jackpot-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

.jackpot-amount {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--clr-accent);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    letter-spacing: 2px;
}

.jackpot-label {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-top: 8px;
}

/* ── APP INFO ── */
.app-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.app-download-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    color: var(--clr-text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: border-color var(--transition),
    background var(--transition);
    text-decoration: none;
}

.dl-btn:hover {
    border-color: var(--clr-btn-blue);
    background: rgba(51, 136, 255, 0.07);
    color: var(--clr-text);
}

.dl-btn-icon {
    font-size: 1.5rem;
}

/* ── TABLES ── */
.tbl-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

table th {
    background: var(--clr-header);
    color: var(--clr-text);
    padding: 14px 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--clr-btn-blue);
}

table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
    vertical-align: top;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.025);
}

table tr:hover td {
    background: rgba(51, 136, 255, 0.06);
}

.table-param {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

.table-val {
    font-weight: 500;
}

/* ── GAMES GRID ── */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.game-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition),
    box-shadow var(--transition);
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.game-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--clr-header);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.game-card-body {
    padding: 14px;
}

.game-card-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* ── SWIPER/SLIDER generic ── */
.swiper-wrap {
    position: relative;
    overflow: hidden;
}

.swiper-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.swiper-track .swiper-item {
    min-width: calc(33.333% - 11px);
    flex-shrink: 0;
}

.swiper-arrows {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.swiper-btn {
    width: 38px;
    height: 38px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--transition);
}

.swiper-btn:hover {
    background: var(--clr-btn-blue);
}

/* ── BONUS CARDS ── */
.bonus-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition),
    box-shadow var(--transition);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.bonus-card-icon {
    font-size: 2.2rem;
}

.bonus-card-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--clr-text);
}

.bonus-card-amount {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.bonus-card-desc {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
}

/* ── PROMO CODE BLOCK ── */
.promo-block {
    background: linear-gradient(135deg, #0d1f3e 0%, #1a3260 100%);
    border: 2px solid var(--clr-btn-blue);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 0 50px rgba(51, 136, 255, 0.15);
}

.promo-block h2 {
    margin-bottom: 8px;
}

.promo-block p {
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}

.promo-code-display {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--clr-header);
    border: 2px dashed var(--clr-btn-blue);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.promo-code-text {
    padding: 14px 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--clr-accent);
}

.promo-copy-btn {
    background: var(--clr-btn-blue);
    color: #fff;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition);
    font-family: "Montserrat", sans-serif;
}

.promo-copy-btn:hover {
    background: #2277ee;
}

.promo-copied {
    color: var(--clr-success);
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.promo-copied.show {
    opacity: 1;
}

.demo-block {
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
}

.demo-block iframe {
    width: 100%;
    height: 540px;
    display: block;
    border: none;
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
}

.demo-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-icon {
    width: 22px;
    height: 22px;
    border: 2px solid var(--clr-text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform var(--transition),
    border-color var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--clr-btn-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease,
    padding var(--transition);
    padding: 0 22px;
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 22px 18px;
}

/* ── REVIEWS ── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-header);
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--clr-btn-blue);
    overflow: hidden;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-stars {
    color: var(--clr-accent);
    font-size: 1rem;
}

.review-text {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

/* ── REVIEW FORM ── */
.review-form-wrap {
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 540px;
}

.form-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: var(--clr-header);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--clr-text);
    font-family: "Roboto", sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition),
    box-shadow var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-btn-blue);
    box-shadow: 0 0 0 3px rgba(51, 136, 255, 0.15);
}

.form-group textarea {
    min-height: 100px;
}

.form-success {
    display: none;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid var(--clr-success);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--clr-success);
    font-weight: 500;
    font-size: 0.92rem;
    margin-top: 16px;
}

.form-success.show {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    align-items: center;
}

.author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-btn-blue);
}

.author-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.author-role {
    color: var(--clr-btn-blue);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.author-bio {
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.author-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-btn-blue);
    font-size: 0.85rem;
}

.author-links a:hover {
    text-decoration: underline;
}

/* ── METHODS BLOCK ── */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.method-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: border-color var(--transition),
    transform var(--transition);
}

.method-card:hover {
    border-color: var(--clr-btn-blue);
    transform: translateY(-3px);
}

.method-icon {
    font-size: 2rem;
}

.method-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.method-desc {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* ── SLOT CATEGORIES ── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.cat-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--transition),
    background var(--transition),
    transform var(--transition);
    font-family: "Montserrat", sans-serif;
}

.cat-card:hover {
    border-color: var(--clr-btn-blue);
    background: rgba(51, 136, 255, 0.07);
    transform: translateY(-3px);
}

.cat-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}

.feature-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: border-color var(--transition),
    transform var(--transition);
}

.feature-card:hover {
    border-color: var(--clr-btn-blue);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.feature-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ── COMPARISON TABLE ── */
.compare-table th {
    background: var(--clr-card-alt);
}

.compare-table .check {
    color: var(--clr-success);
    font-size: 1.1rem;
}

.compare-table .cross {
    color: #e74c3c;
    font-size: 1.1rem;
}

/* ── WIDGET ── */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0d1f3e 0%, #0f1a2d 100%);
    border-top: 2px solid var(--clr-btn-blue);
    z-index: 900;
    padding: 14px 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.widget-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.widget-text strong {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    color: var(--clr-accent);
}

.widget-text p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.widget-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color var(--transition);
}

.widget-close:hover {
    color: var(--clr-text);
}

/* ── FOOTER ── */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 60px 0 100px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 240px 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-heading {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--clr-btn-blue);
}

.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.provider-tag {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.payment-icon {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-text);
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.footer-legal-links a:hover {
    color: var(--clr-btn-blue);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #c0392b;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

/* ── CONTENT BLOCK ── */
.content-block {
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 40px;
}

.content-block h2 {
    margin: 28px 0 12px;
    font-size: 1.35rem;
    color: var(--clr-text);
}

.content-block h3 {
    margin: 22px 0 10px;
    font-size: 1.1rem;
    color: var(--clr-text);
}

.content-block p {
    margin-bottom: 14px;
    color: var(--clr-text-muted);
    line-height: 1.75;
}

.content-block ul,
.content-block ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.content-block li {
    margin-bottom: 6px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.content-block ul li {
    list-style: disc;
}

.content-block ol li {
    list-style: decimal;
}

.content-block a {
    color: var(--clr-btn-blue);
    text-decoration: underline;
}

.content-block strong {
    color: var(--clr-text);
}

.content-block em {
    color: var(--clr-accent);
}

.content-block table {
    margin: 20px 0;
}

.content-block blockquote {
    border-left: 4px solid var(--clr-btn-blue);
    padding: 14px 20px;
    background: var(--clr-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    color: var(--clr-text-muted);
}

/* ── PAGE HERO SIMPLE ── */
.page-hero-simple {
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    padding: 0;
}

.page-hero-simple .breadcrumbs {
    background: transparent;
    padding: 20px 0 0;
}

.page-hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--clr-text);
    padding: 20px 0 32px;
}

.bc-sep {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

/* ── TECHNICAL / BASETECHNICAL ── */
.technical-content,
.tech-content {
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 48px;
}

.tech-content h1 {
    margin-bottom: 24px;
    font-size: 2rem;
}

.tech-content h2 {
    margin: 32px 0 14px;
    font-size: 1.35rem;
    color: var(--clr-text);
}

.tech-content h3 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
    color: var(--clr-text);
}

.tech-content p {
    margin-bottom: 14px;
    color: var(--clr-text-muted);
    line-height: 1.75;
}

.tech-content ul,
.tech-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.tech-content li {
    margin-bottom: 6px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.tech-content ul li {
    list-style: disc;
}

.tech-content ol li {
    list-style: decimal;
}

/* ── VIDEO BLOCK ── */
.video-wrap {
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.video-wrap iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.video-caption {
    padding: 14px 20px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* ── GET BONUS BLOCK ── */
.get-bonus-block {
    background: linear-gradient(135deg, #0d1f3e 0%, #1a3260 100%);
    border: 1px solid var(--clr-btn-blue);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(51, 136, 255, 0.12);
}

.get-bonus-block h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 10px;
}

.get-bonus-block p {
    color: var(--clr-text-muted);
    margin-bottom: 28px;
}

.get-bonus-block .bonus-amount {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 28px;
    text-shadow: 0 0 24px rgba(255, 215, 0, 0.3);
}

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

.online-num {
    animation: countUp 0.5s ease forwards;
}

.wp-block-group,
.wp-site-blocks,
.is-layout-flow,
.entry-content,
.wp-embed-responsive {
    display: contents;
}

#wp-admin-bar,
.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.elementor-widget-wrap,
.elementor-section {
    display: contents;
}

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

.fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

.fade-in-d1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.fade-in-d2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.fade-in-d3 {
    animation-delay: 0.3s;
    opacity: 0;
}

.fade-in-d4 {
    animation-delay: 0.4s;
    opacity: 0;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .app-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-header);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 8px;
        border-bottom: 1px solid var(--clr-border);
        z-index: 999;
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav a {
        font-size: 1rem;
        padding: 10px 16px;
        width: 100%;
    }

    .burger {
        display: flex;
    }

    .hero-slider .slide {
        height: 320px;
    }

    .hero-slider .slide-content {
        padding: 0 24px;
    }

    .hero-static {
        height: 300px;
    }

    .hero-static .hero-content {
        padding: 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .author-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-photo {
        margin: 0 auto;
    }

    .widget-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .swiper-track .swiper-item {
        min-width: calc(100% - 0px);
    }

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

    .tech-content {
        padding: 28px 20px;
    }

    .content-block {
        padding: 24px 20px;
    }

    .box-alt {
        padding: 20px;
    }

    .promo-block {
        padding: 28px 20px;
    }

    .get-bonus-block {
        padding: 32px 20px;
    }

    .jackpot-block {
        padding: 28px 20px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions .btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .slider-arrow {
        display: none;
    }
}

.lpocu {
    max-width: 950px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--clr-text);
    line-height: 1.75;
}

.lpocu > *:first-child {
    margin-top: 0;
}

/* headings */

.lpocu h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.lpocu h2 {
    font-size: clamp(22px, 3vw, 32px);
    margin: 48px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--clr-border);
}

.lpocu h3 {
    font-size: clamp(18px, 2vw, 24px);
    margin: 30px 0 14px;
}

/* text */

.lpocu p {
    margin-bottom: 18px;
    color: var(--clr-text);
}

.lpocu strong {
    color: #fff;
}

.lpocu a {
    color: var(--clr-btn-blue);
    text-decoration: underline;
}

/* lists */

.lpocu ul,
.lpocu ol {
    margin: 20px 0;
    padding-left: 24px;
}

.lpocu li {
    margin-bottom: 10px;
}

/* tables */

.lpocu table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: var(--clr-card);
    border-radius: 12px;
    overflow: hidden;
}

.lpocu th {
    background: var(--clr-header);
    color: #fff;
    padding: 16px;
    text-align: left;
    font-weight: 700;
}

.lpocu td {
    padding: 16px;
    border-top: 1px solid var(--clr-border);
}

.lpocu tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

/* quote */

.lpocu blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--clr-btn-blue);
    background: var(--clr-card);
    border-radius: 0 12px 12px 0;
}

/* mobile */

@media (max-width: 768px) {

    .lpocu {
        padding: 28px 16px;
    }

    .lpocu h1 {
        font-size: 28px;
    }

    .lpocu h2 {
        font-size: 22px;
        margin-top: 36px;
    }

    .lpocu h3 {
        font-size: 18px;
    }

    .lpocu p,
    .lpocu li {
        font-size: 15px;
    }

    /* таблиці скроляться */
    .lpocu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .lpocu table {
        min-width: 560px;
    }

    .lpocu th,
    .lpocu td {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .lpocu {
        padding: 24px 14px;
    }

    .lpocu h1 {
        font-size: 24px;
    }

    .lpocu h2 {
        font-size: 20px;
    }

    .lpocu p,
    .lpocu li {
        font-size: 14px;
        line-height: 1.7;
    }
}

.lpocu {
    max-width: 950px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--clr-text);
    line-height: 1.75;
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.lpocu > *:first-child {
    margin-top: 0;
}

.lpocu h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.lpocu h2 {
    font-size: clamp(22px, 3vw, 32px);
    margin: 48px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--clr-border);
}

.lpocu h3 {
    font-size: clamp(18px, 2vw, 24px);
    margin: 30px 0 14px;
}

.lpocu p {
    margin-bottom: 18px;
    color: var(--clr-text);
}

.lpocu strong {
    color: #fff;
}

.lpocu a {
    color: var(--clr-btn-blue);
    text-decoration: underline;
}

.lpocu ul,
.lpocu ol {
    margin: 20px 0;
    padding-left: 24px;
}

.lpocu li {
    margin-bottom: 10px;
}

.lpocu table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    overflow: hidden;
}

.lpocu th {
    background: var(--clr-header);
    color: #fff;
    padding: 16px;
    text-align: left;
    font-weight: 700;
}

.lpocu td {
    padding: 16px;
    border-top: 1px solid var(--clr-border);
}

.lpocu tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.lpocu blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--clr-btn-blue);
    background: var(--clr-card);
    border-radius: 0 12px 12px 0;
}

@media (max-width: 768px) {
    .lpocu {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .lpocu h1 {
        font-size: 28px;
    }

    .lpocu h2 {
        font-size: 22px;
        margin-top: 36px;
    }

    .lpocu h3 {
        font-size: 18px;
    }

    .lpocu p,
    .lpocu li {
        font-size: 15px;
    }

    .lpocu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .lpocu table {
        min-width: 560px;
    }

    .lpocu th,
    .lpocu td {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .lpocu {
        padding: 20px 14px;
        border-radius: 10px;
    }

    .lpocu h1 {
        font-size: 24px;
    }

    .lpocu h2 {
        font-size: 20px;
    }

    .lpocu p,
    .lpocu li {
        font-size: 14px;
        line-height: 1.7;
    }
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--clr-header);
    border: 1px solid var(--clr-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

.hero-slider .slide {
    position: relative;
    min-width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-slider .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slider .slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(8, 15, 28, .92) 0%,
            rgba(8, 15, 28, .82) 40%,
            rgba(8, 15, 28, .45) 70%,
            rgba(8, 15, 28, .15) 100%
    );
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 60px;
}

.hero-slider h1,
.hero-slider h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
}

.hero-slider p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 30px;
}

.hero-slider strong {
    color: var(--clr-accent);
}

.hero-slider .btn {
    min-height: 56px;
    padding: 16px 36px;
    font-size: 16px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 26, 45, .85);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 5;
    transition: .25s;
}

.slider-arrow:hover {
    background: var(--clr-btn-blue);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-nav {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: .25s;
}

.slider-dot.active {
    background: var(--clr-accent);
    transform: scale(1.25);
}

@media (max-width: 768px) {

    .hero-slider {
        border-radius: 14px;
    }

    .hero-slider .slide {
        min-height: 420px;
    }

    .hero-slider .slide-bg::after {
        background: linear-gradient(
                180deg,
                rgba(8, 15, 28, .55) 0%,
                rgba(8, 15, 28, .82) 55%,
                rgba(8, 15, 28, .95) 100%
        );
    }

    .hero-slider .slide-content {
        max-width: 100%;
        padding: 30px 20px 70px;
        text-align: center;
    }

    .hero-slider h1,
    .hero-slider h2 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .hero-slider p {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-slider .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 14px;
    }

    .slider-arrow {
        display: none;
    }
}

@media (max-width: 480px) {

    .hero-slider .slide {
        min-height: 360px;
    }

    .hero-slider .slide-content {
        padding: 24px 16px 60px;
    }

    .hero-slider h1,
    .hero-slider h2 {
        font-size: 24px;
    }

    .hero-slider p {
        font-size: 14px;
    }

    .slider-nav {
        bottom: 14px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

.swiper-wrap {
    width: 100%;
    overflow: hidden;
}

.swiper-track {
    display: flex;
    gap: 16px;
    transition: transform .35s ease;
    will-change: transform;
}

.swiper-item {
    flex-shrink: 0;
}

.hero-static {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
    background: #0f1a2d;
    border: 1px solid var(--clr-border);
}

.hero-static .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.hero-static .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(8, 15, 28, .96) 0%,
            rgba(8, 15, 28, .88) 35%,
            rgba(8, 15, 28, .55) 70%,
            rgba(8, 15, 28, .25) 100%
    );
}

.hero-static .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px;
}

.hero-static h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 22px;
    color: #fff;
    text-transform: none;
}

.hero-static p {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 30px;
}

.hero-static .btn {
    min-height: 58px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 992px) {

    .hero-static {
        min-height: 450px;
    }

    .hero-static .hero-content {
        padding: 40px;
    }

    .hero-static h1 {
        font-size: 46px;
    }

    .hero-static p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {

    .hero-static {
        min-height: 380px;
        border-radius: 14px;
    }

    .hero-static .hero-bg::after {
        background: linear-gradient(
                180deg,
                rgba(8, 15, 28, .55) 0%,
                rgba(8, 15, 28, .85) 45%,
                rgba(8, 15, 28, .97) 100%
        );
    }

    .hero-static .hero-content {
        max-width: 100%;
        padding: 32px 20px;
        text-align: center;
    }

    .hero-static h1 {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .hero-static p {
        max-width: 100%;
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-static .btn {
        width: 100%;
        justify-content: center;
        min-height: 50px;
    }
}

@media (max-width: 480px) {

    .hero-static {
        min-height: 340px;
    }

    .hero-static h1 {
        font-size: 28px;
        line-height: 1.15;
    }

    .hero-static p {
        font-size: 14px;
    }
}