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


:root {
    /* Background Colors */
    --bg-primary: #1B2B38;
    --bg-secondary: #1e3040;
    --bg-card: #243647;
    --bg-card-hover: #2a3f55;
    --bg-overlay: rgba(27, 43, 56, 0.92);
    --bg-input: #1a2e3e;
    --bg-modal: #192838;

    /* Button Colors */
    --btn-dark: #1B2C3D;
    --btn-dark-hover: #223447;
    --btn-accent: #DBFC4F;
    --btn-accent-hover: #c8ea3a;
    --btn-accent-text: #1B2B38;

    /* Text Colors */
    --text-primary: #f0f4f8;
    --text-secondary: #a8bccf;
    --text-muted: #6b8fa8;
    --text-inverse: #1B2B38;
    --text-accent: #DBFC4F;
    --text-link: #7ecff5;
    --text-link-hover: #a8dfff;

    /* Accent & Status */
    --accent: #DBFC4F;
    --accent-dim: rgba(219, 252, 79, 0.15);
    --accent-glow: rgba(219, 252, 79, 0.3);
    --success: #4CAF50;
    --success-dim: rgba(76, 175, 80, 0.15);
    --warning: #FFC107;
    --warning-dim: rgba(255, 193, 7, 0.15);
    --error: #f44336;
    --error-dim: rgba(244, 67, 54, 0.15);
    --info: #2196F3;

    /* Borders */
    --border: rgba(219, 252, 79, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(219, 252, 79, 0.5);

    /* Radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 4px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-accent: 0 4px 20px rgba(219, 252, 79, 0.2);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.25);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Typography */
    --font-primary: 'Montserrat', 'Inter', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-mono: 'Courier New', monospace;

    /* Transitions */
    --transition: all 0.25s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.4s ease;

    /* Z-index scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-widget: 999;
    --z-header: 500;

    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;
}

/* ============================================================
   2. BASE RESET & TYPOGRAPHY
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--text-link-hover);
    text-decoration: underline;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.25;
    color: var(--text-primary);
}

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

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

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

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

h6 {
    font-size: 0.9rem;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

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

strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

blockquote {
    border-left: 3px solid var(--accent);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--text-secondary);
}

code {
    font-family: var(--font-mono);
    background: var(--bg-card);
    padding: 2px 6px;
    border-radius: var(--radius-xs);
    font-size: 0.875rem;
    color: var(--accent);
}

pre {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius);
    overflow-x: auto;
    border: 1px solid var(--border-card);
}

hr {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin: var(--space-xl) 0;
}

/* ============================================================
   3. LAYOUT — WRAPPER & CONTAINER
   ============================================================ */
.g-body {
    background-color: var(--bg-primary);
}

.g-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.g-main {
    flex: 1;
    padding-top: var(--header-height);
}

.g-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

.g-section {
    padding: var(--space-3xl) 0;
}

.g-section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    position: relative;
    padding-bottom: var(--space-md);
}

.g-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

/* ============================================================
   4. HEADER
   ============================================================ */
.g-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-subtle);
    z-index: var(--z-header);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.g-header.scrolled {
    background-color: rgba(27, 43, 56, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.g-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    gap: var(--space-lg);
}

/* Logo */
.g-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.g-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.g-logo-text {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.g-logo-text span {
    color: var(--accent);
}

/* Navigation */
.g-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex: 1;
    justify-content: center;
}

.g-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
}

.g-nav-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.g-nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
    text-decoration: none;
}

.g-nav-link:hover svg {
    opacity: 1;
}

.g-nav-link.active {
    color: var(--accent);
}

.g-nav-link.active svg {
    opacity: 1;
    color: var(--accent);
}

/* Reviews count badge */
.g-reviews-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--accent-dim);
    border: 1px solid var(--border);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* Header Buttons */
.g-header-btns {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn-goto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    background: var(--btn-dark);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid var(--border-card);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-goto:hover {
    background: var(--btn-dark-hover);
    color: var(--text-primary);
    text-decoration: none;
    border-color: var(--border);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    background: var(--btn-accent);
    color: var(--btn-accent-text);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    animation: pulse 3s ease-in-out infinite;
}

.btn-accent:hover {
    background: var(--btn-accent-hover);
    color: var(--btn-accent-text);
    text-decoration: none;
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px);
    animation: none;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.btn-review:hover {
    background: var(--accent-dim);
    color: var(--accent);
    text-decoration: none;
}

/* Burger Menu */
.g-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-card);
    gap: 5px;
    padding: 8px;
    flex-shrink: 0;
    transition: var(--transition);
}

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

.g-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* Mobile Navigation Drawer */
.g-nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: calc(var(--z-header) - 1);
    padding: var(--space-xl) var(--space-lg);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--border-subtle);
}

.g-nav-mobile.is-open {
    transform: translateX(0);
}

.g-nav-mobile .g-nav-link {
    display: flex;
    padding: var(--space-md) var(--space-md);
    font-size: 1rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
}

.g-nav-mobile .g-nav-link:hover {
    border-color: var(--border);
}

.g-nav-mobile-btns {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
}

