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

:root {
    --xk7m-primary: #1e40af;
    --xk7m-secondary: #dc2626;
    --xk7m-accent: #f59e0b;
    --xk7m-bg: #0f172a;
    --xk7m-bg-light: #1e293b;
    --xk7m-text: #f1f5f9;
    --xk7m-text-muted: #cbd5e1;
    --xk7m-border: #334155;
    --xk7m-success: #10b981;
    --xk7m-warning: #f59e0b;
    --xk7m-error: #ef4444;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--xk7m-bg);
    color: var(--xk7m-text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.fixed {
    overflow: hidden;
}

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

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

.bg7n-header {
    background: linear-gradient(135deg, var(--xk7m-bg-light) 0%, #0f172a 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--xk7m-primary);
}

.nv8k-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pk3m-logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.pk3m-logo img:hover {
    transform: scale(1.05);
}

.wm2x-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.rt5n-menu li a {
    color: var(--xk7m-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.rt5n-menu li a:hover {
    color: var(--xk7m-accent);
    background: rgba(245, 158, 11, 0.1);
}

.yz4p-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

.lp6x-review-count {
    background: var(--xk7m-bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid var(--xk7m-border);
    white-space: nowrap;
}

.lp6x-review-count strong {
    color: var(--xk7m-accent);
    font-size: 16px;
}

.ux7k-btn {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

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

.ux7k-btn-primary {
    background: linear-gradient(135deg, var(--xk7m-primary) 0%, #3b82f6 100%);
    color: white;
}

.ux7k-btn-secondary {
    background: linear-gradient(135deg, var(--xk7m-secondary) 0%, #f97316 100%);
    color: white;
}

.ux7k-btn-accent {
    background: linear-gradient(135deg, var(--xk7m-accent) 0%, #fbbf24 100%);
    color: #1e293b;
    font-weight: 600;
}

.qm8z-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.qm8z-burger span {
    width: 25px;
    height: 3px;
    background: var(--xk7m-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

.qm8z-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.fv3n-hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.jx5m-slider-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.kn2p-slider {
    position: relative;
    height: 400px;
}

.wy7k-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.wy7k-slide.active {
    opacity: 1;
}

.tb9x-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    text-align: center;
}

.tb9x-slide-overlay h2 {
    font-size: 42px;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.tb9x-slide-overlay p {
    font-size: 18px;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gp4z-casino-card {
    background: linear-gradient(135deg, var(--xk7m-bg-light) 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--xk7m-border);
    margin-bottom: 30px;
}

.hm6n-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.qx3k-card-main {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vm8p-casino-logo {
    width: 120px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid var(--xk7m-primary);
}

.zn5m-card-info {
    flex: 1;
}

.zn5m-card-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--xk7m-accent);
}

.pr7x-rating-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.pr7x-rating-display .stars {
    font-size: 24px;
    color: var(--xk7m-accent);
}

.pr7x-rating-display .rating-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--xk7m-accent);
}

.yn4k-bonus-badge {
    background: linear-gradient(135deg, var(--xk7m-secondary) 0%, var(--xk7m-accent) 100%);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.kw2z-card-actions {
    display: flex;
    gap: 12px;
}

.lx9n-rating-breakdown {
    background: rgba(15, 23, 42, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--xk7m-border);
}

.lx9n-rating-breakdown h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--xk7m-text-muted);
}

.cx4m-rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cx4m-rating-item .stars {
    font-size: 14px;
    color: var(--xk7m-accent);
    min-width: 80px;
}

.cx4m-rating-item .count {
    flex: 1;
    background: var(--xk7m-bg);
    height: 8px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.cx4m-rating-item .count-fill {
    height: 100%;
    background: var(--xk7m-accent);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.cx4m-rating-item .number {
    min-width: 40px;
    text-align: right;
    font-size: 14px;
}

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

.bp5x-pros, .tn8k-cons {
    background: rgba(15, 23, 42, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--xk7m-border);
}

.bp5x-pros h4 {
    color: var(--xk7m-success);
    margin-bottom: 12px;
    font-size: 18px;
}

.tn8k-cons h4 {
    color: var(--xk7m-error);
    margin-bottom: 12px;
    font-size: 18px;
}

.bp5x-pros ul, .tn8k-cons ul {
    list-style: none;
}

.bp5x-pros li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.bp5x-pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--xk7m-success);
    font-weight: bold;
    font-size: 18px;
}

.tn8k-cons li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.tn8k-cons li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--xk7m-error);
    font-weight: bold;
    font-size: 18px;
}

.rv6m-leave-review {
    padding: 60px 0;
}

.sz3n-bonus-banner {
    background: linear-gradient(135deg, var(--xk7m-primary) 0%, var(--xk7m-accent) 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.4);
}

.sz3n-bonus-banner h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.sz3n-bonus-banner p {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.wx4p-review-form {
    background: var(--xk7m-bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--xk7m-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.wx4p-review-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--xk7m-accent);
}

.hy5n-form-group {
    margin-bottom: 24px;
}

.hy5n-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--xk7m-text-muted);
}

.hy5n-form-group input,
.hy5n-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--xk7m-bg);
    border: 1px solid var(--xk7m-border);
    border-radius: 8px;
    color: var(--xk7m-text);
    font-size: 15px;
    transition: all 0.3s ease;
}

.hy5n-form-group input:focus,
.hy5n-form-group textarea:focus {
    outline: none;
    border-color: var(--xk7m-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.kx7m-rating-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.nx8p-rating-input {
    background: var(--xk7m-bg);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--xk7m-border);
}

.nx8p-rating-input label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.px5n-stars-input {
    display: flex;
    gap: 8px;
    font-size: 24px;
}

.px5n-stars-input span {
    cursor: pointer;
    color: var(--xk7m-border);
    transition: color 0.2s ease;
}

.px5n-stars-input span:hover,
.px5n-stars-input span.active {
    color: var(--xk7m-accent);
}

.ty4m-user-reviews {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 64, 175, 0.05) 100%);
}

.ty4m-user-reviews h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--xk7m-accent);
}

.mb-reviews-container {
    display: grid;
    gap: 30px;
}

.mb-review-card {
    background: var(--xk7m-bg-light);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--xk7m-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mb-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--xk7m-primary);
}

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

