:root {
    --color-bg: #f8f9fa;
    --color-bg-secondary: #ffffff;
    --color-bg-card: #ffffff;
    --color-gold: #b8860b;
    --color-gold-light: #996600;
    --color-gold-dark: #8b6914;
    --color-text: #1a1a2e;
    --color-text-muted: #4a5568;
    --color-border: #e2e8f0;
    --color-success: #16a34a;
    --color-warning: #d97706;
    --color-danger: #dc2626;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(184, 134, 11, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    font-size: 17px;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(184, 134, 11, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    opacity: 1;
    pointer-events: none;
    z-index: -1;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #1a1a2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar-logo-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.navbar-logo-text span {
    color: var(--color-gold);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0;
    padding: 0;
}

.navbar-menu li::marker {
    content: none;
}

.navbar-menu a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.navbar-menu a:hover {
    color: var(--color-gold);
    background: rgba(184, 134, 11, 0.1);
}

.navbar-menu a.active {
    color: var(--color-gold);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== ARTICLE HEADER ===== */
.article-header {
    background: #ffffff;
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--color-border);
}

.article-header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.article-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.article-header h1 span {
    color: var(--color-gold);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.article-meta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
    flex-shrink: 0;
    background: var(--color-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.article-meta-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.article-meta-text .written-by {
    color: var(--color-text-muted);
}

.article-meta-text .author-name {
    font-weight: 600;
    color: var(--color-text);
}

.article-meta-text .meta-sep {
    color: var(--color-border);
    margin: 0 0.15rem;
}

.article-meta-text .meta-date {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.article-meta-text .meta-date svg {
    width: 13px;
    height: 13px;
    opacity: 0.5;
}

.article-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin: 0;
}

/* ===== 18+ TOP BANNER ===== */
.age-banner {
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-left: 4px solid #dc2626;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.age-banner-badge {
    width: 44px;
    height: 44px;
    background: #dc2626;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.age-banner p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.age-banner strong {
    color: var(--color-text);
    font-weight: 600;
}

.article-disclosure {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.8rem;
    color: #9ca3af;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.article-disclosure .disc-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.article-disclosure strong {
    color: #6b7280;
    font-weight: 600;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content {
    padding: 3rem 0 5rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

h2::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
}

h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-gold-light);
    margin: 2rem 0 1rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 1.5rem 0 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
}

/* Body content: no bold text */
.content p strong,
.content li strong,
.content td strong {
    font-weight: 400;
    color: var(--color-text-muted);
}

ul, ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
}

li {
    margin-bottom: 0.6rem;
    padding-left: 0.5rem;
}

ul li::marker { color: var(--color-gold); }
ol li::marker { color: var(--color-gold); font-weight: 600; }

.info-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-gold);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box p:last-child { margin-bottom: 0; }

/* ===== SHOWCASE GRID — FULLY CLICKABLE CARDS ===== */
.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.showcase-card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1.25rem;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--color-gold);
}

.showcase-card:first-child {
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
    border-color: var(--color-gold);
}

.showcase-rank {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 28px;
    height: 28px;
    background: var(--color-gold);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.4);
}

.showcase-card:first-child .showcase-rank {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    width: 32px;
    height: 32px;
}

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

.showcase-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.showcase-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.showcase-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
}

.showcase-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.stars { display: flex; gap: 1px; }

.star { font-size: 0.9rem; color: #e5e7eb; }
.star.filled { color: #fbbf24; }
.star.half {
    background: linear-gradient(90deg, #fbbf24 50%, #e5e7eb 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-value {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.showcase-bonus {
    font-size: 0.95rem;
    color: var(--color-gold-dark);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    flex-shrink: 0;
    min-width: 90px;
    text-align: center;
    pointer-events: none;
}

.showcase-card:hover .showcase-btn {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

/* ===== PROS & CONS ===== */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros, .cons {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
}

.pros { border: 1px solid rgba(74, 222, 128, 0.3); }
.cons { border: 1px solid rgba(248, 113, 113, 0.3); }

.pros h4, .cons h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
}

.pros h4 { color: var(--color-success); }
.cons h4 { color: var(--color-danger); }

.pros ul, .cons ul { margin: 0; padding-left: 1.25rem; }
.pros li::marker { color: var(--color-success); }
.cons li::marker { color: var(--color-danger); }

/* ===== BONUS GRID ===== */
.bonus-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bonus-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.bonus-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bonus-content h4 { margin: 0 0 0.5rem; color: var(--color-text); }
.bonus-content p { margin: 0; font-size: 0.95rem; }

/* ===== WARNING ===== */
.warning-box {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h4 {
    color: var(--color-warning);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
}

.warning-box p { margin: 0; }

/* ===== INLINE 18+ INSET ===== */
.age-inset {
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.age-inset-badge {
    width: 32px;
    height: 32px;
    background: #dc2626;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.78rem;
    flex-shrink: 0;
}

.age-inset p { margin: 0; line-height: 1.5; }

/* ===== FAQ ===== */
.faq-list { margin: 2rem 0; }

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover { background: rgba(184, 134, 11, 0.05); }

.faq-question::after {
    content: '+';
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after { transform: rotate(45deg); }

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

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

.faq-answer p { padding: 0 1.5rem 1.25rem; margin: 0; }

/* ===== RESPONSIBLE GAMBLING ===== */
.responsible-gambling {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    border: 1px solid #f59e0b;
    border-radius: var(--radius);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.responsible-gambling h3 { color: #b45309; margin-top: 0; }
.responsible-gambling p { max-width: 700px; margin: 0 auto 1.5rem; }

.help-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.help-link:hover { border-color: var(--color-gold); color: var(--color-gold); }

/* ===== TABLE ===== */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-card);
    font-size: 0.95rem;
}

thead { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%); }

th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--color-gold);
}

td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(184, 134, 11, 0.05); }

/* ===== REVIEW BLOCK ===== */
.review-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-card);
}

