/* ===============================
   MELLSTROY - Dark Forbes / Luxury Magazine
   Premium Digital Profile 2026
   Polished for CIS Audience
   =============================== */

:root {
    --bg-color: #0b0b0b;
    --bg-card: #141414;
    --text-main: #E5E5E5;
    --text-muted: #888888;
    --text-light: #666666;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #C5A059;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #C5A059 100%);
    --line-color: rgba(255, 255, 255, 0.08);
    --line-color-hover: rgba(255, 255, 255, 0.15);
    --verified-blue: #1D9BF0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.8;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

/* ===============================
   TYPOGRAPHY - Magazine Style
   =============================== */

h1,
h2,
h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Hero Title - HUGE */
.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--verified-blue);
    border-radius: 50%;
    vertical-align: super;
    margin-left: 8px;
    position: relative;
    top: -30px;
}

.verified-badge svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Section Headers */
.section-title {
    font-size: 1.75rem;
    color: #fff;
    padding-bottom: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line-color);
}

.section-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===============================
   LAYOUT
   =============================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 0;
}

/* Sidebar first on mobile */
.main-grid>.sidebar {
    order: -1;
}

.main-grid>.content {
    order: 0;
}

@media (min-width: 1024px) {
    .main-grid {
        grid-template-columns: 2fr 1fr;
        gap: 80px;
        align-items: start;
    }

    .main-grid>.sidebar {
        order: 0;
    }
}

/* Post page: article first on mobile */
.main-grid.post-page>.content {
    order: -2;
}

.main-grid.post-page>.sidebar {
    order: 1;
}

/* ===============================
   HEADER - Minimal
   =============================== */

.header {
    padding: 24px 0;
    border-bottom: 1px solid var(--line-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--gold);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #fff;
}

/* ===============================
   HERO - Magazine Cover
   =============================== */

.hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--line-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: end;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr auto;
    }
}

.hero-text {
    max-width: 700px;
}

.hero-intro {
    font-size: 17px;
    color: var(--text-main);
    line-height: 1.9;
    margin-top: 24px;
    max-width: 600px;
}

/* Hero Image with Gradient Fade */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    display: block;
}

/* Mobile hero image - shown between subtitle and title */
.hero-image-mobile {
    display: block;
    margin: 20px auto;
}

.hero-image-mobile img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    border-radius: 8px;
    margin: 0 auto;
}

/* Desktop: hide mobile image, show sidebar image */
.hero-image-desktop {
    display: none;
}

@media (min-width: 768px) {
    .hero-image-mobile {
        display: none;
    }

    .hero-image-desktop {
        display: block;
    }
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
    pointer-events: none;
}

/* ===============================
   QUOTE BLOCK
   =============================== */

.quote-block {
    position: relative;
    padding: 32px 40px;
    margin: 0 0 40px 0;
    background: var(--bg-card);
    border-left: 3px solid var(--gold);
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    margin-left: 20px;
}

.quote-author {
    margin-top: 16px;
    margin-left: 20px;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===============================
   CASINO LIST - "The List" Style
   =============================== */

.casino-list {
    display: flex;
    flex-direction: column;
}

.casino-row {
    display: grid;
    grid-template-columns: 40px 1fr auto auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-color);
    transition: background 0.3s ease;
}

.casino-row:hover {
    background: rgba(255, 255, 255, 0.02);
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.casino-rank {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-light);
}

.casino-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.casino-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.casino-name img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.casino-bonus {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.03em;
}

/* Trust Score */
.trust-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.trust-score-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-score-stars {
    display: flex;
    gap: 2px;
}

.trust-score-stars .star {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.trust-score-stars .star.empty {
    fill: var(--text-light);
    opacity: 0.3;
}

/* Luxury Button */
.btn-visit {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-visit:hover {
    background: var(--gold);
    color: #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .casino-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .casino-rank {
        display: none;
    }

    .trust-score {
        align-items: flex-start;
    }

    .btn-visit {
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   TIMELINE
   =============================== */

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--line-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 8px;
}

.timeline-text {
    color: var(--text-main);
    line-height: 1.7;
}

/* ===============================
   NEWS GRID - The Daily Ledger
   =============================== */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-card {
    display: block;
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--line-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.news-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.news-card:hover .news-card-image img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.news-card-content {
    padding: 20px;
}

.news-card-date {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.news-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s;
}

.news-card:hover .news-card-title {
    color: var(--gold);
}

/* Section Header with View All Link */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 32px;
}

.section-header .section-title {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.view-all-link {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: color 0.3s;
}

.view-all-link span {
    margin-left: 4px;
    transition: transform 0.3s;
    display: inline-block;
}

.view-all-link:hover {
    color: #fff;
}

.view-all-link:hover span {
    transform: translateX(5px);
}

/* ===============================
   SIDEBAR - Profile Card
   =============================== */

.sidebar {
    position: static;
}

@media (min-width: 1024px) {
    .sidebar {
        position: sticky;
        top: 40px;
    }
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--line-color);
    padding: 32px;
}

.profile-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-color);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-color);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.stat-value {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-align: right;
}

.stat-value.gold {
    font-size: 18px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stat-value.live {
    color: #22C55E;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-value.live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Quick Links in Sidebar */
.quick-links {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line-color);
}

.quick-links-title {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.quick-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-color);
    text-decoration: none;
    transition: all 0.2s;
}

.quick-link:last-child {
    border-bottom: none;
}

.quick-link:hover {
    padding-left: 8px;
}