.mb-review-author-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mb-review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--xk7m-primary);
}

.mb-review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mb-review-author {
    font-size: 18px;
    color: var(--xk7m-text);
}

.mb-review-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--xk7m-text-muted);
}

.mb-review-country img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.mb-review-date {
    font-size: 13px;
    color: var(--xk7m-text-muted);
}

.mb-review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

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

.mb-rating-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--xk7m-accent);
}

.mb-stars {
    font-size: 18px;
}

.mb-star {
    color: var(--xk7m-border);
}

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

.mb-rating-details-btn {
    background: var(--xk7m-bg);
    border: 1px solid var(--xk7m-border);
    color: var(--xk7m-text-muted);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-rating-details-btn:hover {
    background: var(--xk7m-primary);
    color: white;
    border-color: var(--xk7m-primary);
}

.mb-review-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--xk7m-text);
}

.mb-review-source {
    font-size: 13px;
    color: var(--xk7m-text-muted);
    margin-bottom: 15px;
}

.mb-review-source a {
    color: var(--xk7m-primary);
    text-decoration: none;
}

.mb-review-source a:hover {
    text-decoration: underline;
}

.mb-review-body {
    margin-bottom: 20px;
}

.mb-review-text {
    line-height: 1.8;
    color: var(--xk7m-text-muted);
}

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

.mb-review-text.collapsed:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, var(--xk7m-bg-light));
}

.mb-review-expand {
    background: none;
    border: none;
    color: var(--xk7m-primary);
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    padding: 0;
    text-decoration: underline;
}

.mb-review-expand:hover {
    color: var(--xk7m-accent);
}

.mb-review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
}

.mb-review-pros h5,
.mb-review-cons h5 {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mb-review-pros h5 {
    color: var(--xk7m-success);
}

.mb-review-cons h5 {
    color: var(--xk7m-error);
}

.mb-review-pros ul,
.mb-review-cons ul {
    list-style: none;
}

.mb-pro-item {
    padding: 6px 0;
    color: var(--xk7m-success);
    font-size: 14px;
}

.mb-con-item {
    padding: 6px 0;
    color: var(--xk7m-error);
    font-size: 14px;
}

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

.mb-review-votes {
    display: flex;
    gap: 12px;
}

.mb-vote-btn {
    background: var(--xk7m-bg);
    border: 1px solid var(--xk7m-border);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--xk7m-text);
}

.mb-vote-btn:hover {
    background: var(--xk7m-primary);
    border-color: var(--xk7m-primary);
}

.mb-reply-btn {
    background: transparent;
    border: 1px solid var(--xk7m-primary);
    color: var(--xk7m-primary);
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.mb-reply-btn:hover {
    background: var(--xk7m-primary);
    color: white;
}

.mb-reply-form {
    margin-top: 20px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
}

.mb-reply-form textarea {
    width: 100%;
    background: var(--xk7m-bg);
    border: 1px solid var(--xk7m-border);
    padding: 12px;
    border-radius: 8px;
    color: var(--xk7m-text);
    font-size: 14px;
    margin-bottom: 12px;
}

.mb-reply-actions {
    display: flex;
    gap: 10px;
}

.mb-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mb-btn-primary {
    background: var(--xk7m-primary);
    color: white;
}

.mb-btn-primary:hover {
    background: #1e40af;
}

.mb-btn-secondary {
    background: transparent;
    border: 1px solid var(--xk7m-border);
    color: var(--xk7m-text);
}

.mb-btn-secondary:hover {
    background: var(--xk7m-bg);
}

.gx6m-content-section {
    padding: 60px 0;
}

.gx6m-content-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--xk7m-accent);
}

.dx2n-text-content {
    background: var(--xk7m-bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--xk7m-border);
    margin-bottom: 40px;
    line-height: 1.8;
}

