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

:root {
    --c-bg: #111111;
    --c-header: #151515;
    --c-card: #1a1a1a;
    --c-card2: #1e1e1e;
    --c-border: #2a2a2a;
    --c-border2: #333333;
    --c-yellow: #ffec00;
    --c-yellow-hover: #e6d400;
    --c-white: #ffffff;
    --c-text: #e0e0e0;
    --c-text-muted: #888888;
    --c-text-dim: #aaaaaa;
    --c-green: #22c55e;
    --c-red: #ef4444;
    --c-blue: #3b82f6;
    --c-gold: #f59e0b;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --tr: 0.22s ease;
}

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

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

body {
    font-family: 'Roboto', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--c-yellow);
    text-decoration: none;
    transition: color var(--tr);
}

a:hover {
    color: var(--c-yellow-hover);
}

ul {
    list-style: none;
}

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

.xw49k {
    display: none;
}

.zr71m {
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.qb93p {
    display: inline-block;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.ax-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

.ax-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--r-md);
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    transition: all var(--tr);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.ax-btn--yellow {
    background: var(--c-yellow);
    color: #111111;
}

.ax-btn--yellow:hover {
    background: var(--c-yellow-hover);
    color: #111111;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 236, 0, 0.3);
}

.ax-btn--white {
    background: var(--c-white);
    color: #111111;
}

.ax-btn--white:hover {
    background: #e8e8e8;
    color: #111111;
    transform: translateY(-1px);
}

.ax-btn--ghost {
    background: transparent;
    color: var(--c-white);
    border: 1px solid var(--c-border2);
}

.ax-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--c-text-muted);
    color: var(--c-white);
}

.ax-btn--sm {
    padding: 7px 16px;
    font-size: 0.82rem;
}

.ax-btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.ax-btn--full {
    width: 100%;
    justify-content: center;
}

.ax-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ax-badge--yellow {
    background: rgba(255, 236, 0, 0.15);
    color: var(--c-yellow);
}

.ax-badge--green {
    background: rgba(34, 197, 94, 0.15);
    color: var(--c-green);
}

.ax-badge--red {
    background: rgba(239, 68, 68, 0.15);
    color: var(--c-red);
}

.ax-section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

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

/* ==== HEADER ==== */
.ax-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    backdrop-filter: blur(8px);
}

.ax-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    height: 64px;
}

.ax-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.ax-logo img {
    height: 36px;
    width: auto;
    border-radius: var(--r-sm);
}

.ax-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-yellow);
    letter-spacing: 0.02em;
}

.ax-reviews-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid var(--c-border);
    margin-left: 8px;
}

.ax-reviews-count svg {
    width: 12px;
    height: 12px;
    fill: var(--c-yellow);
}

.ax-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.ax-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: var(--r-sm);
    font-size: 0.85rem;
    color: var(--c-text-dim);
    text-decoration: none;
    transition: all var(--tr);
}

.ax-nav-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.7;
}

.ax-nav-link:hover {
    color: var(--c-white);
    background: rgba(255, 255, 255, 0.06);
}

.ax-nav-link.active {
    color: var(--c-yellow);
}

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

.ax-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.ax-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ax-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.ax-burger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.ax-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.ax-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    z-index: 999;
    padding: 24px 16px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    border-top: 1px solid var(--c-border);
}

.ax-mobile-menu.open {
    display: flex;
}

.ax-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--r-md);
    color: var(--c-text);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--tr);
}

.ax-mobile-nav-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ax-mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-white);
}

.ax-mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--c-border);
}

/* ==== HERO ==== */
.ax-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.ax-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-admiral.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.ax-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.5) 60%, rgba(17, 17, 17, 0.2) 100%);
}

.ax-hero-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    padding: 60px 0;
}

.ax-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 236, 0, 0.12);
    border: 1px solid rgba(255, 236, 0, 0.25);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 0.78rem;
    color: var(--c-yellow);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ax-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.ax-hero-title span {
    color: var(--c-yellow);
}

.ax-hero-desc {
    color: var(--c-text-dim);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.ax-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ax-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ax-hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-yellow);
    display: block;
}

.ax-hero-stat-label {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

/* ==== RATING SUMMARY ==== */
.ax-rating-section {
    background: var(--c-card);
}

.ax-rating-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.ax-overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 36px 40px;
    text-align: center;
    min-width: 200px;
}