.g-nav-mobile-btns .btn-goto,
.g-nav-mobile-btns .btn-accent {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.g-hero {
    background: linear-gradient(160deg, #1a3045 0%, var(--bg-primary) 50%, #1a2535 100%);
    padding: var(--space-2xl) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.g-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(219, 252, 79, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(126, 207, 245, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.g-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.g-hero-banner-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

.g-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.g-hero-img:hover {
    transform: scale(1.02);
}

.g-hero-banner-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--accent);
    color: var(--text-inverse);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Rating Panel */
.g-rating-panel {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.g-overall-rating {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.g-overall-rating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #7ecff5);
}

.g-overall-score {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.g-overall-max {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.g-overall-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: var(--space-sm) 0;
}

.g-overall-stars .star {
    width: 22px;
    height: 22px;
    color: var(--accent);
    fill: var(--accent);
}

.g-overall-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.g-overall-count strong {
    color: var(--text-secondary);
}

/* Rating Breakdown Bars */
.g-rating-breakdown {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.g-rating-breakdown-title {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.g-rating-bar-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: 10px;
}

.g-rating-bar-row:last-child {
    margin-bottom: 0;
}

.g-rating-bar-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    width: 20px;
    text-align: right;
    flex-shrink: 0;
}

.g-rating-bar-track {
    flex: 1;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.g-rating-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: var(--radius-full);
    transition: width 0.8s ease;
}

.g-rating-bar-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    width: 24px;
    text-align: right;
    flex-shrink: 0;
}

/* Parameter Ratings */
.g-param-ratings {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.g-param-ratings-title {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.g-param-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.g-param-row:last-child {
    margin-bottom: 0;
}

.g-param-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.g-param-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.g-param-score {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

.g-param-track {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.g-param-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #7ecff5);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

/* Bonus Tiles */
.g-bonus-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.g-bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.g-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.g-bonus-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.g-bonus-card-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.g-bonus-card-value {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 4px;
}

.g-bonus-card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Pros & Cons */
.g-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.g-pros,
.g-cons {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.g-pros {
    border-top: 3px solid var(--success);
}

.g-cons {
    border-top: 3px solid var(--error);
}

.g-pros-title,
.g-cons-title {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

.g-pros-title {
    color: var(--success);
}

.g-cons-title {
    color: var(--error);
}

.g-pros-list,
.g-cons-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.g-pros-list li,
.g-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.g-pros-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.g-cons-list li::before {
    content: '✗';
    color: var(--error);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   6. LEAVE REVIEW SECTION
   ============================================================ */
.g-leave-review {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.g-bonus-banner {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1e3a52 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    margin-bottom: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.g-bonus-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #7ecff5, var(--accent));
}

.g-bonus-banner-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.g-bonus-banner-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.g-bonus-banner-text .highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Review Form */
.g-review-form {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.g-review-form-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.g-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

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

.g-form-label {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.g-form-input,
.g-form-select,
.g-form-textarea {
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    padding: 10px 14px;
    transition: var(--transition);
    width: 100%;
    outline: none;
}

.g-form-input:focus,
.g-form-select:focus,
.g-form-textarea:focus {
    border-color: var(--border-focus);
    background: #1e3448;
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.g-form-input::placeholder,
.g-form-textarea::placeholder {
    color: var(--text-muted);
}

.g-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236b8fa8' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
    cursor: pointer;
}

.g-form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.g-form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Star Rating Inputs */
.g-star-params {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.g-star-param-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.g-star-param-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.g-star-rating {
    display: flex;
    gap: 4px;
}

.g-star-rating .g-star-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    transition: transform 0.15s ease;
    line-height: 1;
}

.g-star-rating .g-star-btn:hover {
    transform: scale(1.2);
}

.g-star-rating .g-star-btn svg {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    fill: transparent;
    stroke: var(--text-muted);
    transition: var(--transition-fast);
}

.g-star-rating .g-star-btn.active svg,
.g-star-rating .g-star-btn.hovered svg {
    color: var(--accent);
    fill: var(--accent);
    stroke: var(--accent);
}

/* Main review title stars */
.g-star-rating-main {
    display: flex;
    gap: 6px;
    margin-bottom: var(--space-sm);
}

.g-star-rating-main .g-star-btn svg {
    width: 28px;
    height: 28px;
}

.g-form-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--text-inverse);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-submit:hover {
    background: var(--btn-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

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

.g-form-success {
    display: none;
    padding: var(--space-lg);
    background: var(--success-dim);
    border: 1px solid var(--success);
    border-radius: var(--radius);
    color: var(--success);
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    margin-top: var(--space-md);
}

/* ============================================================
   7. USER REVIEWS GRID
   ============================================================ */
.g-user-reviews {
    background: var(--bg-primary);
}

.g-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

/* Review Card */
.mb-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease forwards;
}

.mb-review-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.mb-review-card:hover::before {
    opacity: 1;
}

/* Review Header */
.mb-review-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mb-review-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.mb-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-card);
    background: var(--bg-secondary);
}

.mb-review-flag {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid var(--bg-card);
}

.mb-review-meta {
    flex: 1;
    min-width: 0;
}

.mb-review-author {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mb-review-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Star Rating Display */
.mb-review-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.mb-star-filled,
.mb-star-empty {
    width: 16px;
    height: 16px;
}

.mb-star-filled {
    color: var(--accent);
    fill: var(--accent);
}

.mb-star-empty {
    color: var(--text-muted);
    fill: transparent;
    stroke: var(--text-muted);
}

.mb-review-score {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
}

/* Review Title */
.mb-review-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Review Body */
.mb-review-body {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.mb-review-body-inner {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mb-review-body-inner.collapsed {
    max-height: 90px;
}

.mb-review-body-inner.expanded {
    max-height: 2000px;
}

.mb-review-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--text-link);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
    transition: var(--transition-fast);
}

.mb-review-expand-btn:hover {
    color: var(--text-link-hover);
}

/* Pros & Cons in Review Card */
.mb-review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    font-size: 0.8rem;
}

.mb-pros-col,
.mb-cons-col {
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.mb-pros-col-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--success);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.mb-cons-col-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--error);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.mb-pros-list,
.mb-cons-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mb-pros-list li,
.mb-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 1.4;
    color: var(--text-secondary);
}

.mb-pros-list li::before {
    content: '+';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.mb-cons-list li::before {
    content: '−';
    color: var(--error);
    font-weight: 700;
    flex-shrink: 0;
}

/* Review Source Badge */
.mb-review-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mb-review-source:hover {
    border-color: var(--border);
    color: var(--text-secondary);
    text-decoration: none;
}

.mb-review-source svg {
    width: 12px;
    height: 12px;
}

/* Review Actions */
.mb-review-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

.mb-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 5px 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.mb-action-btn:hover {
    border-color: var(--border);
    color: var(--text-secondary);
}

.mb-action-btn.liked {
    border-color: var(--success);
    color: var(--success);
    background: var(--success-dim);
}

.mb-action-btn.disliked {
    border-color: var(--error);
    color: var(--error);
    background: var(--error-dim);
}

.mb-action-btn svg {
    width: 14px;
    height: 14px;
}

.mb-action-count {
    font-weight: 600;
}

.mb-reply-toggle-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 5px 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mb-reply-toggle-btn:hover {
    border-color: var(--border);
    color: var(--text-secondary);
}

/* Reply Form */
.mb-reply-form {
    display: none;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    animation: slideUp 0.25s ease;
}

.mb-reply-form.is-visible {
    display: flex;
}

.mb-reply-textarea {
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.875rem;
    padding: 10px 14px;
    resize: vertical;
    min-height: 80px;
    outline: none;
    width: 100%;
}

.mb-reply-textarea:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.mb-reply-submit {
    align-self: flex-end;
    padding: 8px 20px;
    background: var(--btn-dark);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-card);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mb-reply-submit:hover {
    background: var(--bg-card-hover);
    border-color: var(--border);
}

/* ============================================================
   8. FAQ SECTION
   ============================================================ */
.g-faq {
    margin-top: var(--space-3xl);
}

.g-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.g-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.g-faq-item.is-open {
    border-color: var(--border);
}

.g-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
    user-select: none;
}

.g-faq-question:hover {
    color: var(--accent);
}

.g-faq-item.is-open .g-faq-question {
    color: var(--accent);
}

.g-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.2s ease;
}

.g-faq-item.is-open .g-faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.g-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.g-faq-answer-inner {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.g-faq-item.is-open .g-faq-answer {
    max-height: 600px;
}

/* ============================================================
   9. CASINO COMPARISON TABLE
   ============================================================ */
.g-comparison-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.g-comparison-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    cursor: grab;
}

.g-comparison-wrap:active {
    cursor: grabbing;
}

.g-comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: var(--bg-card);
    font-size: 0.875rem;
}

.g-comparison-table thead tr {
    background: var(--btn-dark);
    border-bottom: 2px solid var(--border);
}

.g-comparison-table thead th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.g-comparison-table thead th:first-child {
    color: var(--text-muted);
}

.g-comparison-table thead th.featured-col {
    color: var(--accent);
    background: rgba(219, 252, 79, 0.05);
}

.g-comparison-table tbody tr {
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.2s ease;
}

.g-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.g-comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.g-comparison-table tbody td {
    padding: var(--space-md) var(--space-lg);
    color: var(--text-secondary);
    vertical-align: middle;
}

.g-comparison-table tbody td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.g-comparison-table tbody td.featured-col {
    background: rgba(219, 252, 79, 0.03);
    color: var(--text-primary);
}

.g-comparison-table tfoot tr {
    background: var(--bg-secondary);
    border-top: 2px solid var(--border-subtle);
}

.g-comparison-table tfoot td {
    padding: var(--space-md) var(--space-lg);
}

.btn-casino-go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--accent);
    color: var(--text-inverse);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-casino-go:hover {
    background: var(--btn-accent-hover);
    color: var(--text-inverse);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

.btn-casino-go.secondary {
    background: var(--btn-dark);
    color: var(--text-primary);
    border: 1px solid var(--border-card);
}

.btn-casino-go.secondary:hover {
    background: var(--btn-dark-hover);
    color: var(--text-primary);
    box-shadow: none;
}

.table-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

.table-badge.good {
    background: var(--success-dim);
    color: var(--success);
}

.table-badge.neutral {
    background: var(--warning-dim);
    color: var(--warning);
}

/* ============================================================
   10. SUPPLEMENTARY CONTENT BLOCK
   ============================================================ */
.g-supplement {
    background: var(--bg-primary);
}

.g-content-block {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.g-content-block h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--border);
}

.g-content-block h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    border-left: 3px solid var(--accent);
}

.g-content-block h3 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.g-content-block h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.g-content-block h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.g-content-block h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.g-content-block p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.g-content-block a {
    color: var(--text-link);
    text-decoration: underline;
    text-decoration-color: rgba(126, 207, 245, 0.4);
}

.g-content-block a:hover {
    color: var(--text-link-hover);
    text-decoration-color: var(--text-link-hover);
}

.g-content-block strong,
.g-content-block b {
    color: var(--text-primary);
    font-weight: 700;
}

.g-content-block em,
.g-content-block i {
    font-style: italic;
    color: var(--text-secondary);
}

.g-content-block ul {
    list-style: none;
    margin: var(--space-md) 0;
    padding-left: 0;
}

.g-content-block ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.g-content-block ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 7px;
    flex-shrink: 0;
}

.g-content-block ol {
    list-style: none;
    counter-reset: content-counter;
    margin: var(--space-md) 0;
    padding-left: 0;
}

.g-content-block ol li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    counter-increment: content-counter;
}

.g-content-block ol li::before {
    content: counter(content-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.g-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 0.875rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
}

.g-content-block thead {
    background: var(--bg-secondary);
}

.g-content-block th {
    padding: 12px var(--space-md);
    text-align: left;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--border-subtle);
}

.g-content-block td {
    padding: 12px var(--space-md);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.g-content-block tr:last-child td {
    border-bottom: none;
}

.g-content-block tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.g-content-block blockquote {
    border-left: 3px solid var(--accent);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-secondary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* ============================================================
   11. AUTHOR SECTION
   ============================================================ */
.g-author {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
}

.g-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    flex-shrink: 0;
}

.g-author-info {
    flex: 1;
}

.g-author-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.g-author-title {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.g-author-bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.g-author-socials {
    display: flex;
    gap: var(--space-sm);
}

.g-author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.g-author-social-link:hover {
    border-color: var(--border);
    color: var(--text-secondary);
    text-decoration: none;
}

.g-author-social-link svg {
    width: 14px;
    height: 14px;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.g-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.g-footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.g-footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.g-footer-logo img {
    height: 36px;
    width: auto;
}

.g-footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.g-footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.g-footer-nav-title {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-sm);
}

.g-footer-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 2px 0;
}

.g-footer-link:hover {
    color: var(--text-secondary);
    text-decoration: none;
}

/* Trust logos / Certifications */
.g-trust-logos {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--space-xl);
}

.g-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Payment Methods */
.g-payment-methods {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin: var(--space-lg) 0;
}

.g-payment-badge {
    display: inline-flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xs);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Footer Bottom */
.g-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.g-copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.g-legal-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
    max-width: 800px;
}

/* Hidden WordPress-like meta div */
.g-wp-meta {
    display: none;
    visibility: hidden;
    position: absolute;
    pointer-events: none;
    overflow: hidden;
    width: 0;
    height: 0;
}

/* ============================================================
   13. STICKY WIDGET
   ============================================================ */
.g-widget {
    position: fixed;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-widget);
    background: var(--accent);
    border-radius: var(--radius-full);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: 0 8px 32px rgba(219, 252, 79, 0.35), 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.g-widget.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

.g-widget-text {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-inverse);
    line-height: 1.2;
}

.g-widget-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.75;
}

.g-widget-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 18px;
    background: var(--text-inverse);
    color: var(--accent);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.g-widget-link:hover {
    background: #f8f8f8;
    color: var(--accent);
    text-decoration: none;
}

.g-widget-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(27, 43, 56, 0.2);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-inverse);
    flex-shrink: 0;
    padding: 0;
}

