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

:root {
    --color-bg: #0b1020;
    --color-header: #0f172a;
    --color-footer: #0f172a;
    --color-surface: #131d35;
    --color-surface-2: #1a2540;
    --color-border: #1e2e50;
    --color-accent: #22d3ee;
    --color-accent-2: #06b6d4;
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-text-dark: #64748b;
    --color-star: #fbbf24;
    --color-pro: #10b981;
    --color-con: #f87171;
    --color-white: #f8fafc;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 18px;
    --font: 'Inter', sans-serif;
    --transition: 0.25s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
}

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

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

body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--color-accent-2);
}

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

ul {
    list-style: none;
}

.xk9a2 {
    display: none;
}

.wp-block-group {
    display: block;
}

.wp-content-area {
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn--primary {
    background: var(--color-accent);
    color: #0b1020;
}

.btn--primary:hover {
    background: #38e0f5;
    color: #0b1020;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(34, 211, 238, 0.35);
}

.btn--secondary {
    background: var(--color-accent-2);
    color: #fff;
}

.btn--secondary:hover {
    background: #0ea5e9;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn--outline:hover {
    background: rgba(34, 211, 238, 0.1);
    color: var(--color-accent);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.07);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-text);
}

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

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

.section {
    padding: 64px 0;
}

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

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.5;
}

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

.card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: var(--shadow-sm);
}

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

.star {
    font-size: 1rem;
    color: #2d3c5e;
    transition: color var(--transition);
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge--accent {
    background: rgba(34, 211, 238, 0.15);
    color: var(--color-accent);
}

.badge--success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-pro);
}

.badge--warning {
    background: rgba(251, 191, 36, 0.15);
    color: var(--color-star);
}

#dr-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-header);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

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

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

.dr-logo img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.dr-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: -0.5px;
}

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

.dr-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
}

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

.dr-nav-link:hover,
.dr-nav-link.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.07);
}

.dr-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dr-review-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 4px 12px;
    white-space: nowrap;
}

.dr-review-count strong {
    color: var(--color-accent);
}

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

.dr-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.dr-mobile-menu {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--color-header);
    z-index: 99;
    padding: 24px 20px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    border-top: 1px solid var(--color-border);
}

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

.dr-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition);
}

.dr-mobile-nav-link svg {
    width: 18px;
    height: 18px;
}

.dr-mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--color-text);
}

.dr-mobile-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

#dr-hero {
    position: relative;
    overflow: hidden;
    background: var(--color-header);
    padding: 0;
}

.dr-hero-banner {
    position: relative;
    min-height: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dr-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #0b1020 60%, rgba(34, 211, 238, 0.04) 100%);
    z-index: 0;
}

.dr-hero-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dr-hero-content {
    position: relative;
    z-index: 1;
}

.dr-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dr-hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-wrap: balance;
}

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

.dr-hero-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 480px;
}

.dr-hero-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dr-hero-image-wrap {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border);
}

.dr-hero-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.dr-hero-grid {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 32px 0;
}

.dr-hero-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.dr-rating-summary {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
}

.dr-overall-score {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.dr-score-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.dr-score-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.dr-param-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dr-param-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dr-param-label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    width: 130px;
    flex-shrink: 0;
}

.dr-param-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    overflow: hidden;
}

.dr-param-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-2), var(--color-accent));
    border-radius: 3px;
    transition: width 0.8s ease;
}

.dr-param-val {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-accent);
    width: 28px;
    text-align: right;
}

.dr-rating-distribution {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
}

.dr-dist-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
}

.dr-dist-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dr-dist-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
}

.dr-dist-label {
    width: 24px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.dr-dist-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    overflow: hidden;
}

.dr-dist-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-2), var(--color-accent));
    border-radius: 4px;
}

.dr-dist-count {
    width: 24px;
    text-align: right;
    color: var(--color-text-muted);
    font-size: 0.78rem;
}

.dr-bonuses-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dr-bonus-tile {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: border-color var(--transition);
}

.dr-bonus-tile:hover {
    border-color: rgba(34, 211, 238, 0.3);
}