.ax-overall-score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--c-yellow);
    line-height: 1;
}

.ax-overall-stars {
    display: flex;
    gap: 4px;
    margin: 8px 0;
}

.ax-star {
    font-size: 1.4rem;
    color: #333;
}

.ax-star.filled {
    color: var(--c-yellow);
}

.ax-overall-count {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-top: 4px;
}

.ax-param-ratings {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ax-param-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 14px;
}

.ax-param-name {
    font-size: 0.88rem;
    color: var(--c-text);
}

.ax-param-bar-wrap {
    flex: 1;
    background: var(--c-border);
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
}

.ax-param-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffec00, #f59e0b);
    transition: width 0.8s ease;
}

.ax-param-score {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-yellow);
    min-width: 30px;
    text-align: right;
}

/* ==== CASINO INFO ==== */
.ax-info-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.ax-info-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--c-border);
    background: rgba(255, 255, 255, 0.02);
}

.ax-info-block-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-white);
}

.ax-info-toggle-btn {
    font-size: 0.82rem;
    color: var(--c-yellow);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--tr);
}

.ax-info-toggle-btn:hover {
    color: var(--c-yellow-hover);
}

.ax-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ax-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--c-border);
}

.ax-info-item:nth-child(even) {
    border-left: 1px solid var(--c-border);
}

.ax-info-key {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ax-info-val {
    font-size: 0.9rem;
    color: var(--c-white);
    font-weight: 500;
}

.ax-info-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.ax-info-logo-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--c-border2);
    border-radius: var(--r-sm);
    padding: 3px 10px;
    font-size: 0.78rem;
    color: var(--c-text-dim);
}

.ax-info-extra {
    display: none;
}

.ax-info-extra.visible {
    display: contents;
}

/* ==== BONUSES ==== */
.ax-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}

.ax-bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color var(--tr), transform var(--tr);
}

.ax-bonus-card:hover {
    border-color: rgba(255, 236, 0, 0.35);
    transform: translateY(-2px);
}

.ax-bonus-icon {
    font-size: 2rem;
}

.ax-bonus-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-white);
}

.ax-bonus-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-yellow);
}

.ax-bonus-desc {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

/* ==== PROS CONS ==== */
.ax-pc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ax-pc-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.ax-pc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.ax-pc-header--pros {
    background: rgba(34, 197, 94, 0.08);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--c-green);
}

.ax-pc-header--cons {
    background: rgba(239, 68, 68, 0.08);
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--c-red);
}

.ax-pc-list {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ax-pc-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--c-text);
}

.ax-pc-item-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==== LEAVE REVIEW BANNER ==== */
.ax-review-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #1e1a00 100%);
    border: 1px solid rgba(255, 236, 0, 0.2);
    border-radius: var(--r-xl);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.ax-review-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 6px;
}

.ax-review-banner-text p {
    font-size: 0.88rem;
    color: var(--c-text-muted);
}

/* ==== REVIEW FORM ==== */
.ax-form-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 36px;
}

.ax-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 24px;
}

.ax-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ax-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ax-form-group--full {
    grid-column: 1 / -1;
}

.ax-form-label {
    font-size: 0.82rem;
    color: var(--c-text-dim);
    font-weight: 500;
}

.ax-form-input,
.ax-form-textarea {
    background: var(--c-bg);
    border: 1px solid var(--c-border2);
    border-radius: var(--r-md);
    padding: 11px 14px;
    color: var(--c-white);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color var(--tr);
    width: 100%;
}

.ax-form-input:focus,
.ax-form-textarea:focus {
    outline: none;
    border-color: var(--c-yellow);
    box-shadow: 0 0 0 3px rgba(255, 236, 0, 0.1);
}

.ax-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.ax-form-input::placeholder,
.ax-form-textarea::placeholder {
    color: var(--c-border2);
}

.ax-rating-inputs {
    grid-column: 1 / -1;
}