.g-widget-close:hover {
    background: rgba(27, 43, 56, 0.35);
}

.g-widget-close svg {
    width: 14px;
    height: 14px;
}

/* ============================================================
   14. ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(219, 252, 79, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(219, 252, 79, 0);
    }
}

@keyframes widgetPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(219, 252, 79, 0.35);
    }
    50% {
        box-shadow: 0 8px 48px rgba(219, 252, 79, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

.g-widget {
    animation: widgetPulse 3s ease-in-out infinite;
}

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

.animate-slide-up {
    animation: slideUp 0.4s ease forwards;
}

/* ============================================================
   15. UTILITY CLASSES
   ============================================================ */
.text-accent {
    color: var(--accent);
}

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

.text-secondary {
    color: var(--text-secondary);
}

.text-success {
    color: var(--success);
}

.text-warning {
    color: var(--warning);
}

.text-error {
    color: var(--error);
}

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

.text-right {
    text-align: right;
}

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

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.1rem;
}

.text-xl {
    font-size: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.font-primary {
    font-family: var(--font-primary);
}

.bg-card {
    background: var(--bg-card);
}

.bg-secondary {
    background: var(--bg-secondary);
}

.bg-accent {
    background: var(--accent);
}

.border-accent {
    border-color: var(--border);
}

.rounded {
    border-radius: var(--radius);
}

.rounded-sm {
    border-radius: var(--radius-sm);
}

.rounded-full {
    border-radius: var(--radius-full);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.shadow {
    box-shadow: var(--shadow);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-xs {
    gap: var(--space-xs);
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.flex-1 {
    flex: 1;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

.grid {
    display: grid;
}

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

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

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.m-0 {
    margin: 0;
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

.p-sm {
    padding: var(--space-sm);
}

.p-md {
    padding: var(--space-md);
}

.p-lg {
    padding: var(--space-lg);
}

.p-xl {
    padding: var(--space-xl);
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky-top {
    position: sticky;
    top: calc(var(--header-height) + 16px);
}

.cursor-pointer {
    cursor: pointer;
}

.select-none {
    user-select: none;
}

.pointer-events-none {
    pointer-events: none;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* Badge variants */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.badge-accent {
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid var(--border);
}

.badge-success {
    background: var(--success-dim);
    color: var(--success);
}

.badge-warning {
    background: var(--warning-dim);
    color: var(--warning);
}

.badge-error {
    background: var(--error-dim);
    color: var(--error);
}

/* Dividers */
.divider {
    height: 1px;
    background: var(--border-subtle);
    margin: var(--space-xl) 0;
}

.divider-accent {
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: var(--space-lg) 0;
}

/* ============================================================
   16. WORDPRESS-LIKE CLASSES (NON-FUNCTIONAL)
   ============================================================ */
.wp-block-paragraph { /* standard paragraph block */
}

.wp-block-heading { /* heading block */
}

.wp-block-image { /* image block */
}

.wp-block-list { /* list block */
}

.wp-block-table { /* table block */
}

.wp-block-quote { /* quote block */
}

.wp-block-group { /* group block */
}

.wp-block-columns { /* columns block */
}

.wp-block-column { /* single column */
}

.wp-block-separator { /* separator block */
}

.wp-block-spacer { /* spacer block */
}

.wp-block-button { /* button block */
}

.wp-block-buttons { /* buttons container */
}

.wp-block-code { /* code block */
}

.wp-block-preformatted { /* preformatted text */
}

.wp-block-html { /* custom HTML block */
}

.wp-block-embed { /* embed block */
}

.wp-block-media-text { /* media & text block */
}

.wp-block-cover { /* cover block */
}

.elementor-section { /* elementor section */
}

.elementor-container { /* elementor container */
}

.elementor-column { /* elementor column */
}

.elementor-widget { /* elementor widget */
}

.elementor-widget-text-editor { /* text editor widget */
}

.elementor-widget-image { /* image widget */
}

.elementor-widget-heading { /* heading widget */
}

.elementor-widget-button { /* button widget */
}

.elementor-widget-divider { /* divider widget */
}

.elementor-element { /* elementor element base */
}

.elementor-inner { /* elementor inner */
}

.entry-content { /* standard entry content */
}

.entry-header { /* entry header */
}

.entry-footer { /* entry footer */
}

.entry-meta { /* entry meta info */
}

.post-content { /* post content area */
}

.page-content { /* page content area */
}

.site-main { /* site main */
}

.site-header { /* site header */
}

.site-footer { /* site footer */
}

.site-content { /* site content */
}

.has-text-color { /* text color support */
}

.has-background { /* background support */
}

.alignwide { /* wide alignment */
}

.alignfull { /* full alignment */
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: var(--space-md);
}

.alignright {
    float: right;
    margin-left: var(--space-md);
}

/* ============================================================
   17. RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
    :root {
        --container-max: 980px;
    }

    .g-hero-inner {
        grid-template-columns: 1.1fr 1fr;
        gap: var(--space-xl);
    }

    .g-bonus-tiles {
        grid-template-columns: repeat(3, 1fr);
    }

    .g-footer-inner {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: var(--space-xl);
    }
}

/* ============================================================
   18. RESPONSIVE — 992px
   ============================================================ */
@media (max-width: 992px) {
    :root {
        --header-height: 64px;
    }

    .g-nav {
        display: none;
    }

    .g-burger {
        display: flex;
    }

    .g-nav-mobile {
        display: block;
    }

    .g-hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .g-hero-banner-wrap {
        aspect-ratio: 21 / 9;
    }

    .g-rating-panel {
        display: grid;
        grid-template-columns: 1fr 1fr 1.5fr;
        gap: var(--space-md);
    }

    .g-bonus-tiles {
        grid-template-columns: repeat(3, 1fr);
    }

    .g-pros-cons {
        grid-template-columns: 1fr 1fr;
    }

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

    .g-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .g-footer-brand {
        grid-column: 1 / -1;
    }

    .g-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .g-author-socials {
        justify-content: center;
    }
}

/* ============================================================
   19. RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .g-section {
        padding: var(--space-2xl) 0;
    }

    .g-hero {
        padding: var(--space-xl) 0 var(--space-2xl);
    }

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

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

    .g-pros-cons {
        grid-template-columns: 1fr;
    }

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

    .mb-review-pros-cons {
        grid-template-columns: 1fr;
    }

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

    .g-star-params {
        grid-template-columns: 1fr;
    }

    .g-bonus-banner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }

    .g-review-form {
        padding: var(--space-lg);
    }

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

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

    .g-widget {
        bottom: var(--space-md);
        left: var(--space-md);
        right: var(--space-md);
        transform: none;
        border-radius: var(--radius-lg);
        flex-wrap: wrap;
        justify-content: center;
    }

    .g-widget.hidden {
        transform: translateY(20px);
    }

    .g-header-btns .btn-review {
        display: none;
    }

    .g-content-block {
        padding: var(--space-lg);
    }

    .g-trust-logos {
        gap: var(--space-xs);
    }
}

/* ============================================================
   20. RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .g-container {
        padding: 0 var(--space-md);
    }

    .g-header-inner {
        padding: 0 var(--space-md);
    }

    .g-logo-text {
        font-size: 1.1rem;
    }

    .g-hero-banner-wrap {
        aspect-ratio: 4 / 3;
    }

    .g-bonus-tiles {
        grid-template-columns: 1fr;
    }

    .g-bonus-card {
        padding: var(--space-md);
    }

    .g-overall-score {
        font-size: 3rem;
    }

    .g-btn-goto,
    .g-header-btns .btn-goto {
        padding: 7px 12px;
        font-size: 0.8rem;
    }

    .g-header-btns .btn-accent {
        padding: 7px 14px;
        font-size: 0.8rem;
    }

    .g-faq-question {
        font-size: 0.875rem;
        padding: var(--space-md);
    }

    .g-comparison-table {
        font-size: 0.8rem;
    }

    .g-comparison-table thead th,
    .g-comparison-table tbody td {
        padding: var(--space-sm) 12px;
    }

    .g-author {
        gap: var(--space-md);
    }

    .g-author-avatar {
        width: 64px;
        height: 64px;
    }

    .g-review-form {
        padding: var(--space-md);
    }

    .g-form-submit {
        justify-content: center;
    }

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

    .g-widget {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.875rem;
    }

    .g-widget-link {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/* ============================================================
   21. PRINT STYLES
   ============================================================ */
@media print {
    .g-header,
    .g-widget,
    .g-burger,
    .g-nav-mobile,
    .g-review-form,
    .mb-reply-form,
    .mb-review-actions {
        display: none !important;
    }

    .g-main {
        padding-top: 0;
    }

    body {
        background: white;
        color: black;
    }
}

/* ============================================================
   22. ADDITIONAL UNIQUE UTILITY STYLES (for uniqueness)
   ============================================================ */
.g-shimmer-text {
    background: linear-gradient(90deg, var(--accent) 0%, #fff 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.g-neon-border {
    border: 1px solid var(--accent);
    box-shadow: 0 0 8px var(--accent-glow), inset 0 0 8px var(--accent-dim);
}

.g-highlight-box {
    background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 100%);
    border-left: 3px solid var(--accent);
    padding: var(--space-md);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.g-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--success-dim);
    color: var(--success);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 7px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.g-license-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.g-rtp-meter {
    position: relative;
    height: 10px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.g-rtp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success), var(--accent));
    border-radius: var(--radius-full);
}

.g-count-up {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.g-divider-star {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.g-divider-star::before,
.g-divider-star::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.g-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.g-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.g-tooltip {
    position: relative;
    cursor: help;
}

.g-tooltip::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-card);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 100;
}

.g-tooltip:hover::after {
    opacity: 1;
}

.g-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: var(--accent);
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0 5px;
}

.g-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.g-category-tag:hover {
    border-color: var(--border);
    color: var(--text-primary);
    text-decoration: none;
}

:root {
    --x-header-bg: rgba(27, 43, 56, 0.88);
    --x-header-bg-solid: #1b2b38;
    --x-header-border: rgba(255, 255, 255, 0.08);
    --x-header-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    --x-header-shadow-strong: 0 14px 38px rgba(0, 0, 0, 0.26);
    --x-text-main: #f2f7fb;
    --x-text-soft: #a7bccd;
    --x-accent: #dbfc4f;
    --x-accent-dark: #1b2b38;
    --x-accent-hover: #cbed38;
    --x-surface: #223646;
    --x-surface-2: #1d2f3d;
    --x-surface-3: #253a4b;
    --x-radius: 18px;
    --x-radius-sm: 12px;
    --x-radius-pill: 999px;
    --x-header-height: 76px;
    --x-header-height-mobile: 62px;
    --x-container: 1200px;
}

html {
    scroll-padding-top: calc(var(--x-header-height) + 16px);
}

body.xsite-lock {
    overflow: hidden;
}

.xsite-header,
.xsite-header * {
    box-sizing: border-box;
}

.xsite-header {
    position: sticky;
    top: 0;
    z-index: 700;
    width: 100%;
    background: var(--x-header-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.xsite-header.is-scrolled {
    background: rgba(27, 43, 56, 0.96);
    border-bottom-color: rgba(219, 252, 79, 0.12);
    box-shadow: var(--x-header-shadow);
}

.xsite-header__wrap {
    max-width: var(--x-container);
    min-height: var(--x-header-height);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 18px;
}

.xsite-header__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.xsite-header__brand img {
    display: block;
    width: auto;
    height: 40px;
    object-fit: contain;
}

.xsite-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.xsite-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: var(--x-radius-pill);
    border: 1px solid transparent;
    color: var(--x-text-soft);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    transition: color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
    white-space: nowrap;
}

.xsite-nav__link:hover,
.xsite-nav__link:focus-visible {
    color: var(--x-text-main);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--x-header-border);
    outline: none;
}

.xsite-nav__link.is-active {
    color: var(--x-accent);
    background: rgba(219, 252, 79, 0.08);
    border-color: rgba(219, 252, 79, 0.18);
}

.xsite-nav__icon,
.xsite-mobile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.xsite-nav__icon svg,
.xsite-mobile__icon svg {
    width: 16px;
    height: 16px;
}

.xsite-nav__badge,
.xsite-mobile__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: var(--x-radius-pill);
    background: rgba(219, 252, 79, 0.12);
    border: 1px solid rgba(219, 252, 79, 0.16);
    color: var(--x-accent);
    font-size: 0.72rem;
    font-weight: 700;
}

.xsite-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.xsite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: var(--x-radius-pill);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.xsite-btn:hover,
.xsite-btn:focus-visible {
    text-decoration: none;
    outline: none;
    transform: translateY(-1px);
}

.xsite-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.xsite-btn--ghost {
    color: var(--x-text-main);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--x-header-border);
}

.xsite-btn--ghost:hover,
.xsite-btn--ghost:focus-visible {
    color: var(--x-text-main);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.xsite-btn--accent {
    color: var(--x-accent-dark);
    background: var(--x-accent);
    border: 1px solid transparent;
    box-shadow: 0 10px 24px rgba(219, 252, 79, 0.18);
}

.xsite-btn--accent:hover,
.xsite-btn--accent:focus-visible {
    color: var(--x-accent-dark);
    background: var(--x-accent-hover);
    box-shadow: 0 14px 28px rgba(219, 252, 79, 0.22);
}

.xsite-burger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--x-header-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.xsite-burger:hover,
.xsite-burger:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(219, 252, 79, 0.18);
    outline: none;
}

.xsite-burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--x-text-main);
    transition: transform 0.22s ease, opacity 0.2s ease;
}

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

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

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

.xsite-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 16px 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.xsite-mobile.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.xsite-mobile__inner {
    background: var(--x-header-bg-solid);
    border: 1px solid var(--x-header-border);
    border-radius: 20px;
    box-shadow: var(--x-header-shadow-strong);
    padding: 12px;
}

.xsite-mobile__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.xsite-mobile__link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--x-text-main);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    transition: background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.xsite-mobile__link:hover,
.xsite-mobile__link:focus-visible {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(219, 252, 79, 0.12);
    outline: none;
}

