/* =========================================
   1. RESET & GLOBAL STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Noto Color Emoji', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.noto-color-emoji-regular {
  font-family: "Noto Color Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
}


a {
    text-decoration: none;
}

.hidden { display: none; }

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    background: linear-gradient(135deg, #146a34 0%, #10683b 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(20, 106, 52, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.logo span {
    color: #b8dfca;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

nav a:hover {
    color: #b8dfca;
}

.active-tab {
    color: #b8dfca !important;
    border-bottom: 3px solid #b8dfca;
    padding-bottom: 8px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #146a34;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    background: linear-gradient(rgba(20, 106, 52, 0.85), rgba(16, 104, 59, 0.85)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23146a34" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero p strong {
    color: #ffeb3b;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.cta-button:hover {
    background: #f57c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* =========================================
   4. CONTENT STRUCTURE
   ========================================= */
.section {
    background: white;
    padding: 60px 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section h2 {
    color: #146a34;
    font-size: 36px;
    margin-bottom: 30px;
    border-bottom: 3px solid #b8dfca;
    padding-bottom: 15px;
}

.section h3 {
    color: #4a8166;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Wingstop Image Section */
.wingstop-image-section {
    text-align: center;
    padding: 40px 20px;
    background: white;
}

.wingstop-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 15px;
    color: #666;
    font-style: italic;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5f0 100%);
    border-left: 5px solid #146a34;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
}