.ax-rating-inputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.ax-rating-input-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ax-rating-input-label {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.ax-star-input {
    display: flex;
    gap: 4px;
}

.ax-star-input-star {
    font-size: 1.4rem;
    color: var(--c-border2);
    cursor: pointer;
    transition: color var(--tr), transform var(--tr);
    user-select: none;
}

.ax-star-input-star:hover,
.ax-star-input-star.active {
    color: var(--c-yellow);
    transform: scale(1.1);
}

.ax-form-success {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--r-md);
    padding: 20px 24px;
    text-align: center;
    color: var(--c-green);
    font-size: 0.95rem;
}

.ax-form-success.show {
    display: block;
}

.ax-form-success-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.ax-form-success h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.ax-form-success p {
    color: var(--c-text-muted);
    font-size: 0.88rem;
}

/* ==== USER REVIEWS ==== */
.ax-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.ax-review-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color var(--tr), transform var(--tr);
}

.ax-review-card:hover {
    border-color: var(--c-border2);
    transform: translateY(-2px);
}

.ax-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.ax-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ax-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border2);
}

.ax-review-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--c-white);
    margin-bottom: 2px;
}

.ax-review-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.ax-review-country-flag {
    width: 18px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.ax-review-date {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.ax-review-rating-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.ax-review-stars {
    display: flex;
    gap: 2px;
}

.ax-review-star {
    font-size: 1rem;
    color: #333;
}

.ax-review-star.filled {
    color: var(--c-yellow);
}

.ax-review-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-yellow);
}

.ax-review-details-btn {
    font-size: 0.72rem;
    color: var(--c-text-muted);
    background: none;
    border: 1px solid var(--c-border2);
    border-radius: 999px;
    padding: 2px 9px;
    cursor: pointer;
    transition: all var(--tr);
}

.ax-review-details-btn:hover {
    border-color: var(--c-yellow);
    color: var(--c-yellow);
}

.ax-review-param-detail {
    display: none;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 12px;
    gap: 8px;
    flex-direction: column;
}

.ax-review-param-detail.open {
    display: flex;
}

.ax-review-param-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
}

.ax-review-param-name {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.ax-review-param-stars {
    display: flex;
    gap: 2px;
}

.ax-review-param-star {
    font-size: 0.78rem;
    color: #333;
}

.ax-review-param-star.filled {
    color: var(--c-yellow);
}

.ax-review-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-white);
    line-height: 1.4;
}

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

.ax-review-body {
    position: relative;
}

.ax-review-truncated {
    max-height: none;
}

.ax-review-expand-btn {
    background: none;
    border: none;
    color: var(--c-yellow);
    font-size: 0.82rem;
    padding: 0;
    margin-top: 6px;
    cursor: pointer;
    display: inline;
}

.ax-review-expand-btn:hover {
    text-decoration: underline;
}

.ax-review-pc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ax-review-pros, .ax-review-cons {
    font-size: 0.82rem;
}

.ax-review-pros-title {
    color: var(--c-green);
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ax-review-cons-title {
    color: var(--c-red);
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ax-review-pros ul, .ax-review-cons ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ax-review-pros li, .ax-review-cons li {
    color: var(--c-text-dim);
    padding-left: 12px;
    position: relative;
}

.ax-review-pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--c-green);
    font-weight: 700;
}

.ax-review-cons li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: var(--c-red);
    font-weight: 700;
}

.ax-review-source {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.ax-review-source a {
    color: var(--c-blue);
    font-size: 0.78rem;
}

.ax-review-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--c-border);
}

.ax-vote-btns {
    display: flex;
    gap: 8px;
}

.ax-vote-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: var(--r-sm);
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    transition: all var(--tr);
}

.ax-vote-btn:hover {
    border-color: var(--c-border2);
    color: var(--c-white);
}

.ax-vote-btn.voted-up {
    border-color: rgba(34, 197, 94, 0.4);
    color: var(--c-green);
    background: rgba(34, 197, 94, 0.08);
}

.ax-vote-btn.voted-down {
    border-color: rgba(239, 68, 68, 0.4);
    color: var(--c-red);
    background: rgba(239, 68, 68, 0.08);
}

.ax-reply-btn {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    background: none;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 6px 12px;
    transition: all var(--tr);
}

.ax-reply-btn:hover {
    color: var(--c-white);
    border-color: var(--c-border2);
}

.ax-reply-form {
    display: none;
    margin-top: 12px;
}

.ax-reply-form.open {
    display: block;
}