.xsite-mobile__badge {
    margin-left: auto;
}

.xsite-mobile__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--x-header-border);
}

.xsite-mobile__actions .xsite-btn {
    width: 100%;
}

@media (max-width: 1024px) {
    html {
        scroll-padding-top: calc(var(--x-header-height-mobile) + 12px);
    }

    .xsite-header__wrap {
        min-height: var(--x-header-height-mobile);
        grid-template-columns: auto 1fr auto;
        padding: 0 16px;
        gap: 12px;
    }

    .xsite-nav--desktop,
    .xsite-header__actions {
        display: none;
    }

    .xsite-burger {
        display: inline-flex;
        justify-self: end;
    }

    .xsite-header__brand img {
        height: 34px;
    }
}

@media (min-width: 1025px) {
    .xsite-mobile {
        display: none;
    }
}

@media (max-width: 640px) {
    .xsite-header__wrap {
        padding: 0 12px;
    }

    .xsite-header__brand img {
        height: 30px;
    }

    .xsite-mobile {
        padding: 8px 8px 12px;
    }

    .xsite-mobile__inner {
        border-radius: 16px;
        padding: 10px;
    }

    .xsite-mobile__link {
        min-height: 46px;
        padding: 11px 12px;
        font-size: 0.92rem;
    }

    .xsite-burger {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}

.wp2reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.lv8review-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    background: #243647;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.lv8review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    border-color: rgba(219, 252, 79, 0.18);
}