.dr-bonus-tile-info {
    flex: 1;
}

.dr-bonus-tile-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 3px;
}

.dr-bonus-tile-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent);
}

.dr-pros-cons {
    padding: 40px 0 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.dr-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dr-pros-block,
.dr-cons-block {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--color-border);
}

.dr-pros-block {
    border-top: 3px solid var(--color-pro);
}

.dr-cons-block {
    border-top: 3px solid var(--color-con);
}

.dr-pros-cons-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dr-pros-cons-title.pros {
    color: var(--color-pro);
}

.dr-pros-cons-title.cons {
    color: var(--color-con);
}

.dr-pros-cons-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dr-pros-cons-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
}

.dr-pros-cons-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 2px;
}

.dr-pros-cons-icon.pro {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-pro);
}

.dr-pros-cons-icon.con {
    background: rgba(248, 113, 113, 0.15);
    color: var(--color-con);
}

#dr-toc {
    padding: 32px 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.dr-toc-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.dr-toc-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dr-toc-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}

.dr-toc-tab:hover,
.dr-toc-tab.active {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.3);
    color: var(--color-accent);
}

.dr-toc-tab svg {
    width: 14px;
    height: 14px;
}

#dr-leave-review {
    padding: 64px 0;
}

.dr-bonus-banner {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(6, 182, 212, 0.12));
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.dr-bonus-banner-content {
}

.dr-bonus-banner-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
    text-wrap: balance;
}

.dr-bonus-banner-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.dr-review-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.dr-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.dr-form-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.dr-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.dr-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.dr-form-input,
.dr-form-textarea {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--color-text);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: border-color var(--transition);
    outline: none;
}

.dr-form-input:focus,
.dr-form-textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

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

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

.dr-form-ratings-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

.dr-form-ratings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dr-rating-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dr-rating-input-label {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

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

.dr-star-input-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: #2d3c5e;
    transition: color var(--transition), transform var(--transition);
    padding: 0;
    line-height: 1;
}

.dr-star-input-btn:hover,
.dr-star-input-btn.selected {
    color: var(--color-star);
    transform: scale(1.1);
}

.dr-form-success {
    display: none;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    color: var(--color-pro);
    font-weight: 600;
    font-size: 1rem;
}

.dr-form-success.visible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#dr-reviews {
    padding: 64px 0;
}

.dr-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.dr-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dr-review-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color var(--transition), box-shadow var(--transition);
    position: relative;
}

.dr-review-card:hover {
    border-color: rgba(34, 211, 238, 0.2);
    box-shadow: var(--shadow-sm);
}

.dr-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.dr-review-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dr-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
}

.dr-review-author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 3px;
}

.dr-review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

.dr-review-country img {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    object-fit: cover;
}

.dr-review-date {
    font-size: 0.78rem;
    color: var(--color-text-dark);
}

.dr-review-rating-wrap {
}

.dr-rating-summary-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--color-text);
    font-family: var(--font);
}

.dr-rating-summary-btn:hover {
    border-color: rgba(34, 211, 238, 0.3);
}

.dr-rating-score {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-accent);
}

.dr-rating-details {
    display: none;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 10px;
    grid-template-columns: 1fr;
    gap: 8px;
}

.dr-rating-details.open {
    display: grid;
}

.dr-rating-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
}

.dr-rating-detail-label {
    color: var(--color-text-muted);
    width: 130px;
    flex-shrink: 0;
}

.dr-review-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 211, 238, 0.07);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.dr-review-source a {
    color: var(--color-accent);
    font-weight: 600;
}

.dr-review-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

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

.dr-review-text {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
}

.dr-review-text-short .dr-review-overflow {
    display: none;
}

.dr-review-text-short::after {
    content: '...';
}

.dr-review-expand-btn {
    background: transparent;
    border: none;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    font-family: var(--font);
}

.dr-review-expand-btn:hover {
    color: var(--color-accent-2);
}

.dr-pros-cons-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
    padding: 16px;
    background: var(--color-surface-2);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.dr-pc-mini-block {
}