.review-block h3 {
    margin-top: 0;
    color: var(--color-text);
    font-size: 1.5rem;
}

.review-rank {
    display: inline-block;
    background: var(--color-gold);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.25rem 0.7rem;
    border-radius: 30px;
    margin-bottom: 0.5rem;
}

.review-tagline {
    font-size: 1.05rem;
    color: var(--color-gold-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem 1.5rem;
    background: rgba(184, 134, 11, 0.05);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.25rem;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.review-scores span strong {
    color: var(--color-gold-dark);
    font-weight: 600;
}

.review-block h4 {
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 1.25rem 0 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a2e;
    color: #e5e7eb;
    padding: 3.5rem 0 0;
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.footer-logo-text span {
    color: var(--color-gold);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #9ca3af;
    margin: 0;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--color-gold);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.65rem;
    padding: 0;
}

.footer-col li::marker {
    content: none;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col a::before {
    content: '›';
    color: var(--color-gold);
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-col a:hover::before {
    transform: translateX(3px);
}

.footer-age-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-sm);
    margin-top: 1rem;
}

.footer-age-badge {
    width: 42px;
    height: 42px;
    background: #dc2626;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.footer-age-notice p {
    font-size: 0.82rem;
    color: #d1d5db;
    margin: 0;
    line-height: 1.45;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

.footer-disclaimer-bottom {
    font-size: 0.78rem;
    color: #6b7280;
    max-width: 600px;
    line-height: 1.5;
    margin-top: 1rem !important;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover { background: var(--color-gold-dark); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5); }
.scroll-to-top:active { transform: translateY(0); }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1rem 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        display: none;
    }

    .navbar-menu.active {
        display: flex;
        animation: slideDown 0.25s ease;
    }

    .navbar-menu li {
        width: 100%;
    }

    .navbar-menu a {
        display: block;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }

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

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

@media (max-width: 768px) {
    .article-header { padding: 1.5rem 0 1.25rem; }
    .article-header h1 { font-size: 1.65rem; }

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

    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

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

    .scroll-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }

    .review-block { padding: 1.25rem 1.25rem; }
    .review-scores { grid-template-columns: 1fr 1fr; }

    .showcase-card {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        padding: 1rem;
        padding-top: 1.25rem;
        gap: 0.75rem;
    }

    .showcase-logo { grid-row: span 2; }
    .showcase-logo-placeholder { width: 50px; height: 50px; font-size: 1.2rem; }
    .showcase-info { grid-column: 2; }
    .showcase-name { font-size: 1rem; }
    .showcase-bonus { grid-column: 1 / -1; text-align: left; font-size: 0.85rem; }
    .showcase-btn { grid-column: 1 / -1; width: 100%; }

    /* ===== MOBILE TABLE - CARD LAYOUT ===== */
    .table-wrapper {
        overflow-x: visible;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }

    table {
        background: transparent;
        font-size: 0.9rem;
    }

    thead {
        display: none;
    }

    tbody, tr, td {
        display: block;
        width: 100%;
    }

    tr {
        background: var(--color-bg-card);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-sm);
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        box-shadow: var(--shadow-card);
        overflow: hidden;
    }

    tr:first-child {
        border-top: 3px solid var(--color-gold);
    }

    td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--color-border);
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        text-align: right;
    }

    td:last-child {
        border-bottom: none;
    }

    td:first-child {
        background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(184, 134, 11, 0.03) 100%);
        font-weight: 600;
        color: var(--color-text);
        text-align: center;
        justify-content: center;
        font-size: 1.05rem;
        padding: 0.9rem 1rem;
    }

    td:first-child::before {
        display: none;
    }

    td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--color-text);
        text-align: left;
        flex-shrink: 0;
        max-width: 45%;
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    tr:hover td {
        background: var(--color-bg-card);
    }

    tr:hover td:first-child {
        background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(184, 134, 11, 0.03) 100%);
    }

    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }

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