.lv8review-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, #dbfc4f 0%, #7ecff5 100%);
    opacity: 0.95;
}

.zq5review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.nx3author-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.kp7author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: #1e3040;
}

.kp7avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: #1b2b38;
    background: #dbfc4f;
}

.bx1author-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.md9author-name {
    display: block;
    color: #f0f4f8;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;
}

.vy6author-country {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a8bccf;
    font-size: 0.85rem;
    line-height: 1.2;
}

.vy6author-country img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.qh2review-date {
    color: #6b8fa8;
    font-size: 0.82rem;
    line-height: 1.2;
}

.pw9rating-block {
    flex-shrink: 0;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.kx6rating-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.lz4rating-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #dbfc4f;
    line-height: 1;
}

.nr8stars-wrapper {
    display: flex;
    gap: 2px;
}

.bm3star {
    font-size: 16px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
}

.bm3star-filled {
    color: #dbfc4f;
}

.dc7details-btn {
    padding: 8px 12px;
    border: 1px solid rgba(219, 252, 79, 0.16);
    border-radius: 999px;
    background: rgba(219, 252, 79, 0.08);
    color: #dbfc4f;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.dc7details-btn:hover {
    background: rgba(219, 252, 79, 0.14);
    border-color: rgba(219, 252, 79, 0.24);
}