.dr-pc-mini-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.dr-pc-mini-title.pro {
    color: var(--color-pro);
}

.dr-pc-mini-title.con {
    color: var(--color-con);
}

.dr-pc-mini-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dr-pc-mini-item {
    font-size: 0.82rem;
    color: var(--color-text);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.dr-pc-mini-item::before {
    flex-shrink: 0;
    margin-top: 2px;
}

.dr-pc-mini-item.pro::before {
    content: '+';
    color: var(--color-pro);
    font-weight: 700;
}

.dr-pc-mini-item.con::before {
    content: '−';
    color: var(--color-con);
    font-weight: 700;
}

.dr-review-media {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.dr-review-media-item {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: opacity var(--transition);
}

.dr-review-media-item:hover {
    opacity: 0.8;
}

.dr-review-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.dr-review-votes {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dr-vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font);
    transition: all var(--transition);
}

.dr-vote-btn:hover {
    border-color: rgba(34, 211, 238, 0.3);
    color: var(--color-text);
}

.dr-vote-btn.voted-like {
    border-color: var(--color-pro);
    color: var(--color-pro);
    background: rgba(16, 185, 129, 0.07);
}

.dr-vote-btn.voted-dislike {
    border-color: var(--color-con);
    color: var(--color-con);
    background: rgba(248, 113, 113, 0.07);
}

.dr-vote-icon {
    font-size: 0.95rem;
}

.dr-reply-open-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    cursor: pointer;
    font-family: var(--font);
    transition: all var(--transition);
}

.dr-reply-open-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.dr-reply-form-wrap {
    display: none;
    margin-top: 16px;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.dr-reply-form-wrap.open {
    display: block;
}

.dr-reply-form-wrap textarea {
    width: 100%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--color-text);
    font-family: var(--font);
    font-size: 0.88rem;
    resize: vertical;
    min-height: 90px;
    outline: none;
    transition: border-color var(--transition);
    margin-bottom: 10px;
}

.dr-reply-form-wrap textarea:focus {
    border-color: var(--color-accent);
}

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

#dr-faq {
    padding: 48px 0;
    background: var(--color-surface);
}

.dr-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dr-faq-item {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.dr-faq-item.open {
    border-color: rgba(34, 211, 238, 0.3);
}

.dr-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    user-select: none;
}

.dr-faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-accent);
    transition: transform var(--transition);
}

.dr-faq-item.open .dr-faq-question svg {
    transform: rotate(45deg);
}

.dr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.dr-faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.dr-faq-item.open .dr-faq-answer {
    max-height: 500px;
}

#dr-comparison {
    padding: 64px 0;
}

.dr-comparison-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dr-comparison-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.dr-comparison-table th {
    background: var(--color-surface);
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.dr-comparison-table th.highlight {
    background: rgba(34, 211, 238, 0.1);
    color: var(--color-accent);
}

.dr-comparison-table td {
    padding: 13px 18px;
    font-size: 0.88rem;
    color: var(--color-text);
    border-bottom: 1px solid rgba(30, 46, 80, 0.5);
    vertical-align: middle;
}

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

.dr-comparison-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.dr-comparison-table td.highlight {
    background: rgba(34, 211, 238, 0.04);
}

.dr-table-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--color-accent);
}

#dr-features {
    padding: 64px 0;
    background: var(--color-surface);
}

.dr-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dr-feature-card {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.dr-feature-card:hover {
    border-color: rgba(34, 211, 238, 0.25);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.dr-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.dr-feature-icon svg {
    width: 24px;
    height: 24px;
}

.dr-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.dr-feature-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

#dr-content-review {
    padding: 64px 0;
}

.dr-author-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.dr-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
}

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

.dr-author-bio {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.dr-author-link {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--color-accent);
}

.dr-content-body {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.75;
}

.dr-content-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 28px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

.dr-content-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 22px 0 10px;
}

.dr-content-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 18px 0 8px;
}

.dr-content-body p {
    margin-bottom: 14px;
}

