:root {
    --primary: #07070b;
    --secondary: #0f1119;
    --accent: #e8b930;
    --accent-hover: #f5cc4a;
    --accent-dim: rgba(232, 185, 48, 0.12);
    --success: #34d399;
    --error: #ef4444;
    --text: #f0f0f2;
    --text-muted: #8b8fa3;
    --text-dim: #5a5e72;
    --card-bg: rgba(15, 17, 25, 0.75);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-hover-border: rgba(232, 185, 48, 0.2);
    --gradient-gold: linear-gradient(135deg, #e8b930 0%, #d4982a 100%);
    --gradient-dark: linear-gradient(180deg, #07070b 0%, #0f1119 40%, #0d1420 100%);
    --gradient-card: linear-gradient(145deg, rgba(15, 17, 25, 0.8), rgba(13, 20, 32, 0.6));
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-dark);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 15% 80%, rgba(232, 185, 48, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(52, 211, 153, 0.03) 0%, transparent 50%);
    animation: bgFloat 30s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(-10%, -10%) rotate(0deg); }
    33% { transform: translate(-5%, 5%) rotate(2deg); }
    66% { transform: translate(5%, -5%) rotate(-2deg); }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(7, 7, 11, 0.8);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(7, 7, 11, 0.95);
    border-bottom-color: rgba(232, 185, 48, 0.08);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.25s ease;
}

.mobile-menu:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu span {
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary);
    box-shadow: 0 2px 12px rgba(232, 185, 48, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 185, 48, 0.3);
    filter: brightness(1.08);
}

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

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

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.breadcrumb {
    padding: 5.5rem 2rem 0.75rem;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.breadcrumb-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s;
}

.breadcrumb-list a:hover {
    color: var(--accent);
}

.breadcrumb-list .separator {
    color: var(--text-dim);
}

.breadcrumb-list .current {
    color: var(--text-dim);
}

.review-hero {
    padding: 1.5rem 2rem 2rem;
}

.review-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--card-border);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.review-hero-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.review-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.review-hero h1 span {
    color: var(--accent);
}

.review-hero-bonus {
    font-size: 1.1rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.review-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.review-hero-tags .tag {
    padding: 0.3rem 0.75rem;
    background: var(--accent-dim);
    border: 1px solid rgba(232, 185, 48, 0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
}

.review-hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.review-hero-rating {
    text-align: center;
    padding: 1.75rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(232, 185, 48, 0.12);
    min-width: 160px;
}

.review-hero-rating .score {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.review-hero-rating .out-of {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.review-hero-rating .stars {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.quick-facts {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
}

.quick-facts h3 {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.01em;
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.quick-fact {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid var(--card-border);
    transition: border-color 0.25s ease;
}

.quick-fact:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.quick-fact-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.quick-fact-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-layout {
    padding: 1.5rem 2rem 3rem;
}

.review-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
}

.review-section {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--card-border);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(12px);
}

.review-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.review-section h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.6rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.review-section p {
    color: var(--text-muted);
    margin-bottom: 0.875rem;
    line-height: 1.7;
}

.review-section ul, .review-section ol {
    color: var(--text-muted);
    margin: 0.875rem 0 1.25rem 1.5rem;
}

.review-section li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.25rem 0;
}

.pros, .cons {
    padding: 1.25rem;
    border-radius: 12px;
}

.pros {
    background: rgba(52, 211, 153, 0.04);
    border: 1px solid rgba(52, 211, 153, 0.12);
}

.cons {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.12);
}

.pros h4 {
    color: var(--success);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.cons h4 {
    color: #f87171;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pros li, .cons li {
    padding: 0.35rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pros li::before {
    content: '\2713  ';
    color: var(--success);
    font-weight: 700;
}

.cons li::before {
    content: '\2717  ';
    color: #f87171;
    font-weight: 700;
}

.rating-breakdown {
    margin: 1.25rem 0;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.rating-label {
    width: 120px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.rating-bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating-value {
    width: 40px;
    text-align: right;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
}

.info-table tr {
    border-bottom: 1px solid var(--card-border);
    transition: background 0.2s ease;
}

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

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 0.7rem 0.5rem;
    font-size: 0.9rem;
}

.info-table td:first-child {
    color: var(--text-dim);
    width: 40%;
    font-size: 0.85rem;
}

.info-table td:last-child {
    font-weight: 600;
}

.sidebar-cta {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--card-hover-border);
    text-align: center;
    position: sticky;
    top: 90px;
    backdrop-filter: blur(12px);
}

.sidebar-cta h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.sidebar-cta .bonus-text {
    color: var(--success);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.sidebar-cta .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(232, 185, 48, 0.06) 0%, rgba(212, 152, 42, 0.04) 100%);
    border: 1px solid rgba(232, 185, 48, 0.12);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0;
}

.highlight-box strong {
    color: var(--accent);
}

.highlight-box p {
    margin-bottom: 0;
    line-height: 1.6;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 0.6rem;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(232, 185, 48, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    padding: 1.15rem 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.25s ease;
    gap: 1rem;
}

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

.faq-toggle {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    font-size: 0.85rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--gradient-gold);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-content {
    padding: 0 1.25rem 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.9rem;
}

.cta-banner {
    padding: 3rem 2rem;
}

.cta-banner-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--card-hover-border);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.cta-banner-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.cta-banner-inner h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-banner-inner h2 span {
    color: var(--accent);
}

.cta-banner-inner p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-banner-inner .btn {
    font-size: 1rem;
    padding: 1rem 2.25rem;
}

footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--accent);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.responsible-gaming {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: 12px;
    padding: 1.15rem;
    margin-bottom: 2rem;
    text-align: center;
}

.responsible-gaming p {
    color: #f87171;
    font-size: 0.85rem;
    line-height: 1.5;
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-gold);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232, 185, 48, 0.3);
}

@media (max-width: 968px) {
    .review-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .review-hero-tags { justify-content: center; }
    .review-hero-cta { justify-content: center; }
    .review-grid { grid-template-columns: 1fr; }
    .sidebar-cta { position: static; }
    .pros-cons { grid-template-columns: 1fr; }
    .quick-facts-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .mobile-menu { display: flex; }
}

@media (max-width: 600px) {
    .review-hero-inner { padding: 1.75rem 1.25rem; }
    .review-section { padding: 1.5rem 1.25rem; }
    .quick-facts-grid { grid-template-columns: 1fr; }
    .breadcrumb { padding: 5rem 1rem 0.5rem; }
}
