/* ============================================
   Color Palette - Light Tones
   ============================================ */
:root {
    --primary-color: #4a90e2;
    --primary-dark: #357abd;
    --secondary-color: #f5f7fa;
    --accent-color: #ff6b6b;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e1e8ed;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #f0f4f8;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --star-color: #ffd700;
    --star-empty: #e0e0e0;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;

    word-wrap: break-word;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
    --header-height: 70px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    transition: all 0.3s ease;
}

.site-logo {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.header-logo {
    max-width: 100px;
    height: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-login,
.btn-register {
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-login {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-register {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-register:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}


/* ============================================
   Main Content
   ============================================ */
.site-main {
    padding: 2rem 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.entry-content {
    background-color: var(--bg-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 2.5rem;
    color: var(--text-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

/* ============================================
   Author Info
   ============================================ */
.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.author-details h3, .author-details .author-name {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
}

.author-details .author-title {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   Top 5 List
   ============================================ */
.top5-list {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.top5-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.top5-items {
    list-style: none;
    padding: 1.5rem;
}

.top5-items li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.8;
}

.top5-items li:last-child {
    border-bottom: none;
}

.top5-items .medal {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.top5-items a {
    font-weight: 600;
    color: var(--primary-color);
}

/* ============================================
   Casino Cards
   ============================================ */
.casino-listings {
    margin: 2rem 0;
}

.casino-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-top-1 {
    border: 2px solid var(--star-color);
    background: linear-gradient(to right, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.card-top-2 {
    border: 2px solid #c0c0c0;
    background: linear-gradient(to right, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
}

.card-top-3 {
    border: 2px solid #92400e;
    background: linear-gradient(to right, rgba(146, 64, 14, 0.1), rgba(146, 64, 14, 0.05));
}

.card-regular {
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

/* Unique Casino Card Styles */
.casino-lizaro {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.casino-lizaro:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35);
}

.casino-onlyspins {
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.2);
}

.casino-onlyspins:hover {
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.3);
}

.casino-millioner {
    box-shadow: 0 4px 15px rgba(146, 64, 14, 0.2);
}

.casino-millioner:hover {
    box-shadow: 0 8px 25px rgba(146, 64, 14, 0.3);
}

.casino-winrolla .logo-section {
    background: linear-gradient(135deg, #0f0d10 0%, #1a1620 100%);
}

.casino-winrolla .bonus-section {
    background-color: #f8f9fa;
}

.casino-wyns .logo-section {
    background: linear-gradient(135deg, #64e5ee 0%, #4dd0e1 100%);
}

.casino-wyns .bonus-section {
    background-color: #e8f5f7;
}

/* Additional unique styles for each casino */
.casino-lizaro .features-section {
    background-color: #fffef5;
}

.casino-onlyspins .features-section {
    background-color: #fafbfc;
}

.casino-millioner .features-section {
    background-color: #f5f3f0;
}

.casino-winrolla .features-section {
    background-color: #f0f0f2;
}

.casino-wyns .features-section {
    background-color: #f0f9fa;
}

.badge-ribbon {
    position: absolute;
    top: 20px;
    right: -40px;
    width: 150px;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-top-1 {
    background: linear-gradient(to right, #f59e0b, #fde047);
    color: #000;
}

.badge-top-2 {
    background: linear-gradient(to right, #9ca3af, #d1d5db);
    color: #000;
}

.badge-top-3 {
    background: linear-gradient(to right, #92400e, #b45309);
    color: #fff;
}

.casino-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 2px solid var(--border-color);
}

.card-flex {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .card-flex {
        flex-direction: row;
    }
}

.logo-section {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    position: relative;
}

@media (min-width: 768px) {
    .logo-section {
        width: 30%;
    }
}

.casino-badge {
    background-color: rgba(255, 215, 0, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.logo-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.bonus-section {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .bonus-section {
        width: 35%;
        border-bottom: none;
        border-left: 1px solid var(--border-color);
    }
}

.bonus-text-top-3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
}

.bonus-text-top-3 a {
    color: var(--text-color);
    text-decoration: none;
}

.bonus-text-top-3 a:hover {
    color: var(--primary-color);
}

.bonus-text-xl {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.bonus-text-regular {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
}

.bonus-text-regular a {
    color: var(--text-color);
    text-decoration: none;
}

.bonus-text-regular a:hover {
    color: var(--primary-color);
}

.bonus-text-lg {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.payment-methods-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.payment-method-icon {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.features-section {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    min-width: 0;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .features-section {
        width: 25%;
        border-bottom: none;
        border-left: 1px solid var(--border-color);
    }
}

.features-list {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.features-list li {
    min-width: 0;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    min-width: 0;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item .check-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-item > *:not(.check-icon) {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--success-color);
    flex-shrink: 0;
}

.cta-section {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-section {
        width: 25%;
        border-left: 1px solid var(--border-color);
    }
}

.cta-button-top-3,
.cta-button-regular {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: white;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-button-top-3:hover,
.cta-button-regular:hover {
    background-color: #e55555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    text-decoration: none;
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Stars Rating */
.stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 1.25rem;
    font-family: Times, serif;
    line-height: 1;
}

.stars::before {
    content: "★★★★★";
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-empty) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Lists
   ============================================ */
ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* ============================================
   Blockquote
   ============================================ */
blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-style: italic;
    color: var(--text-light);
}

blockquote p {
    margin: 0;
}

/* ============================================
   Tables
   ============================================ */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem 0;
    background-color: var(--bg-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: var(--primary-color);
    color: white;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th, tr:first-child td {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

tbody tr:hover {
    background-color: var(--bg-light);
}

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

/* Responsive table wrapper */
.responsive-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
}

.responsive-table table {
    min-width: 600px;
    width: 100%;
}


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

.faq-item {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.faq-question h3 {
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
}

.faq-question:hover {
    background-color: var(--primary-dark);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

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

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.8;
}

/* ============================================
   Author Box
   ============================================ */
.author-box-block {
    background-color: var(--bg-color);
    border: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.author-box-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .author-box-content {
        flex-direction: column;
    }
}

.author-box-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.author-box-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.author-name-mobile {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .author-name-mobile {
        display: none;
    }
}

.author-box-text {
    flex: 1;
}

.author-name-desktop {
    display: none;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .author-name-desktop {
        display: block;
    }
}

.author-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    text-decoration: none;
}

.social-link.linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
    border-color: #1da1f2;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links-list li {
    margin: 0;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links-list a:hover {
    color: white;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ============================================
   Images
   ============================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Content Images */
.content-image {
    margin: 2rem 0;
    text-align: center;
}

.styled-image {
    /* width: 80%; */
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto 10px auto;
}

.styled-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-image figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .styled-image {
        border-radius: 16px;
    }
    
    .content-image {
        margin: 2.5rem 0;
    }
}

@media (max-width: 767px) {
    .styled-image {
        border-radius: 8px;
    }
    
    .content-image {
        margin: 1.5rem 0;
    }
    
    .content-image figcaption {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
/* Adaptive Header Layout */
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        justify-content: center;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .site-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
    }
    
    .header-nav {
        width: 100%;
        justify-content: center;
        order: 2;
    }
    
    .header-buttons {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .btn-login,
    .btn-register {
        flex: 1;
        min-width: 140px;
        text-align: center;
    }
}

/* From 601px to 768px inclusive - standard layout (logo on the left, buttons on the right) */
/* Styles applied by default, no media query needed */

/* After 768px (769px+) - logo centered on the first row, buttons centered on the second */
/*@media (min-width: 769px) and (max-width: 900px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .site-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
    }
    
    .header-nav {
        width: 100%;
        justify-content: center;
        order: 2;
    }
    
    .header-buttons {
        justify-content: center;
    }
}*/

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .header-container,
    .content-container,
    .footer-container {
        padding: 0 1rem;
    }

    .entry-content {
        padding: 1.5rem;
    }

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

    .logo-section,
    .bonus-section,
    .features-section,
    .cta-section {
        width: 100% !important;
        border-left: none !important;
        border-bottom: 1px solid var(--border-color);
    }

    .cta-section {
        border-bottom: none;
    }

    .badge-ribbon {
        right: -30px;
        width: 120px;
        font-size: 0.75rem;
    }

    table {
        font-size: 0.875rem;
    }

    th, td {
        padding: 0.75rem 0.5rem;
    }

    .author-box-block {
        padding: 1.5rem;
    }

    .author-box-content {
        gap: 1.5rem;
    }

    .footer-links-list {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .entry-content {
        padding: 1rem;
    }

    .top5-header {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .top5-items {
        padding: 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