.fy2detailed-ratings {
    display: none;
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    border-radius: 12px;
    background: #1e3040;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.fy2detailed-ratings.is-open {
    display: block;
}

.pr4rating-param {
    display: grid;
    grid-template-columns: 120px 1fr 28px;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pr4rating-param:last-child {
    margin-bottom: 0;
}

.qb9param-name {
    color: #a8bccf;
    font-size: 0.8rem;
    line-height: 1.2;
}

.jw1param-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.kt7param-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #dbfc4f 0%, #7ecff5 100%);
}

.lg3param-value {
    color: #dbfc4f;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: right;
}

.cv4review-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.xw9review-title {
    margin: 0;
    color: #f0f4f8;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.mh6review-text {
    color: #c9d7e3;
    font-size: 0.93rem;
    line-height: 1.7;
}

.dw1text-preview {
    display: block;
}

.rp5text-full {
    display: none;
}

.rp5text-full.is-open {
    display: block;
}

.hz8expand-btn {
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #7ecff5;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
}

.hz8expand-btn:hover {
    color: #a8dfff;
    text-decoration: underline;
}

.gt3pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.xl2pros,
.jn5cons {
    padding: 14px;
    border-radius: 12px;
    background: #1e3040;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.yw6pros-title,
.bt4cons-title {
    display: block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.yw6pros-title {
    color: #86d98f;
}

.bt4cons-title {
    color: #ff7e73;
}

.kq9pros-list,
.wz7cons-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kq9pros-list li,
.wz7cons-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    color: #c9d7e3;
    font-size: 0.87rem;
    line-height: 1.5;
}

.kq9pros-list li:last-child,
.wz7cons-list li:last-child {
    margin-bottom: 0;
}

.kq9pros-list li::before,
.wz7cons-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.kq9pros-list li::before {
    content: "+";
    color: #86d98f;
}

.wz7cons-list li::before {
    content: "−";
    color: #ff7e73;
}

.py8source {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
}

.fm1source-label {
    color: #6b8fa8;
    font-size: 0.82rem;
}

.vk4source-link {
    color: #7ecff5;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.vk4source-link:hover {
    color: #a8dfff;
    text-decoration: underline;
}

.qn2review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dg5likes-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tx9like-btn,
.zy3reply-btn,
.mz3submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.tx9like-btn {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1e3040;
    color: #a8bccf;
}

.tx9like-btn:hover {
    border-color: rgba(219, 252, 79, 0.18);
    color: #f0f4f8;
}

.tx9dislike-btn:hover {
    border-color: rgba(244, 67, 54, 0.2);
}

.mb7like-icon {
    font-size: 15px;
    line-height: 1;
}

.cn6like-count {
    font-weight: 700;
}

.zy3reply-btn {
    border: 1px solid rgba(219, 252, 79, 0.18);
    background: rgba(219, 252, 79, 0.08);
    color: #dbfc4f;
}

.zy3reply-btn:hover {
    background: rgba(219, 252, 79, 0.14);
}

.kw1reply-form {
    display: none;
    margin-top: -4px;
    padding: 16px;
    border-radius: 14px;
    background: #1e3040;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.kw1reply-form.is-open {
    display: block;
}

.nc8form-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px 14px;
    resize: vertical;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1b2b38;
    color: #f0f4f8;
    font-size: 0.92rem;
    line-height: 1.6;
    outline: none;
}