.ax-reply-form textarea {
    width: 100%;
    background: var(--c-bg);
    border: 1px solid var(--c-border2);
    border-radius: var(--r-md);
    padding: 10px 12px;
    color: var(--c-white);
    font-size: 0.85rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 8px;
}

.ax-reply-form textarea:focus {
    outline: none;
    border-color: var(--c-yellow);
}

.ax-reply-actions {
    display: flex;
    gap: 8px;
}

/* ==== FAQ ==== */
.ax-faq {
    background: var(--c-card);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.ax-faq-item {
    border-bottom: 1px solid var(--c-border);
}

.ax-faq-item:last-child {
    border-bottom: none;
}

.ax-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-white);
    cursor: pointer;
    transition: background var(--tr);
    gap: 12px;
}

.ax-faq-q:hover {
    background: rgba(255, 255, 255, 0.03);
}

.ax-faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--c-text-muted);
    stroke-width: 2;
    transition: transform var(--tr);
}

.ax-faq-item.open .ax-faq-chevron {
    transform: rotate(180deg);
    stroke: var(--c-yellow);
}

.ax-faq-a {
    display: none;
    padding: 0 24px 18px;
    font-size: 0.88rem;
    color: var(--c-text-dim);
    line-height: 1.7;
}

.ax-faq-item.open .ax-faq-a {
    display: block;
}

/* ==== COMPARISON TABLE ==== */
.ax-table-wrap {
    overflow-x: auto;
    border-radius: var(--r-xl);
    border: 1px solid var(--c-border);
}

.ax-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.ax-compare-table th {
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text-muted);
    border-bottom: 1px solid var(--c-border);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ax-compare-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.88rem;
    color: var(--c-text);
    text-align: left;
}

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

.ax-compare-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.ax-compare-table .highlight td {
    background: rgba(255, 236, 0, 0.04);
}

.ax-compare-table .highlight td:first-child {
    border-left: 3px solid var(--c-yellow);
}

.ax-table-rating {
    font-weight: 700;
    color: var(--c-yellow);
}

/* ==== CONTENT BLOCK ==== */
.ax-content-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 36px 40px;
}

.ax-content-inner h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-white);
    margin: 24px 0 12px;
    line-height: 1.3;
}

.ax-content-inner h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-white);
    margin: 20px 0 10px;
}

.ax-content-inner h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 16px 0 8px;
}

.ax-content-inner p {
    color: var(--c-text);
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.75;
}

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

.ax-content-inner ul {
    list-style: disc;
}

.ax-content-inner ol {
    list-style: decimal;
}

.ax-content-inner li {
    color: var(--c-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.ax-content-inner a {
    color: var(--c-yellow);
    text-decoration: underline;
}

.ax-content-inner a:hover {
    color: var(--c-yellow-hover);
}

.ax-content-inner strong {
    font-weight: 600;
    color: var(--c-white);
}

.ax-content-inner em {
    font-style: italic;
    color: var(--c-text-dim);
}

.ax-content-inner blockquote {
    border-left: 3px solid var(--c-yellow);
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(255, 236, 0, 0.05);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.ax-content-inner blockquote p {
    color: var(--c-text-dim);
    font-style: italic;
    margin: 0;
}

.ax-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.ax-content-inner table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    border: 1px solid var(--c-border);
}

.ax-content-inner table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    font-size: 0.88rem;
    color: var(--c-text);
}

.ax-content-inner hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0;
}

.ax-content-inner img {
    border-radius: var(--r-md);
    margin: 16px 0;
}

.ax-content-inner h2:first-child {
    margin-top: 0;
}

/* ==== AUTHOR ==== */
.ax-author-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}

.ax-author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-border2);
}

.ax-author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 4px;
}

.ax-author-role {
    font-size: 0.8rem;
    color: var(--c-yellow);
    margin-bottom: 10px;
    font-weight: 500;
}

.ax-author-bio {
    font-size: 0.88rem;
    color: var(--c-text-dim);
    line-height: 1.65;
    margin-bottom: 14px;
}

.ax-author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ax-author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--r-md);
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border2);
    color: var(--c-text-dim);
    transition: all var(--tr);
}

.ax-author-link:hover {
    color: var(--c-white);
    border-color: var(--c-border2);
    background: rgba(255, 255, 255, 0.1);
}