.quick-link-name {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.quick-link-arrow {
    font-size: 12px;
    color: var(--gold);
}

/* Pulsing Live Indicator */
.live-pulse {
    color: #EF4444;
    font-weight: 700;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Recent News Links in Sidebar */
.recent-post-link {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-color);
    text-decoration: none;
    transition: all 0.2s;
}

.recent-post-link:last-child {
    border-bottom: none;
}

.recent-post-link:hover {
    padding-left: 4px;
}

.recent-post-date {
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0;
}

.recent-post-title {
    color: var(--text-main);
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.2s;
}

.recent-post-link:hover .recent-post-title {
    color: var(--gold);
}

/* Source Block - Forbes Style */
.source-block {
    margin-bottom: 32px;
    padding: 20px 24px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.source-block-bottom {
    margin-top: 48px;
    margin-bottom: 0;
}

.source-header {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.source-content {
    margin-bottom: 16px;
}

.source-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.source-desc {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.source-bonus {
    display: inline-block;
    font-size: 13px;
    color: var(--gold);
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    margin-top: 8px;
}

.source-link {
    display: inline-block;
    font-size: 14px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.source-link:hover {
    color: #fff;
    padding-left: 4px;
}

/* Back Link */
.back-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover {
    color: #fff;
}

/* ===============================
   CONTENT SECTIONS
   =============================== */

.content-section {
    margin-bottom: 60px;
}

.content-section p {
    color: var(--text-main);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.9;
}

.content-section ul {
    list-style: none;
    padding: 0;
}

.content-section li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-color);
    color: var(--text-main);
    line-height: 1.7;
}

.content-section li strong {
    color: var(--gold);
}

/* Article Content (WYSIWYG output) */
.article-content {
    line-height: 1.9;
    font-size: 15px;
    color: var(--text-main);
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2,
.article-content h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin: 32px 0 16px;
}

.article-content strong,
.article-content b {
    color: var(--gold);
    font-weight: 600;
}

.article-content a {
    color: var(--gold);
    text-decoration: underline;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
}

/* ===============================
   FOOTER
   =============================== */

.footer {
    padding: 40px 0;
    border-top: 1px solid var(--line-color);
    margin-top: 80px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-disclaimer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-disclaimer {
        flex-direction: row;
        text-align: left;
    }
}

.badge-18 {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-registry {
    font-size: 11px;
    color: var(--text-light);
    font-style: italic;
}

.footer-tg-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-tg-link:hover {
    color: #fff;
}

/* ===============================
   SCROLLBAR
   =============================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--line-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===============================
   SELECTION
   =============================== */

::selection {
    background: var(--gold);
    color: #000;
}

/* ===============================
   NEWS ARCHIVE PAGE
   =============================== */

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.page-title span {
    color: var(--gold);
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 10px;
}

.news-archive {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.news-archive-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.news-archive-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.news-archive-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s;
}

.news-archive-item:hover .news-archive-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.news-archive-content {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-archive-date {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.news-archive-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    transition: color 0.2s;
}

.news-archive-item:hover .news-archive-title {
    color: var(--gold);
}

.news-archive-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.empty-state {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

/* ===============================
   MOBILE RESPONSIVE DESIGN
   =============================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header */
    .header-inner {
        flex-wrap: wrap;
        gap: 16px;
    }

    .header-nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .header-nav a {
        font-size: 12px;
    }

    /* Hero */
    .hero {
        padding: 60px 0;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .verified-badge {
        width: 18px;
        height: 18px;
        top: 0;
        vertical-align: middle;
    }

    .verified-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero-intro {
        font-size: 15px;
    }

    .hero-image {
        display: none;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Casino Cards */
    .casinos-numbered {
        gap: 16px;
    }

    .casino-item-premium {
        grid-template-columns: auto 1fr;
        gap: 16px;
        padding: 20px;
    }

    .casino-rank-badge {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .casino-logo-container {
        width: 50px;
        height: 50px;
    }

    .casino-name {
        font-size: 16px;
    }

    .casino-bonus-tag {
        font-size: 11px;
        padding: 4px 8px;
    }

    .btn-visit {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* News Archive */
    .news-archive-item {
        grid-template-columns: 1fr;
    }

    .news-archive-content {
        padding: 16px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-header {
        margin-bottom: 40px;
        padding-top: 20px;
    }

    /* Article Page */
    .post-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar {
        order: 2;
    }

    .article-content {
        font-size: 14px;
    }

    /* Source Blocks */
    .source-block {
        padding: 16px 20px;
    }

    .source-name {
        font-size: 18px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-registry {
        font-size: 12px;
    }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Header */
    .logo {
        font-size: 18px;
    }

    .header-nav {
        gap: 12px;
    }

    .header-nav a {
        font-size: 11px;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 10px;
    }

    .verified-badge {
        width: 18px;
        height: 18px;
        top: -15px;
    }

    .verified-badge svg {
        width: 12px;
        height: 12px;
    }

    /* Casino Cards */
    .casino-item-premium {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .casino-rank-badge {
        position: static;
        margin: 0 auto 8px;
    }

    .casino-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .btn-visit {
        width: 100%;
        justify-content: center;
    }

    /* News Cards */
    .news-card {
        padding: 16px;
    }

    .news-card-title {
        font-size: 16px;
    }

    /* Profile Card */
    .profile-card {
        padding: 20px;
    }

    .stat-value {
        font-size: 14px;
    }

    /* Article */
    .source-block {
        padding: 14px 16px;
    }

    .source-name {
        font-size: 16px;
    }

    .source-link {
        font-size: 13px;
    }

    /* Page Header */
    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 14px;
    }

    /* Footer */
    .footer-disclaimer {
        font-size: 12px;
    }

    .badge-18 {
        font-size: 10px;
        padding: 2px 6px;
    }
}