.nc8form-textarea:focus {
    border-color: rgba(219, 252, 79, 0.35);
    box-shadow: 0 0 0 3px rgba(219, 252, 79, 0.12);
}

.nc8form-textarea::placeholder {
    color: #6b8fa8;
}

.mz3submit-btn {
    margin-top: 12px;
    border: 0;
    background: #dbfc4f;
    color: #1b2b38;
    font-weight: 700;
}

.mz3submit-btn:hover {
    background: #c8ea3a;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .wp2reviews-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lv8review-card {
        padding: 18px;
        border-radius: 16px;
    }

    .zq5review-header {
        flex-direction: column;
        align-items: stretch;
    }

    .pw9rating-block {
        align-items: flex-start;
        min-width: 0;
    }

    .kx6rating-display {
        align-items: flex-start;
    }

    .gt3pros-cons {
        grid-template-columns: 1fr;
    }

    .pr4rating-param {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .qn2review-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .dg5likes-block {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .tx9like-btn,
    .zy3reply-btn,
    .mz3submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nx3author-block {
        gap: 10px;
    }

    .kp7author-avatar {
        width: 52px;
        height: 52px;
    }

    .md9author-name {
        font-size: 0.95rem;
    }

    .xw9review-title {
        font-size: 1rem;
    }

    .mh6review-text {
        font-size: 0.9rem;
    }

    .lv8review-card {
        padding: 16px;
    }
}