.ax-author-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ==== FOOTER ==== */
.ax-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 40px 0 20px;
}

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

.ax-footer-logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ax-footer-logo img {
    height: 32px;
    width: auto;
}

.ax-footer-desc {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.ax-footer-col-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

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

.ax-footer-link {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    transition: color var(--tr);
}

.ax-footer-link:hover {
    color: var(--c-white);
}

.ax-footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ax-footer-trust-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    padding: 5px 12px;
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.ax-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ax-footer-copyright {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-align: center;
}

.ax-footer-legal {
    font-size: 0.75rem;
    color: var(--c-border2);
    line-height: 1.6;
    text-align: center;
}

/* ==== STICKY WIDGET ==== */
.ax-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, #111111 0%, #1a1800 50%, #111111 100%);
    border-top: 1px solid rgba(255, 236, 0, 0.25);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    backdrop-filter: blur(8px);
}

.ax-widget-text {
    font-size: 0.88rem;
    color: var(--c-text);
}

.ax-widget-text strong {
    color: var(--c-yellow);
}

.ax-widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color var(--tr);
}

.ax-widget-close:hover {
    color: var(--c-white);
}

/* ==== MODAL ==== */
.ax-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.ax-modal-overlay.open {
    display: flex;
}

.ax-modal {
    background: var(--c-card);
    border: 1px solid var(--c-border2);
    border-radius: var(--r-xl);
    padding: 32px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.2s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ax-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--tr);
}

.ax-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-white);
}

.ax-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 20px;
}

.ax-modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ax-modal-info-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border);
}

.ax-modal-info-item:nth-child(even) {
    padding-left: 16px;
}

