/* ==========================================
   49G.com - CSS Principal
   ========================================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #ff6b00;
    --primary-dark: #e05500;
    --secondary: #1a1a2e;
    --accent: #ffd700;
    --bg-dark: #0f0f23;
    --bg-card: #16213e;
    --bg-section: #1a1a2e;
    --text: #e0e0e0;
    --text-light: #a0a0b0;
    --text-white: #ffffff;
    --border: #2a2a4a;
    --success: #00c853;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==========================================
   Header
   ========================================== */
.header {
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo a { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.5rem; color: var(--primary); }
.logo img { border-radius: 8px; }
.logo .brand-text { font-family: 'Poppins', sans-serif; font-size: 1.6rem; letter-spacing: -0.5px; }
.logo .brand-text span { color: var(--accent); }

.nav-list { display: flex; list-style: none; gap: 6px; }
.nav-list a {
    color: var(--text);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    transition: all .2s;
}
.nav-list a:hover, .nav-list a.active { color: var(--text-white); background: rgba(255,107,0,.15); }

.header-actions { display: flex; gap: 10px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: all .25s;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(255,107,0,.4); }

.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }

.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-large { padding: 14px 32px; font-size: 1.05rem; }

.btn-accent { background: var(--accent); color: var(--secondary); }
.btn-accent:hover { background: #ffed4a; transform: translateY(-1px); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-toggle span { width: 28px; height: 3px; background: var(--text); border-radius: 2px; transition: .3s; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--secondary);
    z-index: 999;
    padding: 80px 20px 20px;
}
.mobile-menu.active { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav a {
    display: block;
    padding: 14px 16px;
    color: var(--text);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); }
.mobile-actions { display: flex; gap: 10px; margin-top: 20px; }
.mobile-actions .btn { flex: 1; }

/* ==========================================
   Breadcrumb
   ========================================== */
.breadcrumb { background: var(--bg-section); padding: 12px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-list { display: flex; list-style: none; gap: 8px; font-size: .85rem; }
.breadcrumb-list li::after { content: '›'; margin-left: 8px; color: var(--text-light); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a { color: var(--text-light); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .current { color: var(--text-white); }

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary) 50%, #1e0a2e 100%);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}
.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero-subtitle strong { color: var(--accent); }

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
.hero-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 12px 8px;
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.06);
    font-size: .85rem;
    color: var(--text);
}
.hero-features .icon { font-size: 1.5rem; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { text-align: center; }
.hero-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Page Hero (subpages) */
.page-hero {
    background: linear-gradient(135deg, var(--bg-dark), var(--secondary));
    padding: 50px 0 60px;
    text-align: center;
}
.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 14px;
}
.page-hero .subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 28px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 28px;
}
.stat-item { text-align: center; }
.stat-value { display: block; font-size: 1.6rem; font-weight: 700; color: var(--accent); font-family: 'Poppins', sans-serif; }
.stat-label { font-size: .85rem; color: var(--text-light); }
.cta-actions { display: flex; gap: 12px; justify-content: center; }

/* ==========================================
   Features Section
   ========================================== */
.features { padding: 60px 0; }
.features h2, .popular-games h2, .promotions h2, .testimonials h2, .faq h2,
.slots-categories h2, .guide-section h2, .article-list h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.1rem; color: var(--text-white); margin-bottom: 10px; font-weight: 600; }
.feature-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* ==========================================
   Games Grid
   ========================================== */
.popular-games { padding: 60px 0; background: var(--bg-section); }

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.game-card > img, .game-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-image { position: relative; }
.game-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, transparent 60%);
}
.game-overlay .popularity {
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
}
.live-indicator {
    background: rgba(220,20,20,.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .6; } }

.game-card h3 { padding: 14px 16px 6px; font-size: 1rem; color: var(--text-white); }
.game-card > p, .game-info p { padding: 0 16px; font-size: .85rem; color: var(--text-light); line-height: 1.5; }
.game-info { padding: 14px 16px; }
.game-info h3 { padding: 0; margin-bottom: 8px; }
.game-info p { padding: 0; margin-bottom: 10px; }
.game-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: .8rem;
}
.game-stats span {
    background: rgba(255,255,255,.06);
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--text-light);
}
.game-card .btn { margin: 12px 16px 16px; display: block; text-align: center; }
.game-info .btn { margin: 0; }

.games-cta { text-align: center; margin-top: 30px; }

/* ==========================================
   Categories Grid
   ========================================== */
.slots-categories { padding: 60px 0; }

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    transition: all .2s;
}
.category-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.category-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.category-card h3 { font-size: 1rem; color: var(--text-white); margin-bottom: 8px; }
.category-card p { font-size: .82rem; color: var(--text-light); margin-bottom: 10px; }
.game-count {
    display: inline-block;
    background: rgba(255,107,0,.12);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
}

/* ==========================================
   Promotions
   ========================================== */
.promotions { padding: 60px 0; background: var(--bg-section); }

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all .2s;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.promo-card.featured { border-color: var(--primary); }
.promo-badge {
    position: absolute;
    top: -10px; right: 16px;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
}
.promo-card h3 { font-size: 1.1rem; color: var(--text-white); margin-bottom: 10px; }
.promo-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}
.promo-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 18px; }

/* ==========================================
   Testimonials
   ========================================== */