.dx2n-text-content h1,
.dx2n-text-content h2,
.dx2n-text-content h3,
.dx2n-text-content h4 {
    color: var(--xk7m-accent);
    margin-top: 30px;
    margin-bottom: 15px;
}

.dx2n-text-content h1 {
    font-size: 32px;
}

.dx2n-text-content h2 {
    font-size: 28px;
}

.dx2n-text-content h3 {
    font-size: 24px;
}

.dx2n-text-content p {
    margin-bottom: 20px;
    color: var(--xk7m-text-muted);
}

.dx2n-text-content ul,
.dx2n-text-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.dx2n-text-content li {
    margin-bottom: 10px;
    color: var(--xk7m-text-muted);
}

.dx2n-text-content table {
    width: 100%;
    margin: 30px auto;
    border-collapse: collapse;
    background: var(--xk7m-bg);
    border-radius: 12px;
    overflow: hidden;
    max-width: 800px;
    display: block;
    overflow-x: auto;
}

.dx2n-text-content table th,
.dx2n-text-content table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--xk7m-border);
}

.dx2n-text-content table th {
    background: var(--xk7m-primary);
    color: white;
    font-weight: 600;
}

.dx2n-text-content table tr:nth-child(even) {
    background: rgba(30, 64, 175, 0.05);
}

.dx2n-text-content a {
    color: var(--xk7m-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.dx2n-text-content a:hover {
    border-bottom-color: var(--xk7m-primary);
}

.vx9k-author-section {
    background: var(--xk7m-bg-light);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--xk7m-border);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.vx9k-author-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--xk7m-primary);
}

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

.vx9k-author-info h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--xk7m-accent);
}

.vx9k-author-info p {
    line-height: 1.7;
    color: var(--xk7m-text-muted);
    margin-bottom: 15px;
}

.mx5p-social-links {
    display: flex;
    gap: 12px;
}

.mx5p-social-links a {
    color: var(--xk7m-text);
    text-decoration: none;
    padding: 8px 16px;
    background: var(--xk7m-bg);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid var(--xk7m-border);
}

.mx5p-social-links a:hover {
    background: var(--xk7m-primary);
    border-color: var(--xk7m-primary);
    color: white;
}

.jy4n-footer {
    background: linear-gradient(135deg, var(--xk7m-bg-light) 0%, #0f172a 100%);
    padding: 40px 0 20px;
    border-top: 2px solid var(--xk7m-primary);
    margin-top: auto;
}

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

.ky8m-footer-section h4 {
    color: var(--xk7m-accent);
    margin-bottom: 15px;
    font-size: 18px;
}

.ky8m-footer-section ul {
    list-style: none;
}

.ky8m-footer-section ul li {
    margin-bottom: 10px;
}

.ky8m-footer-section ul li a {
    color: var(--xk7m-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ky8m-footer-section ul li a:hover {
    color: var(--xk7m-accent);
}

.px7k-trust-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.px7k-trust-logos img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.px7k-trust-logos img:hover {
    opacity: 1;
}

.wy9n-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--xk7m-border);
    color: var(--xk7m-text-muted);
    font-size: 14px;
}

.qy3m-fixed-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: slideInUp 0.5s ease;
}

.qy3m-fixed-widget .widget-content {
    background: linear-gradient(135deg, var(--xk7m-secondary) 0%, var(--xk7m-accent) 100%);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
    text-align: center;
}

.qy3m-fixed-widget .widget-content p {
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 16px;
}

.qy3m-fixed-widget .ux7k-btn {
    background: white;
    color: var(--xk7m-secondary);
    font-weight: 700;
}

.qy3m-fixed-widget .ux7k-btn:hover {
    background: #f1f5f9;
}

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

.fade-in {
    animation: fadeIn 0.8s ease;
}

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

.zx4n-success-message {
    background: var(--xk7m-success);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}

.zx4n-success-message.show {
    display: block;
}

@media (max-width: 968px) {
    .rt5n-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--xk7m-bg-light);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
        align-items: flex-start;
    }

    .rt5n-menu.active {
        right: 0;
    }

    .qm8z-burger {
        display: flex;
    }

    .dx9m-header-actions {
        gap: 8px;
    }

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

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

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

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

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

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

    .tb9x-slide-overlay h2 {
        font-size: 28px;
    }

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

@media (max-width: 640px) {
    .qx3k-card-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .kw2z-card-actions {
        flex-direction: column;
    }

    .ux7k-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

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

    .mb-review-rating {
        align-items: flex-start;
    }

    .qy3m-fixed-widget {
        left: 20px;
        right: 20px;
    }

    .mx5p-social-links {
        flex-direction: column;
    }
}

.wp-block-group {
    margin-bottom: 20px;
}

.elementor-widget-wrap {
    display: flex;
    flex-wrap: wrap;
}

.yoast-schema-graph {
    display: none;
}

.wdsfx a {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.wdsfx p,
.wdsfx li {
    overflow-wrap: anywhere;
}

@media (max-width: 767px) {
    .wdsfx a {
        word-break: break-word;
        overflow-wrap: anywhere;
    }
}