.ax-modal-info-key {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ax-modal-info-val {
    font-size: 0.88rem;
    color: var(--c-white);
    font-weight: 500;
}

/* ==== DIVIDERS & UTILS ==== */
.ax-divider {
    height: 1px;
    background: var(--c-border);
    margin: 40px 0;
}

.ax-text-yellow {
    color: var(--c-yellow);
}

.ax-text-muted {
    color: var(--c-text-muted);
}

.ax-mb-0 {
    margin-bottom: 0 !important;
}

.ax-mt-24 {
    margin-top: 24px;
}

.ax-mt-32 {
    margin-top: 32px;
}

.ax-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* ==== BREADCRUMB ==== */
.ax-breadcrumb {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.ax-breadcrumb a {
    color: var(--c-text-muted);
}

.ax-breadcrumb a:hover {
    color: var(--c-text);
}

.ax-breadcrumb-sep {
    color: var(--c-border2);
}

/* ==== UNUSED DECORATIVES (for uniqualization) ==== */
.ux91b {
    display: none;
    contain: strict;
    content-visibility: hidden;
}

.pz47k {
    font-size: 0;
    line-height: 0;
    color: transparent;
    position: absolute;
    pointer-events: none;
    user-select: none;
}

.wm63r:not(:hover) {
    opacity: 0;
}

/* ==== WP-COMPAT STRUCTURE ==== */
.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
}

.entry-content {
    display: block;
}

.elementor-section {
    position: relative;
}

.post-thumbnail img {
    max-width: 100%;
}

/* ==== ANIMATIONS ==== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-yellow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 236, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 236, 0, 0);
    }
}

.ax-anim-fadeup {
    animation: fadeUp 0.5s ease both;
}

.ax-btn--yellow.ax-pulse {
    animation: pulse-yellow 2s ease infinite;
}

.ax-scroll-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ax-scroll-fade.visible {
    opacity: 1;
    transform: none;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 900px) {
    .ax-header-inner {
        grid-template-columns: auto 1fr auto auto;
    }

    .ax-nav {
        display: none;
    }

    .ax-burger {
        display: flex;
    }

    .ax-rating-grid {
        grid-template-columns: 1fr;
    }

    .ax-overall-rating {
        flex-direction: row;
        gap: 24px;
        padding: 20px 24px;
        min-width: unset;
        justify-content: flex-start;
        text-align: left;
    }

    .ax-pc-grid {
        grid-template-columns: 1fr;
    }

    .ax-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ax-hero-title {
        font-size: 1.9rem;
    }

    .ax-content-wrap {
        padding: 24px;
    }

    .ax-author-card {
        grid-template-columns: 1fr;
    }

    .ax-form-grid {
        grid-template-columns: 1fr;
    }

    .ax-review-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .ax-section {
        padding: 40px 0;
    }

    .ax-hero-title {
        font-size: 1.6rem;
    }

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

    .ax-footer-grid {
        grid-template-columns: 1fr;
    }

    .ax-review-pc {
        grid-template-columns: 1fr;
    }

    .ax-bonuses-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ax-info-grid {
        grid-template-columns: 1fr;
    }

    .ax-info-item:nth-child(even) {
        border-left: none;
    }

    .ax-modal-info-grid {
        grid-template-columns: 1fr;
    }

    .ax-modal-info-item:nth-child(even) {
        padding-left: 0;
    }

    .ax-hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ax-widget {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .ax-widget-close {
        top: 8px;
    }
}

@media (max-width: 400px) {
    .ax-bonuses-grid {
        grid-template-columns: 1fr;
    }

    .ax-hero-actions {
        flex-direction: column;
    }
}

.hfjd {
    max-width: 920px;
    margin: 0 auto;
    padding: 26px 20px 42px;
}

.hfjd p {
    margin: 0 0 14px;
    color: #e0e0e0;
    line-height: 1.85;
    font-size: 16px;
}

.hfjd h2 {
    margin: 28px 0 12px;
    font-size: 26px;
    line-height: 1.25;
    color: #ffec00;
}

.hfjd h3 {
    margin: 22px 0 10px;
    font-size: 20px;
    line-height: 1.3;
    color: #ffffff;
}

.hfjd h4 {
    margin: 18px 0 8px;
    font-size: 16px;
    line-height: 1.35;
    color: #cccccc;
}

.hfjd a {
    color: #ffec00;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 236, 0, .55);
    transition: opacity .2s ease, border-color .2s ease, color .2s ease;
    word-break: break-word;
}

.hfjd a:hover {
    opacity: .86;
    border-bottom-color: rgba(255, 236, 0, .9);
    color: #ffe85a;
}

.hfjd ul,
.hfjd ol {
    margin: 10px 0 18px 22px;
    padding: 0;
    color: #e0e0e0;
}

.hfjd li {
    margin: 8px 0;
    line-height: 1.75;
}

.hfjd ul li {
    position: relative;
    padding-left: 6px;
}

.hfjd ul li::marker {
    color: #ffec00;
}

.hfjd blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid #ffec00;
    background: rgba(255, 236, 0, .06);
    border-radius: 12px;
    color: #cfcfcf;
}

.hfjd table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

.hfjd th,
.hfjd td {
    padding: 12px 12px;
    border: 1px solid #333;
    text-align: left;
    vertical-align: top;
}

.hfjd th {
    background: #222;
    color: #ffec00;
    font-weight: 700;
}

.hfjd td {
    color: #e0e0e0;
}

.hfjd img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid #2b2b2b;
    margin: 16px 0;
}

.hfjd p:first-child {
    margin-top: 0;
}

.hfjd p:last-child {
    margin-bottom: 0;
}

.hfjd h2 + p,
.hfjd h3 + p,
.hfjd h4 + p {
    margin-top: 0;
}

@media (max-width: 992px) {
    .hfjd {
        max-width: 760px;
        padding: 22px 16px 36px;
    }

    .hfjd h2 {
        font-size: 24px;
    }

    .hfjd h3 {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .hfjd {
        padding: 18px 14px 30px;
    }

    .hfjd p {
        font-size: 15.5px;
        line-height: 1.8;
    }

    .hfjd h2 {
        font-size: 22px;
        margin: 22px 0 10px;
    }

    .hfjd h3 {
        font-size: 18px;
        margin: 18px 0 8px;
    }

    .hfjd ul,
    .hfjd ol {
        margin-left: 18px;
    }

    .hfjd table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hfjd th,
    .hfjd td {
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .hfjd {
        padding: 16px 12px 26px;
    }

    .hfjd p {
        font-size: 15px;
    }

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

    .hfjd h3 {
        font-size: 17px;
    }

    .hfjd blockquote {
        padding: 12px 14px;
    }
}

@media (max-width: 900px) {
    .ax-section {
        padding: 38px 0
    }

    .ax-container {
        padding: 0 14px
    }

    .ax-flex-between {
        gap: 10px;
        align-items: flex-start
    }

    .ax-section-title {
        font-size: 22px;
        line-height: 1.2
    }

    .ax-section-subtitle {
        font-size: 13px;
        line-height: 1.5;
        margin-top: 6px
    }

    .ax-rating-grid {
        grid-template-columns:1fr;
        gap: 14px
    }

    .ax-overall-rating {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 14px 14px;
        border-radius: 16px;
    }

    .ax-overall-score {
        font-size: 40px;
        line-height: 1;
        margin: 0;
    }

    .ax-overall-stars {
        margin: 0;
        gap: 3px
    }

    .ax-star {
        font-size: 16px
    }

    .ax-overall-count {
        font-size: 12px;
        margin-top: 2px
    }

    .ax-overall-rating .ax-btn {
        margin-top: 0 !important;
        padding: 10px 14px;
        border-radius: 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .ax-param-ratings {
        background: var(--c-card2);
        border: 1px solid var(--c-border);
        border-radius: 16px;
        padding: 12px 12px;
        gap: 10px;
    }

    .ax-param-row {
        grid-template-columns:1fr;
        gap: 8px;
        padding: 10px 10px;
        border: 1px solid var(--c-border);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
    }

    .ax-param-name {
        font-size: 14px;
        color: var(--c-text)
    }

    .ax-param-bar-wrap {
        height: 10px
    }

    .ax-param-score {
        justify-self: end;
        font-size: 14px;
        min-width: auto;
        padding: 2px 10px;
        border-radius: 999px;
        background: rgba(255, 236, 0, 0.12);
        border: 1px solid rgba(255, 236, 0, 0.25);
    }
}

@media (max-width: 480px) {
    .ax-container {
        padding: 0 12px
    }

    .ax-section-title {
        font-size: 20px
    }

    .ax-section-subtitle {
        font-size: 12.5px
    }

    .ax-overall-rating {
        padding: 12px 12px;
        gap: 12px
    }

    .ax-overall-score {
        font-size: 36px
    }

    .ax-star {
        font-size: 15px
    }

    .ax-overall-rating .ax-btn {
        padding: 9px 12px;
        font-size: 12.5px
    }

    .ax-param-row {
        padding: 10px 10px
    }

    .ax-param-name {
        font-size: 13.5px
    }

    .ax-param-score {
        font-size: 13px
    }
}

@media (max-width: 900px) {
    .ax-header {
        position: sticky;
        top: 0;
        z-index: 5000 !important
    }

    .ax-header-inner {
        position: relative;
        z-index: 5001 !important
    }

    .ax-header-actions {
        position: relative;
        z-index: 5002 !important
    }

    .ax-nav {
        display: none !important
    }

    .ax-reviews-count {
        display: none !important
    }

    .ax-header-actions .ax-btn {
        display: none !important
    }

    .ax-burger {
        display: flex !important;
        position: relative;
        z-index: 6000 !important
    }

    .ax-burger.active,
    .ax-burger.open,
    .ax-burger[aria-expanded="true"] {
        position: fixed !important;
        top: 12px !important;
        right: 12px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid var(--c-border2) !important;
        border-radius: 12px !important;
        padding: 10px !important;
        backdrop-filter: blur(10px) !important;
        z-index: 7000 !important;
    }

    .ax-mobile-menu {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        top: 64px !important;
        bottom: 0 !important;
        z-index: 4000 !important;
        display: none;
    }

    .ax-mobile-menu.open,
    .ax-mobile-menu.active {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .ax-burger.active,
    .ax-burger.open,
    .ax-burger[aria-expanded="true"] {
        top: 10px !important;
        right: 10px !important;
    }
}

.hx-wrap {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    backdrop-filter: blur(10px);
}

.hx-box {
    height: 64px;
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 18px;
}

.hx-logo {
    display: flex;
    align-items: center;
    text-decoration: none
}

.hx-logo img {
    height: 36px;
    width: auto;
    display: block;
    border-radius: 8px
}

.hx-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.hx-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 10px;
    color: var(--c-text-dim);
    text-decoration: none;
    transition: all .2s ease;
    font-size: .88rem;
}

.hx-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: .75
}

.hx-link:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--c-white)
}

.hx-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 9001
}

.hx-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--c-border);
    background: rgba(255, 255, 255, .05);
    color: var(--c-text-muted);
    font-size: .78rem;
}

.hx-count svg {
    width: 12px;
    height: 12px;
    fill: var(--c-yellow)
}

.hx-count strong {
    color: var(--c-white);
    font-weight: 700
}

.hx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 12px;
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .2s ease;
    white-space: nowrap;
}

.hx-btn--white {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    color: var(--c-white)
}

.hx-btn--white:hover {
    background: rgba(255, 255, 255, .14)
}

.hx-btn--yellow {
    background: var(--c-yellow);
    border-color: var(--c-yellow);
    color: #111
}

.hx-btn--yellow:hover {
    transform: translateY(-1px)
}

.hx-btn--ghost {
    background: transparent;
    border-color: var(--c-border2);
    color: var(--c-white)
}

.hx-btn--ghost:hover {
    background: rgba(255, 255, 255, .08)
}

.hx-btn--lg {
    padding: 12px 16px;
    font-size: .92rem
}

.hx-btn--full {
    width: 100%
}

.hx-burger {
    display: none;
    border: none;
    background: transparent;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    z-index: 9999;
}

.hx-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

.hx-burger span + span {
    margin-top: 4px
}

.hx-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px)
}

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

.hx-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px)
}

.hx-mmenu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    bottom: 0;
    z-index: 8500;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.hx-mmenu.open {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.hx-mlink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--c-text);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .03);
    transition: all .2s ease;
}

.hx-mlink svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    opacity: .9
}

.hx-mlink:hover {
    background: rgba(255, 255, 255, .07)
}

.hx-mmenu-actions {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 960px) {
    .hx-box {
        grid-template-columns:auto 1fr auto
    }

    .hx-nav {
        display: none
    }

    .hx-burger {
        display: inline-flex
    }
}

@media (max-width: 520px) {
    .hx-box {
        height: 60px;
        gap: 12px
    }

    .hx-logo img {
        height: 34px
    }

    .hx-count {
        display: none
    }

    .hx-actions .hx-btn {
        display: none
    }

    .hx-burger {
        display: inline-flex
    }

    .hx-mmenu {
        top: 60px
    }
}

@media (max-width: 360px) {
    .hx-logo img {
        height: 32px
    }

    .hx-burger {
        padding: 8px
    }
}

.ax-mmenu-overlay[hidden],
.ax-mobile-menu[hidden] {
    display: none !important;
}

.ax-mmenu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 2147483646;
}

.ax-mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    bottom: 0;
    background: var(--c-header);
    z-index: 2147483647;

    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 24px 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--c-border);
}

@media (max-width: 520px) {
    .ax-mobile-menu {
        top: 60px;
    }
}

.ax-wrapper {
    transform: none !important;
    filter: none !important;
}

.ax-mmenu-overlay[hidden],
.ax-mobile-menu[hidden] {
    display: none !important;
}

.ax-mmenu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 999998;
}

.ax-mobile-menu {
    position: fixed;
    inset: 0; /* top:0 right:0 bottom:0 left:0 */
    z-index: 999999;
    background: var(--c-header);

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 14px 16px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    pointer-events: auto !important;
}

.ax-mmenu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 2px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 6px;
}

.ax-mmenu-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.ax-mmenu-brand img {
    height: 34px;
    width: auto;
    display: block;
    border-radius: 8px;
}

.ax-mmenu-close {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 18px;
}

.ax-mobile-nav-link {
    color: rgba(255, 255, 255, .92) !important;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 12px 14px;
    text-decoration: none;
    pointer-events: auto !important;
}

.ax-mobile-nav-link:hover {
    background: rgba(255, 255, 255, .07);
}

.ax-mobile-menu * {
    pointer-events: auto !important;
}

.ax-mmenu-overlay {
    z-index: 2147483000 !important;
    pointer-events: auto !important;
}

.ax-mobile-menu {
    z-index: 2147483001 !important;
    pointer-events: auto !important;
}

.ax-mobile-menu * {
    pointer-events: auto !important;
}

.ax-mmenu-overlay[hidden],
.ax-mobile-menu[hidden] {
    display: none !important;
}