.dr-content-body ul,
.dr-content-body ol {
    margin: 12px 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dr-content-body ul {
    list-style: disc;
}

.dr-content-body ol {
    list-style: decimal;
}

.dr-content-body li {
    color: var(--color-text);
}

.dr-content-body a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dr-content-body blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(34, 211, 238, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text-muted);
    font-style: italic;
}

.dr-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.88rem;
    overflow-x: auto;
    display: block;
}

.dr-content-body table th {
    background: var(--color-surface-2);
    color: var(--color-white);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--color-border);
    font-weight: 600;
}

.dr-content-body table td {
    padding: 9px 14px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.dr-content-body table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.dr-content-body strong {
    color: var(--color-white);
    font-weight: 700;
}

.dr-content-body em {
    font-style: italic;
    color: var(--color-text-muted);
}

.dr-content-body hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 28px 0;
}

#dr-footer {
    background: var(--color-footer);
    border-top: 1px solid var(--color-border);
    padding: 48px 0 24px;
}

.dr-footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 24px;
}

.dr-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-direction: column;
    align-items: flex-start;
}

.dr-footer-logo img {
    height: 36px;
    border-radius: 6px;
}

.dr-footer-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-accent);
}

.dr-footer-desc {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    margin-top: 6px;
    max-width: 180px;
    line-height: 1.5;
}

.dr-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.dr-footer-nav a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.dr-footer-nav a:hover {
    color: var(--color-text);
}

.dr-footer-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dr-trust-badge {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dr-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.dr-footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    line-height: 1.5;
}

.dr-footer-legal {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    max-width: 600px;
    line-height: 1.5;
    text-align: right;
}

.dr-widget {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.dr-widget-inner {
    pointer-events: all;
    background: linear-gradient(135deg, #0f172a, #131d35);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: var(--radius-lg);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 211, 238, 0.1);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    justify-content: center;
}

.dr-widget-text {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}

.dr-widget-bonus {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent);
}

.dr-widget-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.dr-widget-close:hover {
    background: var(--color-surface);
    color: var(--color-text);
}

.dr-widget-btn-wrap {
    position: relative;
}

.dr-separator {
    width: 1px;
    height: 24px;
    background: var(--color-border);
    flex-shrink: 0;
}

.section-heading {
    margin-bottom: 36px;
}

.dr-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: 8px 0;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.3);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(34, 211, 238, 0);
    }
}

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

.btn--primary.pulse-anim {
    animation: pulse 2.5s infinite;
}

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

    .dr-bonuses-mini {
        display: none;
    }

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

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

    .dr-nav {
        display: none;
    }

    .dr-burger {
        display: flex;
    }

    .dr-review-count {
        display: none;
    }

    .dr-hero-banner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 40px 20px;
    }

    .dr-hero-title {
        font-size: 1.8rem;
    }

    .dr-hero-image-wrap {
        display: none;
    }

    .dr-hero-grid-inner {
        grid-template-columns: 1fr;
    }

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

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

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

    .dr-review-header {
        flex-direction: column;
    }

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

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

    .dr-footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dr-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .dr-footer-legal {
        text-align: left;
    }

    .dr-bonus-banner {
        flex-direction: column;
        text-align: center;
    }

    .dr-bonus-banner-content {
        text-align: center;
    }

    .dr-toc-tabs {
        gap: 6px;
    }

    .dr-toc-tab {
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .dr-review-form {
        padding: 24px 20px;
    }

    .dr-content-body {
        padding: 24px 20px;
    }

    .dr-footer-top {
        padding-bottom: 24px;
    }

    .dr-widget-inner {
        padding: 12px 18px;
        margin: 0 12px;
    }

    .dr-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .dr-hero-title {
        font-size: 1.5rem;
    }

    .dr-hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .dr-score-big {
        font-size: 2.8rem;
    }

    .dr-review-card {
        padding: 20px 16px;
    }
}

.dr-review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
}

.dr-review-pros,
.dr-review-cons {
    background: var(--color-surface-2);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    padding: 14px 16px;
}

.dr-pc-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.dr-pc-title.pro {
    color: var(--color-pro);
}

.dr-pc-title.con {
    color: var(--color-con);
}

