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

:root {
    --color-primary: #2d6e9a;
    --color-secondary: #1f668d;
    --color-accent-light: #f5f5f5;
    --color-accent-yellow: #ffaf08;
    --color-text-light: #ffffff;
    --color-text-dark: #1a1a1a;
    --color-bg: #1f668d;
    --color-card-bg: #ffffff;
    --font-primary: 'IBM Plex Sans', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text-dark);
    background: linear-gradient(135deg, #1f668d 0%, #2d6e9a 100%);
    min-height: 100vh;
}

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

.f3n8m.main-header {
    background-color: var(--color-primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.g7k2p.header-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.j2n7m.logo-img {
    display: block;
    height: auto;
}

.k6m4p.main-nav {
    display: flex;
    justify-content: center;
}

.l9k7n.nav-list {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.n7m5p.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 500;
}

.n7m5p.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.p6k3m.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.q9m7n.reviews-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent-yellow);
    font-weight: 600;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background-color: var(--color-accent-light);
    color: #1a1a1a;
}

.btn-register {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
}

.btn-review {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.x9k2m.line {
    width: 28px;
    height: 3px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.x9k2m.hero-section {
    background-image: url('/banner-cas.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.y4p8n.hero-overlay {
    background: linear-gradient(135deg, rgba(29, 102, 141, 0.9) 0%, rgba(45, 110, 154, 0.85) 100%);
    width: 100%;
    padding: 80px 0;
}

.a5m9k.hero-content {
    text-align: center;
    color: var(--color-text-light);
}

.b8n2p.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.c3v7m.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
    font-size: 1.1rem;
    padding: 15px 40px;
}

.e2n8v.game-info-section {
    margin-top: 40px;
}

.f9m3x.game-card {
    background-color: var(--color-card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.g4p7k.game-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.h8n2m.game-logo {
    max-width: 120px;
    height: auto;
    border-radius: 12px;
}

.j7k9n.rating-display {
    margin-bottom: 10px;
}

.k2m5p.stars {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.l6n8r.rating-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 10px;
    color: var(--color-primary);
}

.m9p3t.rating-count {
    color: #666;
    margin-left: 8px;
}

.n4k7v.bonus-info {
    padding: 12px 20px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffe5a1 100%);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent-yellow);
}

.o8m2p.bonus-label {
    color: #856404;
    font-weight: 600;
}

.p3n6k.bonus-value {
    color: #856404;
    font-size: 1.4rem;
    font-weight: 700;
    margin-left: 10px;
}

.q7m9r.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.t9k3p.game-details {
    margin-top: 25px;
}

.u4m7n.details-toggle {
    width: 100%;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.u4m7n.details-toggle:hover {
    background-color: #e9ecef;
}

.w3n6m.arrow {
    transition: var(--transition);
}

.v8p2k.details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.v8p2k.details-content.active {
    max-height: 600px;
    margin-top: 20px;
}

.v8p2k.details-content.active ~ .u4m7n .w3n6m.arrow {
    transform: rotate(180deg);
}

.x2k5p.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.y7m9n.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;

}

.z4p6k.label {
    font-weight: 600;
    color: #495057;
}

.a9n2m.value {
    color: var(--color-primary);
    font-weight: 600;
}

.b3k8p.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.c7n2m.pros {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.g9p4m.cons {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #dc3545;
}

.d4p9k.title,
.h3n7k.title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.e8m3n.list,
.i6m2p.list {
    list-style: none;
    padding-left: 0;
}

.f2k6p,
.j9k5n {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.f2k6p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.j9k5n::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 700;
}

.k2p8m.leave-review-section {
    margin-top: 50px;
}

.l6n3k.bonus-banner {
    background: linear-gradient(135deg, var(--color-accent-yellow) 0%, #ffc933 100%);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.n4k2m.banner-title {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.o8n6p.banner-text {
    font-size: 1.1rem;
    color: #594200;
}

.btn-bonus {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    font-size: 1.2rem;
    padding: 15px 35px;
}

.q7k4n.review-form-wrapper {
    background-color: var(--color-card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.r2p8m.form-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.s6n3k.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.t9m7p.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.u4k2n.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v8p6m.label {
    font-weight: 600;
    color: var(--color-text-dark);
}

.w3n9k.input,
.e7k2m.textarea {
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.w3n9k.input:focus,
.e7k2m.textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 110, 154, 0.1);
}

.x7k5p.rating-section {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.y2m8n.section-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.z6p3k.rating-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.a9n7m.rating-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.c8m5n.stars-input {
    font-size: 1.8rem;
    letter-spacing: 5px;
    color: #ddd;
    cursor: pointer;
    user-select: none;
}

.btn-submit {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2563a8 100%);
    color: var(--color-text-light);
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.g6k4m.success-message {
    padding: 20px;
    background-color: #d4edda;
    border: 2px solid #28a745;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.h9p2n {
    color: #155724;
    font-size: 1.1rem;
    font-weight: 600;
}

.i3m7k.reviews-section {
    margin-top: 60px;
}

.j8p4n.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-weight: 700;
}

.w2k8p.reviews-container {
    display: grid;
    gap: 25px;
}

.x6n3m.review-card {
    background-color: var(--color-card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.x6n3m.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.y9p7k.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.z4m2n.author-section {
    display: flex;
    gap: 15px;
}

.a8k6p.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.c7k4p.author-name {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 5px;
}

.d2m8k.country-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.e6p3n.flag-icon {
    border-radius: 2px;
}

.f9k7m.country-name {
    font-size: 0.9rem;
    color: #666;
}

.g4n2p.review-date {
    font-size: 0.9rem;
    color: #999;
}

.h8m6k.rating-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.j7k2m.star {
    color: #ddd;
    font-size: 1.4rem;
}

.j7k2m.star.filled {
    color: #ffc107;
}

.k2n8p.rating-number {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.3rem;
}

.m9p7n.review-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.n4k2m.pros-cons-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.o8n6p.pros-list,
.s6n3k.cons-list {
    padding: 15px;
    border-radius: 8px;
}

.o8n6p.pros-list {
    background-color: #e8f5e9;
    border-left: 3px solid #4caf50;
}

.s6n3k.cons-list {
    background-color: #ffebee;
    border-left: 3px solid #f44336;
}

.p3m9k.label,
.t9m7p.label {
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.q7k4n.list,
.u4k2n.list {
    list-style: none;
    padding-left: 0;
}

.r2p8m.item,
.v8p6m.item {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.r2p8m.item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.v8p6m.item::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: 700;
}

.x7k5p.review-text {
    line-height: 1.8;
    color: #333;
}

.x7k5p.review-text.collapsed {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.x7k5p.review-text.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, white);
}

.y2m8n.expand-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: underline;
}

.z6p3k.source-info {
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.a9n7m.source-label {
    font-weight: 600;
    color: #666;
    margin-right: 8px;
}

.b4k2p.source-link {
    color: var(--color-primary);
    text-decoration: none;
}

.b4k2p.source-link:hover {
    text-decoration: underline;
}

.c8m5n.review-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d3p9k.like-section {
    display: flex;
    gap: 15px;
}

.e7k2m.like-btn,
.h9p2n.dislike-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border: 2px solid #dee2e6;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.e7k2m.like-btn:hover {
    background-color: #d4edda;
    border-color: #28a745;
}

.h9p2n.dislike-btn:hover {
    background-color: #f8d7da;
    border-color: #dc3545;
}

.g6k4m.count,
.j8p4n.count {
    font-weight: 600;
}

.k2n9m.reply-toggle {
    background: none;
    border: none;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.k2n9m.reply-toggle:hover {
    background-color: #f8f9fa;
}

.m3p8k.reply-form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.m3p8k.reply-form-wrapper.active {
    max-height: 300px;
    margin-top: 15px;
}

.n6m2k.reply-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.o9p7n.reply-textarea {
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-family: var(--font-primary);
    resize: vertical;
}

.btn-reply-submit {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 10px 20px;
    align-self: flex-start;
}

.k2n9m.cta-banner {
    background: linear-gradient(135deg, var(--color-accent-yellow) 0%, #ffc933 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.l7k5p.cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.n6m2k.comparison-section {
    margin-top: 60px;
}

.o9p7n.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-weight: 700;
}

.p4k3m.comparison-table-wrapper {
    overflow-x: auto;
    background-color: var(--color-card-bg);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.q8n6p.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.s7p2n {
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.s7p2n.highlight {
    background-color: #fff3cd;
}

.u6n4p {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.u6n4p.highlight {
    background-color: #fffbf0;
    font-weight: 600;
}

.v9k3m.btn-small {
    padding: 8px 16px;
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

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

.w4p7k.content-section {
    margin-top: 60px;
}

.x8n2m.video-block {
    background-color: var(--color-card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 40px;
}

.y3k9p.section-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.z7m4n.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.z7m4n.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.kp7x3m.text-content {
    background-color: var(--color-card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.kp7x3m.text-content h2,
.kp7x3m.text-content h3 {
    color: var(--color-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.kp7x3m.text-content h2 {
    font-size: 2rem;
}

.kp7x3m.text-content h3 {
    font-size: 1.5rem;
}

.kp7x3m.text-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.kp7x3m.text-content ul,
.kp7x3m.text-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.kp7x3m.text-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.kp7x3m.text-content strong {
    font-weight: 600;
    color: var(--color-primary);
}

.kp7x3m.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.kp7x3m.text-content th,
.kp7x3m.text-content td {
    padding: 12px;
    border: 1px solid #dee2e6;
    text-align: left;
}

.kp7x3m.text-content th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.y3k7m.main-footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    margin-top: 80px;
    padding: 50px 0 30px;
}

.a8n4p.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.c6p3n.footer-logo {
    display: block;
    margin-bottom: 15px;
}

.d9m7k.footer-desc {
    opacity: 0.9;
    line-height: 1.6;
}

.e4n2p.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.f8k6m.footer-links {
    list-style: none;
}

.g3p9n {
    margin-bottom: 12px;
}

.h7m2k.link {
    color: var(--color-text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.h7m2k.link:hover {
    opacity: 1;
    text-decoration: underline;
}

.j6m4n.author-name {
    font-weight: 600;
    margin-bottom: 8px;
}

.k9p2m.author-bio {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.l3n7k.author-links {
    display: flex;
    gap: 15px;
}

.m8k4p.social-link {
    color: var(--color-accent-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.m8k4p.social-link:hover {
    text-decoration: underline;
}

.n2p6k.trust-logos {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.o7m3n.trust-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.p4k9m.logos-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.q8n2k.trust-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.r3m7k.footer-bottom {
    text-align: center;
}

.t9k2m.copyright {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.u4n8p.disclaimer,
.v7m3k.legal {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 8px;
    line-height: 1.6;
}

.b6p3m.floating-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(135deg, var(--color-accent-yellow) 0%, #ffc933 100%);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    padding: 12px 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.c9k7n.widget-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.d4m2p.widget-text {
    font-weight: 600;
    color: var(--color-text-dark);
}

.btn-widget {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    padding: 10px 20px;
}

.a2n8k.content-title {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.h5m9p3 {
    display: none;
}

.k8n4x7 {
    opacity: 0;
}

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

    .k6m4p.main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--color-primary);
        padding: 30px 20px;
        transition: var(--transition);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .k6m4p.main-nav.active {
        left: 0;
    }

    .l9k7n.nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .n7m5p.nav-link {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .w6p4n.burger {
        display: flex;
    }

    .w6p4n.burger.active .x9k2m.line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .w6p4n.burger.active .x9k2m.line:nth-child(2) {
        opacity: 0;
    }

    .w6p4n.burger.active .x9k2m.line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .p6k3m.header-actions {
        gap: 10px;
    }

    .btn-review {
        display: none;
    }

    .b8n2p.hero-title {
        font-size: 2rem;
    }

    .c3v7m.hero-subtitle {
        font-size: 1.1rem;
    }

    .g4p7k.game-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .q7m9r.action-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .l6n3k.bonus-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

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

    .b6p3m.floating-widget {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
    }

    .d4m2p.widget-text {
        font-size: 0.85rem;
    }
}

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

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

    .y9p7k.review-header {
        flex-direction: column;
        gap: 15px;
    }

    .c8m5n.review-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .d3p9k.like-section {
        justify-content: center;
    }

    .b6p3m.floating-widget {
        left: 10px;
        right: 10px;
        border-radius: 12px;
    }

    .c9k7n.widget-content {
        justify-content: space-between;
        width: 100%;
    }
}

.container.avdc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 22px;
    background: rgba(45, 110, 154, .14);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .26);
    color: rgba(245, 245, 245, .96);
}

.container.avdc > *:first-child {
    margin-top: 0
}

.container.avdc > *:last-child {
    margin-bottom: 0
}

.container.avdc p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(245, 245, 245, .95);
}

.container.avdc h2 {
    margin: 26px 0 12px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 850;
    color: #fff;
    letter-spacing: -.2px;
}

.container.avdc h3 {
    margin: 22px 0 10px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 750;
    color: #fff;
}

.container.avdc strong {
    color: #fff;
    font-weight: 800;
}

.container.avdc a {
    color: #ffaf08;
    text-decoration: none;
    font-weight: 700;
    word-break: break-word;
}

.container.avdc a:hover {
    color: #ffc033;
    text-decoration: underline;
}

.container.avdc ul,
.container.avdc ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.container.avdc li {
    margin: 0 0 10px;
    color: rgba(245, 245, 245, .95);
    line-height: 1.75;
    font-size: 16px;
}

.container.avdc li::marker {
    color: rgba(255, 175, 8, .9);
}

.container.avdc ul + ul {
    margin-top: -8px
}

.container.avdc blockquote {
    margin: 18px 0;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-left: 4px solid rgba(255, 175, 8, .85);
    border-radius: 14px;
    color: rgba(245, 245, 245, .95);
}

.container.avdc hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 22px 0;
}

.container.avdc img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}

.container.avdc p img {
    margin: 14px 0;
}

.container.avdc p a,
.container.avdc li a {
    border-bottom: 1px dashed rgba(255, 175, 8, .55);
    padding-bottom: 1px;
}

.container.avdc p a:hover,
.container.avdc li a:hover {
    border-bottom-color: rgba(255, 192, 51, .85);
}

.container.avdc table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 22px 0;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    overflow: hidden;
}

.container.avdc th,
.container.avdc td {
    padding: 14px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    border-right: 1px solid rgba(255, 255, 255, .10);
    text-align: left;
    color: rgba(245, 245, 245, .95);
    vertical-align: top;
    background: transparent;
}

.container.avdc th {
    background: rgba(255, 175, 8, .16);
    font-weight: 850;
    color: #fff;
}

.container.avdc tr:last-child td {
    border-bottom: none
}

.container.avdc th:last-child,
.container.avdc td:last-child {
    border-right: none
}

.container.avdc footer {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.container.avdc footer p {
    margin: 0;
    color: rgba(245, 245, 245, .9);
}

@media (max-width: 1024px) {
    .container.avdc {
        padding: 30px 18px;
        border-radius: 16px;
    }

    .container.avdc h2 {
        font-size: 26px
    }
}

@media (max-width: 768px) {
    .container.avdc {
        padding: 22px 14px;
        border-radius: 14px;
    }

    .container.avdc p,
    .container.avdc li {
        font-size: 15px;
        line-height: 1.8;
    }

    .container.avdc h2 {
        font-size: 22px;
        margin-top: 20px;
    }

    .container.avdc h3 {
        font-size: 18px
    }

    .container.avdc ul,
    .container.avdc ol {
        padding-left: 18px
    }

    .container.avdc table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .container.avdc th,
    .container.avdc td {
        padding: 12px 12px
    }

    .container.avdc img {
        border-radius: 12px
    }
}

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

    .container.avdc h2 {
        font-size: 20px
    }

    .container.avdc p {
        font-size: 14.5px
    }
}

:root {
    --color-card-bg: rgba(255, 255, 255, .06);
    --color-surface: rgba(255, 255, 255, .06);
    --color-surface-2: rgba(255, 255, 255, .08);
    --color-border: rgba(255, 255, 255, .12);
    --color-border-2: rgba(255, 255, 255, .14);
    --color-text-dark: rgba(245, 245, 245, .96);
    --color-muted: rgba(245, 245, 245, .72);
}

.f9m3x.game-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .26);
}

.q7k4n.review-form-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .26);
}

.p4k3m.comparison-table-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .26);
}

.kp7x3m.text-content {
    background: rgba(45, 110, 154, .14);
    border: 1px solid var(--color-border);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .26);
    color: rgba(245, 245, 245, .96);
}

.kp7x3m.text-content h2,
.kp7x3m.text-content h3 {
    color: #fff;
}

.kp7x3m.text-content p,
.kp7x3m.text-content li {
    color: rgba(245, 245, 245, .95);
}

.kp7x3m.text-content strong {
    color: #fff;
}

.kp7x3m.text-content a {
    color: #ffaf08;
}

.kp7x3m.text-content table {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
}

.kp7x3m.text-content th,
.kp7x3m.text-content td {
    border: 1px solid rgba(255, 255, 255, .10);
}

.kp7x3m.text-content th {
    background: rgba(255, 175, 8, .16);
    color: #fff;
}

.u4m7n.details-toggle {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--color-border);
    color: rgba(245, 245, 245, .96);
}

.u4m7n.details-toggle:hover {
    background: rgba(255, 255, 255, .08);
}

.x2k5p.details-grid {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
}

.y7m9n.detail-item {
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.z4p6k.label {
    color: rgba(245, 245, 245, .82);
}

.a9n2m.value {
    color: #fff;
}

.n4k7v.bonus-info {
    background: rgba(255, 175, 8, .12);
    border-left-color: rgba(255, 175, 8, .85);
}

.o8m2p.bonus-label,
.p3n6k.bonus-value {
    color: rgba(255, 255, 255, .92);
}

.l6n3k.bonus-banner {
    box-shadow: 0 14px 36px rgba(0, 0, 0, .26);
}

.n4k2m.banner-title {
    color: rgba(10, 12, 14, .92);
}

.o8n6p.banner-text {
    color: rgba(10, 12, 14, .82);
}

.x7k5p.rating-section {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
}

.y2m8n.section-title {
    color: rgba(245, 245, 245, .96);
}

.b4k2p {
    color: rgba(245, 245, 245, .82);
}

.c8m5n.stars-input {
    color: rgba(255, 255, 255, .28);
}

.w3n9k.input,
.e7k2m.textarea {
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(245, 245, 245, .96);
}

.w3n9k.input::placeholder,
.e7k2m.textarea::placeholder {
    color: rgba(245, 245, 245, .55);
}

.w3n9k.input:focus,
.e7k2m.textarea:focus {
    border-color: rgba(255, 175, 8, .7);
    box-shadow: 0 0 0 3px rgba(255, 175, 8, .12);
}

.v8p6m.label {
    color: rgba(245, 245, 245, .92);
}

.g6k4m.success-message {
    background: rgba(76, 175, 80, .16);
    border: 1px solid rgba(76, 175, 80, .35);
}

.h9p2n {
    color: rgba(245, 245, 245, .96);
}

.q8n6p.comparison-table {
    background: transparent;
}

.s7p2n,
.u6n4p {
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    color: rgba(245, 245, 245, .92);
}

.s7p2n {
    background: rgba(255, 255, 255, .05);
}

.s7p2n.highlight {
    background: rgba(255, 175, 8, .14);
}

.u6n4p.highlight {
    background: rgba(255, 255, 255, .06);
}

.q8n6p.comparison-table td,
.q8n6p.comparison-table th {
    border-right: 1px solid rgba(255, 255, 255, .10);
}

.q8n6p.comparison-table td:last-child,
.q8n6p.comparison-table th:last-child {
    border-right: none;
}

.x7k5p.review-text {
    color: rgba(245, 245, 245, .92);
}

.x7k5p.review-text.collapsed::after {
    background: linear-gradient(transparent, rgba(31, 102, 141, .98));
}

.z6p3k.source-info {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
}

.a9n7m.source-label {
    color: rgba(245, 245, 245, .7);
}

.b4k2p.source-link {
    color: #ffaf08;
}

.c8m5n.review-footer {
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.e7k2m.like-btn,
.h9p2n.dislike-btn {
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(245, 245, 245, .92);
}

.e7k2m.like-btn:hover {
    background: rgba(76, 175, 80, .14);
    border-color: rgba(76, 175, 80, .35);
}

.h9p2n.dislike-btn:hover {
    background: rgba(244, 67, 54, .14);
    border-color: rgba(244, 67, 54, .35);
}

.k2n9m.reply-toggle:hover {
    background: rgba(255, 255, 255, .06);
}

.o8n6p.pros-list {
    background: rgba(76, 175, 80, .12);
}

.s6n3k.cons-list {
    background: rgba(244, 67, 54, .12);
}

.x6n3m.review-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .26);
}

.y9p7k.review-header {
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.c7k4p.author-name {
    color: rgba(245, 245, 245, .96);
}

.f9k7m.country-name,
.g4n2p.review-date {
    color: rgba(245, 245, 245, .68);
}

.k2n8p.rating-number {
    color: #ffaf08;
}

.m9p7n.review-title {
    color: #fff;
}

.p3m9k.btn-small {
    background: rgba(255, 175, 8, .92);
    color: rgba(10, 12, 14, .92);
}

@media (max-width: 768px) {
    .f9m3x.game-card,
    .q7k4n.review-form-wrapper,
    .p4k3m.comparison-table-wrapper,
    .kp7x3m.text-content,
    .x6n3m.review-card {
        border-radius: 14px;
    }

    .x2k5p.details-grid {
        padding: 14px;
    }

    .u4m7n.details-toggle {
        padding: 14px 14px;
    }
}

@media (max-width: 576px) {
    .w3n9k.input,
    .e7k2m.textarea {
        padding: 12px 12px;
    }

    .x7k5p.rating-section {
        padding: 14px;
    }
}

:root {
    --color-card-bg: rgba(255, 255, 255, .08);
    --color-accent-light: rgba(255, 255, 255, .10);
    --color-text-dark: rgba(245, 245, 245, .96);
}

body {
    color: rgba(245, 245, 245, .96);
}

.f9m3x.game-card,
.q7k4n.review-form-wrapper,
.x6n3m.review-card,
.p4k3m.comparison-table-wrapper,
.kp7x3m.text-content,
.x8n2m.video-block,
.z6p3k.source-info,
.x7k5p.rating-section,
.x2k5p.details-grid,
.u4m7n.details-toggle,
.rating-details,
.reply-form-container,
.pros-cons-section,
.action-btn {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.u4m7n.details-toggle,
.x2k5p.details-grid,
.x7k5p.rating-section,
.z6p3k.source-info,
.rating-details,
.reply-form-container,
.pros-cons-section,
.action-btn {
    color: rgba(245, 245, 245, .96);
}

.m9p7n.review-title,
.r2p8m.form-title,
.section-title,
.a2n8k.content-title,
.l6n8r.rating-value,
.k2n8p.rating-number {
    color: #fff;
}

.review-count,
.m9p3t.rating-count,
.f9k7m.country-name,
.g4n2p.review-date {
    color: rgba(245, 245, 245, .72);
}

.w3n9k.input,
.e7k2m.textarea,
.o9p7n.reply-textarea,
.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(245, 245, 245, .96);
}

.w3n9k.input::placeholder,
.e7k2m.textarea::placeholder,
.o9p7n.reply-textarea::placeholder {
    color: rgba(245, 245, 245, .55);
}

.article-content table th,
.kp7x3m.text-content th {
    background: rgba(255, 175, 8, .16);
    color: #fff;
}

.article-content table td,
.kp7x3m.text-content td {
    background: transparent;
    color: rgba(245, 245, 245, .92);
}

.x7k5p.review-text {
    color: rgba(245, 245, 245, .92);
}

.x7k5p.review-text.collapsed::after {
    background: linear-gradient(transparent, rgba(31, 102, 141, .95));
}

@media (max-width: 768px) {
    .f9m3x.game-card,
    .q7k4n.review-form-wrapper,
    .x6n3m.review-card,
    .p4k3m.comparison-table-wrapper,
    .kp7x3m.text-content,
    .x8n2m.video-block {
        background: rgba(255, 255, 255, .07);
    }
}

.f3n8m.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.g7k2p.header-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 72px;
}

.k6m4p.main-nav {
    display: flex;
    justify-content: center;
}

.l9k7n.nav-list {
    display: flex;
    gap: 22px;
    list-style: none;
    align-items: center;
}

.n7m5p.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(245, 245, 245, .95);
    transition: all .25s ease;
    white-space: nowrap;
}

.n7m5p.nav-link:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-1px);
}

.p6k3m.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.q9m7n.reviews-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 175, 8, .95);
    font-weight: 650;
}

.w6p4n.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    border-radius: 10px;
}

.w6p4n.burger:active {
    transform: scale(.98);
}

.x9k2m.line {
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: rgba(245, 245, 245, .95);
    transition: all .25s ease;
}

.w6p4n.burger.is-open .x9k2m.line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.w6p4n.burger.is-open .x9k2m.line:nth-child(2) {
    opacity: 0;
    transform: translateX(6px);
}

.w6p4n.burger.is-open .x9k2m.line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .g7k2p.header-wrapper {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }

    .q9m7n.reviews-count {
        display: none;
    }

    .t3n9m.btn-login,
    .u7k2p.btn-register {
        padding: 10px 14px;
        font-size: 14px;
    }

    .k6m4p.main-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 72px;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: all .25s ease;
        padding: 14px 14px 18px;
        background: rgba(31, 102, 141, .96);
        border-top: 1px solid rgba(255, 255, 255, .10);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .k6m4p.main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .l9k7n.nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .n7m5p.nav-link {
        justify-content: flex-start;
        padding: 14px 14px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .10);
    }

    .w6p4n.burger {
        display: flex;
    }
}

@media (max-width: 576px) {
    .g7k2p.header-wrapper {
        min-height: 64px;
    }

    .j2n7m.logo-img {
        width: 84px;
        height: auto;
    }
    
    .k6m4p.main-nav {
        top: 64px;
        padding: 12px 12px 16px;
    }
}