/* Info Box */
.info-box {
    background: #f0f8f4;
    border-left: 5px solid #146a34;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.info-box strong { color: #146a34; }

/* Highlighted & Viral Content */
.highlighted {
    background: linear-gradient(135deg, #80af97 0%, #80af90 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.viral-section {
    background: #fff8e1;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px dashed #ffb300;
}

.trending-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.topic-tag {
    background: #fff3e0;
    color: #e65100;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid #ffcc80;
    font-size: 14px;
    transition: all 0.3s;
}

.topic-tag:hover {
    background: #ff9800;
    color: white;
}

/* =========================================
   5. MENU & FEATURE GRIDS
   ========================================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.menu-item {
    background: #f9f9f9;
    border: 2px solid #146a34;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(20, 106, 52, 0.3);
    border-color: #b8dfca;
}

.menu-item.featured {
    border: 2px solid #ff9800;
    background: #fff8e1;
}

.menu-item h4 {
    color: #146a34;
    font-size: 18px;
    margin-bottom: 10px;
}

.menu-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.item-badge {
    background: #ff9800;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.price-cal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 12px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #146a34;
}

.calories {
    font-size: 12px;
    background: #b8dfca;
    color: #146a34;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: bold;
}

/* Features, Facts & Money Tips */
.features-grid, .facts-grid, .money-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature, .fact-card, .tip {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature h4, .fact-card h4 {
    margin-top: 0;
    color: #10683b;
    font-size: 18px;
}

.tip {
    background: #e8f5e9;
    border: none;
    border-left: 4px solid #4caf50;
}

/* =========================================
   6. MARKETING & ADS
   ========================================= */

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #146a34 0%, #2fa96b 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
    border-radius: 8px;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 20px;
    border-bottom: none;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-button {
    background: #b8dfca;
    color: #146a34;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: #80af97;
    color: white;
}

.newsletter-benefits {
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
    list-style-position: inside;
}

.privacy-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 15px;
}

.bonus-note {
    background: #fff3cd;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    display: inline-block;
    color: #333;
}

/* ===============================
   WINGSTOP RESPONSIVE AD SYSTEM
================================= */

.wingstop-ad-wrapper {
    width: 100%;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wingstop-ad-inner {
    position: relative;
    width: 100%;
    max-width: 728px;
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-sizing: border-box;
}

.wingstop-ad-loading {
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #777;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: .5; }
    50% { opacity: 1; }
    100% { opacity: .5; }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .wingstop-ad-inner {
        max-width: 300px;
        min-height: 250px;
    }
}

/* Hide on print */
@media print {
    .wingstop-ad-wrapper {
        display: none !important;
    }
}

.ads-section {
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5f0 100%);
    border: 2px solid #b8dfca;
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Affiliate Banner */
.affiliate-banner {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #e0f7f4 0%, #f0e6ff 100%);
    border-radius: 15px;
    border-left: 4px solid #00897b;
    box-sizing: border-box;
    margin: 10px 0;
}

.affiliate-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.affiliate-banner a {
    color: #d32f2f;
    font-weight: bold;
    text-decoration: none;
}

.affiliate-banner a:hover { text-decoration: underline; }

/* Monetization & Disclaimer */
.monetization-section {
    background: linear-gradient(135deg, #ff9e1b 0%, #ffc271 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.monetization-section .tip {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-left: 4px solid white;
}

.disclosure {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.ad-label {
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    margin-top: 10px;
    font-style: italic;
}

/* Share Section */
.share-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #b8dfca 0%, #80af97 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.share-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s linear infinite;
    z-index: 0;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-20px, -20px) rotate(360deg); }
}

.share-content { position: relative; z-index: 1; }

.share-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.share-benefit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.share-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.share-btn.facebook { background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%); }
.share-btn.twitter { background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%); }
.share-btn.pinterest { background: linear-gradient(135deg, #bd081c 0%, #9c0717 100%); }
.share-btn.whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.share-btn.reddit { background: linear-gradient(135deg, #FF4500 0%, #CC3700 100%); }
.share-btn.email { background: linear-gradient(135deg, #6c757d 0%, #495057 100%); }
.share-btn.copy-link { background: linear-gradient(135deg, #6f42c1 0%, #593196 100%); }

.share-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.share-count-number { font-weight: bold; color: #ffeb3b; }
.share-prompt { animation: pulse 2s infinite; display: inline-block; margin-left: 10px; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Success notification */
.share-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
    display: none;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* =========================================
   7. UTILITIES
   ========================================= */
.poll-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.poll-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.poll-btn {
    background: white;
    border: 2px solid #dee2e6;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.poll-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.poll-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    color: #146a34;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    display: none;
}

/* TOC & Related */
.toc {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #007bff;
}

.toc ul {
    columns: 2;
    margin-top: 10px;
    padding-left: 20px;
}

.toc li { margin-bottom: 8px; break-inside: avoid; }

.related-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.related-links a {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    border: 1px solid #dee2e6;
    transition: all 0.3s;
    display: block;
}

.related-links a:hover {
    background: #10683b;
    color: white;
    border-color: #10683b;
}

/* =========================================
   8. FOOTER
   ========================================= */
footer {
    background: #1a1a1a;
    color: white;
    padding: 10px 20px;
    margin-top: 40px;
}

.footer-visitor-stats {
    padding: 25px 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #333;
}

.visitor-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.visitor-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.visitor-stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.visitor-stat-label { font-size: 0.9rem; opacity: 0.9; }

.visitor-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.visitor-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.footer-section h4 {
    color: #b8dfca;
    margin-bottom: 15px;
}

.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 8px; }

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-section a:hover { color: #b8dfca; }

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
    color: white;
}

.social-links a:hover {
    background: #146a34;
    color: white;
    transform: translateY(-3px);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #146a34;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #10683b;
    transform: translateY(-3px);
}

/* Loading */
.lazy-load { opacity: 0; transition: opacity 0.3s; }
.lazy-load.loaded { opacity: 1; }

/* =========================================
   9. MEDIA QUERIES & RESPONSIVENESS
   ========================================= */

/* Desktop Ads */
@media (min-width: 768px) {
    .desktop-ad { display: block; }
    .mobile-ad { display: none; }
}

/* --- TABLET & MOBILE (Max 991px) --- */
@media (max-width: 991px) {
    .hero h1 { font-size: 2.2rem; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- MOBILE (Max 767px) --- */
@media (max-width: 767px) {
    /* Layout */
    .container { padding: 0 15px; }
    .section, .hero, .share-section { padding: 40px 15px; }
    
    /* Ads */
    .desktop-ad { display: none; }
    .mobile-ad { display: block; }
    .ads-section { padding: 0 5px; margin: 15px 0; }
    
    /* Navigation */
    nav ul { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #146a34;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        z-index: 200;
    }
    
    nav ul.show { display: flex; }
    
    nav li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }
    
    .mobile-menu-btn { display: block; }

    /* Hero */
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-button { width: 100%; max-width: 300px; text-align: center; }
    .hero-badges { gap: 10px; }
    .badge { padding: 8px 15px; font-size: 0.8rem; }

    /* Grids: Force Single Column */
    .menu-grid, 
    .features-grid, 
    .facts-grid, 
    .money-tips,
    .footer-content,
    .visitor-stats-grid,
    .related-links { 
        grid-template-columns: 1fr; 
    }
    
    .menu-item { max-width: 100%; }
    
    /* Newsletter */
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-input, .newsletter-button { width: 100%; height: 50px; margin-bottom: 10px; }

    /* Share Section */
    .share-buttons { flex-direction: column; width: 100%; align-items: center; }
    .share-btn { width: 100%; max-width: 300px; }
    .share-benefits { flex-direction: column; align-items: center; gap: 10px; }
    .share-benefit { width: 100%; max-width: 300px; justify-content: center; }

    /* Utilities */
    .toc ul { columns: 1; }
    .poll-options { flex-direction: column; align-items: center; }
    .poll-btn { width: 100%; max-width: 300px; }

    /* Affiliate & Footer */
    .affiliate-banner { padding: 15px; font-size: 13px; }
    .visitor-stat-number { font-size: 1.5rem; }
    .back-to-top { bottom: 20px; right: 20px; }
}

/* --- SMALL MOBILE (Max 380px) --- */
@media (max-width: 380px) {
    .logo { font-size: 1.4rem; }
    .hero h1 { font-size: 1.7rem; }
    .price-cal { flex-direction: column; align-items: flex-start; gap: 5px; }
    .badge { padding: 6px 12px; font-size: 0.75rem; }
}

/* Dark Mode Support (Optional but present in original) */
@media (prefers-color-scheme: dark) {
    .share-section {
        background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    }
}