.dr-review-pros ul,
.dr-review-cons ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    margin: 0;
}

.dr-pro-item,
.dr-con-item {
    font-size: 0.85rem;
    color: var(--color-text);
    line-height: 1.45;
    padding-left: 14px;
    position: relative;
}

.dr-pro-item::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--color-pro);
    font-weight: 700;
}

.dr-con-item::before {
    content: '−';
    position: absolute;
    left: 0;
    color: var(--color-con);
    font-weight: 700;
}

.dr-media-thumb {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: opacity var(--transition);
}

.dr-media-thumb img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.dr-media-thumb:hover {
    opacity: 0.8;
}

.dr-media-video {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.dr-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.15);
    color: var(--color-accent);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
}

.dr-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dr-faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    font-family: var(--font);
}

.dr-faq-answer div {
    padding: 0 22px 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.dr-faq-item:not(.open) .dr-faq-answer {
    display: none;
}

.dr-content-wrap {
}

.dr-content-author {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.dr-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
}

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

.dr-author-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 5px;
}

.dr-author-name a {
    color: var(--color-white);
}

.dr-author-name a:hover {
    color: var(--color-accent);
}

.dr-author-bio {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.dr-footer-inner {
}

.dr-footer-brand {
    max-width: 220px;
}

.dr-footer-desc {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    margin-top: 10px;
    line-height: 1.5;
}

.dr-footer-nav {
    display: flex;
    gap: 32px;
}

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

.dr-footer-nav-col strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.dr-footer-nav-col a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.dr-footer-nav-col a:hover {
    color: var(--color-text);
}

.dr-trust-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dr-trust-logo {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dr-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.dr-widget {
    position: relative;
}

@media (max-width: 600px) {
    .dr-review-pros-cons {
        grid-template-columns: 1fr;
    }

    .dr-content-author {
        flex-direction: column;
    }

    .dr-footer-nav {
        flex-direction: column;
        gap: 20px;
    }
}

.wp-site-blocks {
    display: contents;
}

.is-layout-flow {
    display: contents;
}

.entry-content {
    display: contents;
}

.nf92k {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.m3x7p, .p8r2q {
    display: none;
}

#dr-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(900px 420px at 18% 18%, rgba(34, 211, 238, .10), transparent 55%),
    radial-gradient(900px 420px at 85% 22%, rgba(6, 182, 212, .10), transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #0b1020 55%, #0b1020 100%);
}

.dr-hero-banner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(18px, 4vw, 56px) 20px;
    display: grid;
    grid-template-columns:minmax(0, 1.12fr) minmax(0, .88fr);
    gap: clamp(14px, 3vw, 40px);
    align-items: center;
    min-height: clamp(360px, 46vw, 520px);
}

.dr-hero-banner::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(520px 260px at 12% 65%, rgba(34, 211, 238, .12), transparent 60%),
    radial-gradient(520px 260px at 82% 30%, rgba(6, 182, 212, .10), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.dr-hero-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.dr-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(34, 211, 238, .10);
    border: 1px solid rgba(34, 211, 238, .25);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dr-hero-tag svg {
    width: 16px;
    height: 16px;
    opacity: .9;
}

.dr-hero-title {
    margin: 0 0 12px;
    font-size: clamp(22px, 3.1vw, 44px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--color-white);
    text-wrap: balance;
}

.dr-hero-desc {
    margin: 0 0 22px;
    max-width: 56ch;
    font-size: clamp(14px, 1.3vw, 16px);
    color: rgba(226, 232, 240, .78);
    line-height: 1.65;
}

.dr-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dr-hero-btns .btn {
    min-height: 44px;
}

.dr-hero-btns .btn--secondary {
    box-shadow: 0 14px 34px rgba(6, 182, 212, .22);
}

.dr-hero-btns .btn--outline {
    border-color: rgba(34, 211, 238, .55);
}

.dr-hero-btns .btn--outline:hover {
    background: rgba(34, 211, 238, .10);
    border-color: rgba(34, 211, 238, .75);
}

.dr-hero-image-wrap {
    position: relative;
    z-index: 2;
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .55);
    background: linear-gradient(135deg, rgba(19, 29, 53, .9), rgba(26, 37, 64, .9));
}

.dr-hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 420px at 30% 25%, rgba(34, 211, 238, .12), transparent 55%),
    linear-gradient(135deg, rgba(11, 16, 32, .35), rgba(11, 16, 32, .05));
    pointer-events: none;
}