.testimonials { padding: 60px 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: all .2s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.stars { margin-bottom: 12px; font-size: 1rem; }
.testimonial-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.author { font-size: .85rem; color: var(--primary); font-weight: 600; }
.tip-icon { font-size: 2rem; margin-bottom: 12px; }
.testimonial-card h3 { font-size: 1.05rem; color: var(--text-white); margin-bottom: 10px; }

/* ==========================================
   FAQ Section
   ========================================== */
.faq { padding: 60px 0; background: var(--bg-section); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: border-color .2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item h3 { font-size: 1rem; color: var(--text-white); margin-bottom: 10px; font-weight: 600; }
.faq-item p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ==========================================
   Guide / Article Styles
   ========================================== */
.guide-section { padding: 60px 0; }
.article-list { padding: 60px 0; background: var(--bg-section); }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .2s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card img { width: 100%; height: 180px; object-fit: cover; }
.article-card-body { padding: 18px 20px; }
.article-card-body .tag {
    display: inline-block;
    background: rgba(255,107,0,.12);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.article-card-body h3 { font-size: 1.05rem; color: var(--text-white); margin-bottom: 8px; line-height: 1.4; }
.article-card-body h3 a { color: var(--text-white); }
.article-card-body h3 a:hover { color: var(--primary); }
.article-card-body p { font-size: .85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    color: var(--text-light);
}

/* Article Content Page */
.article-content {
    padding: 50px 0;
}
.article-container {
    max-width: 800px;
    margin: 0 auto;
}
.article-header { margin-bottom: 30px; }
.article-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 14px;
}
.article-header .meta {
    display: flex;
    gap: 20px;
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}
.article-header .featured-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.article-body h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--text-white);
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}
.article-body h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin: 24px 0 12px;
}
.article-body p {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}
.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 18px;
}
.article-body li {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 6px;
}
.article-body strong { color: var(--text-white); }
.article-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 20px 0;
    background: rgba(255,107,0,.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}

.info-box {
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin: 24px 0;
}
.info-box h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.info-box p { margin-bottom: 0; }

.article-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    margin: 36px 0;
}
.article-cta h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,.85); margin-bottom: 18px; }
.article-cta .btn { background: #fff; color: var(--primary); font-weight: 700; }
.article-cta .btn:hover { background: var(--accent); color: var(--secondary); }

.related-articles { margin-top: 40px; }
.related-articles h3 { font-size: 1.3rem; color: var(--text-white); margin-bottom: 20px; }

/* Table of Contents */
.toc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 30px;
}
.toc h4 { color: var(--text-white); margin-bottom: 12px; font-size: .95rem; }
.toc ol { padding-left: 20px; }
.toc li { font-size: .88rem; margin-bottom: 6px; }
.toc a { color: var(--text-light); }
.toc a:hover { color: var(--primary); }

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo { margin-bottom: 14px; }
.footer-logo a { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.3rem; color: var(--primary); }
.footer-logo .brand-text { font-family: 'Poppins', sans-serif; }
.footer-logo .brand-text span { color: var(--accent); }
.footer-section > p { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    color: var(--text-light);
    transition: all .2s;
}
.social-links a:hover { background: var(--primary); color: #fff; }

.footer-section h4 { font-size: .95rem; color: var(--text-white); margin-bottom: 16px; font-weight: 600; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 8px; }
.footer-section ul a { color: var(--text-light); font-size: .88rem; }
.footer-section ul a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-disclaimer p { font-size: .8rem; color: var(--text-light); line-height: 1.6; margin-bottom: 4px; }
.footer-disclaimer strong { color: var(--accent); }

.footer-payments { text-align: right; }
.footer-payments span { display: block; font-size: .82rem; color: var(--text-light); margin-bottom: 8px; }
.payment-icons { display: flex; gap: 10px; }
.payment-icons img { opacity: .6; transition: opacity .2s; }
.payment-icons img:hover { opacity: 1; }

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-image { display: none; }
    .hero-features { grid-template-columns: repeat(2, 1fr); justify-items: center; }
    .hero-actions { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .promotions-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; }

    .hero-text h1 { font-size: 1.8rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .hero-features { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 20px; }

    .features-grid, .promotions-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-payments { text-align: center; }
    .payment-icons { justify-content: center; }
    .article-header h1 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.5rem; }
    .hero-features { grid-template-columns: 1fr 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr; }
}

/* Hero Background Images */
.page-hero { background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.65); z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }

/* Category card images */
.category-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px 8px 0 0; margin-bottom: 10px; }

/* Game card images in grid */
.game-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px 8px 0 0; }

/* Article card images */
.article-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 8px 8px 0 0; }

/* Game cover hero image */
.game-cover-img { width: 100%; max-width: 600px; height: auto; border-radius: 12px; margin: 20px auto; display: block; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }

/* Promo card images */
.promo-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px 8px 0 0; margin-bottom: 10px; }

/* Testimonial avatar */
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; margin-top: 12px; border: 2px solid rgba(255,215,0,0.4); }

/* Feature card images */
.feature-card img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; margin-bottom: 10px; }

/* Step images */
.step-image { width: 100%; max-width: 500px; border-radius: 12px; margin: 15px auto; display: block; }

/* Provider logos */
.provider-logo { height: 40px; width: auto; opacity: 0.8; transition: opacity 0.3s; }
.provider-logo:hover { opacity: 1; }

/* Footer badges */
.footer-badges { display: flex; gap: 12px; margin-top: 15px; align-items: center; flex-wrap: wrap; }
.footer-badges img { opacity: 0.7; }

/* Blog thumbnail */
.blog-thumb { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }

/* VIP tier icon */
.vip-tier-icon { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 10px; display: block; }