.dr-hero-image-wrap img {
    width: 100%;
    height: clamp(220px, 26vw, 340px);
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.05) contrast(1.05);
}

.dr-hero-grid {
    background: linear-gradient(180deg, rgba(19, 29, 53, .75) 0%, rgba(19, 29, 53, .92) 100%);
    border-top: 1px solid rgba(30, 46, 80, .7);
    padding: 22px 0 28px;
}

.dr-hero-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns:minmax(0, 1.25fr) minmax(0, .95fr) minmax(0, .8fr);
    gap: 16px;
    align-items: stretch;
}

.dr-rating-summary,
.dr-rating-distribution {
    background: rgba(26, 37, 64, .72);
    border: 1px solid rgba(30, 46, 80, .85);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    backdrop-filter: blur(10px);
}

.dr-bonus-tile {
    background: rgba(26, 37, 64, .72);
    border: 1px solid rgba(30, 46, 80, .85);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
    backdrop-filter: blur(10px);
}

.dr-param-label {
    width: auto;
    flex: 1;
    min-width: 0;
}

.dr-param-row {
    gap: 10px;
}

.dr-param-bar {
    min-width: 110px;
}

.dr-dist-label {
    width: 52px;
}

.dr-rating-distribution .dr-dist-label {
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .dr-hero-banner {
        grid-template-columns:1fr;
        min-height: auto;
    }

    .dr-hero-image-wrap {
        order: 2;
    }

    .dr-hero-grid-inner {
        grid-template-columns:1fr 1fr;
    }

    .dr-bonuses-mini {
        display: none;
    }
}

@media (max-width: 768px) {
    #dr-hero {
        background: radial-gradient(700px 340px at 20% 10%, rgba(34, 211, 238, .10), transparent 55%),
        linear-gradient(180deg, #0f172a 0%, #0b1020 60%, #0b1020 100%);
    }

    .dr-hero-banner {
        padding: 18px 16px 22px;
        gap: 16px;
    }

    .dr-hero-image-wrap {
        display: block;
        border-radius: 16px;
    }

    .dr-hero-image-wrap img {
        height: 220px;
    }

    .dr-hero-grid {
        padding: 18px 0 22px;
    }

    .dr-hero-grid-inner {
        grid-template-columns:1fr;
        gap: 12px;
        padding: 0 16px;
    }

    .dr-overall-score {
        gap: 12px;
    }

    .dr-score-big {
        font-size: 3rem;
    }

    .dr-param-label {
        font-size: .8rem;
    }

    .dr-param-bar {
        min-width: 96px;
    }
}

@media (max-width: 480px) {
    .dr-hero-tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    .dr-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .dr-hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .dr-hero-image-wrap img {
        height: 200px;
    }

    .dr-rating-summary,
    .dr-rating-distribution {
        padding: 18px;
    }

    .dr-param-bar {
        min-width: 88px;
    }
}

#dr-hero {
    background: #0f172a;
}

.dr-hero-banner::before {
    display: none;
}

.dr-hero-image-wrap::after {
    display: none;
}

.dr-hero-grid {
    background: var(--color-surface);
}

#dr-hero,
#dr-hero .dr-hero-banner,
#dr-hero .dr-hero-grid,
.dr-hero-banner,
.dr-hero-grid {
    background: #0f172a !important;
    background-image: none !important;
}

#dr-hero::before,
#dr-hero::after,
.dr-hero-banner::before,
.dr-hero-banner::after,
.dr-hero-image-wrap::before,
.dr-hero-image-wrap::after,
.dr-hero-bg,
.dr-hero-bg::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

.dr-hero-image-wrap img {
    filter: none !important;
}

.dr-hero-grid {
    border-top: 1px solid var(--color-border);
}