
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f6fa;
            color: #333;
            line-height: 1;
            overflow-x: hidden;
        }

        .header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.5em;
            font-weight: bold;
            color: #8e44ad;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.9em;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #8e44ad;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .hero-section {
            text-align: center;
            margin-bottom: 30px;
            padding: 0 10px;
        }

        .hero-title {
            font-size: 2em;
            color: #8e44ad;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1em;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.4;
        }

        .cache-status {
            margin-top: 15px;
            padding: 10px;
            border-radius: 8px;
            color: #666;
            font-size: 0.8em;
            text-align: center;
            transition: all 0.3s ease;
        }

        .cache-fresh {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .cache-loading {
            background: #fff3cd;
            color: #856404;
            border: 1px solid #ffeaa7;
        }

        .cache-cached {
            background: #cce5ff;
            color: #004085;
            border: 1px solid #b3d7ff;
        }

        .search-section {
            margin: 20px 0;
            text-align: center;
            padding: 0 10px;
        }

        .search-bar {
            display: flex;
            max-width: 500px;
            width: 100%;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            margin: 0 auto;
        }

        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            outline: none;
            font-size: 0.9em;
            min-width: 0;
        }

        .search-button {
            background: #8e44ad;
            color: white;
            border: none;
            padding: 12px 18px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            font-size: 0.85em;
            white-space: nowrap;
        }

        .search-button:hover {
            background: #7d3c98;
        }

        .coupons-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            margin: 0 10px;
        }

        .table-header {
            background: #f8f9fa;
            padding: 15px;
            border-bottom: 1px solid #dee2e6;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .table-title {
            font-size: 1em;
            font-weight: 600;
            color: #333;
        }

        .sort-options {
            display: flex;
            gap: 8px;
            align-items: center;
            font-size: 0.8em;
            color: #666;
            flex-wrap: wrap;
        }

        .sort-select {
            padding: 4px 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            font-size: 0.8em;
        }

        /* Mobile-first table design */
        .table-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 320px;
        }

        th {
            background: #f8f9fa;
            padding: 12px 8px;
            text-align: center;
            font-weight: 600;
            color: #555;
            border-bottom: 1px solid #dee2e6;
            font-size: 0.85em;
        }

        td {
            padding: 12px 8px;
            border-bottom: 1px solid #f1f2f6;
            vertical-align: middle;
        }

        tr:hover {
            background: #f8f9fa;
        }

        .brand-cell {
            display: flex;
            align-items: center;
             justify-content: center; /* Add this line */
            gap: 10px;
            min-width: 120px;
               text-align: center; /* Add this line */
        }

        .brand-info h3 {
            font-size: 0.95em;
            color: #333;
            margin-bottom: 2px;
            line-height: 1.2;
            word-break: break-word;
        }

        .brand-info p {
            font-size: 0.75em;
            color: #666;
            line-height: 1.2;
        }

        .discount-cell {
            text-align: center;
            min-width: 70px;
        }

        .discount-value {
            font-size: 1.1em;
            font-weight: bold;
            color: #27ae60;
            margin-bottom: 2px;
        }

        .discount-type {
            font-size: 0.7em;
            color: #666;
            text-transform: uppercase;
        }

        .date-cell {
            text-align: center;
            min-width: 80px;
        }

        .date-badge {
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.75em;
            font-weight: 500;
            white-space: nowrap;
        }

        .date-fresh { background: #d4edda; color: #155724; }
        .date-recent { background: #d1ecf1; color: #0c5460; }
        .date-old { background: #fff3cd; color: #856404; }
        .date-expired { background: #f8d7da; color: #721c24; }

        .action-cell {
            text-align: center;
            min-width: 90px;
        }

        .get-code-btn {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.8em;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .get-code-btn:hover {
            background: #c0392b;
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
        }

        .pagination {
            padding: 20px 15px;
            text-align: center;
        }

        .pagination-controls {
            display: inline-flex;
            gap: 5px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .page-btn {
            padding: 6px 10px;
            border: 1px solid #ddd;
            background: white;
            color: #666;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 0.8em;
            min-width: 36px;
        }

        .page-btn:hover, .page-btn.active {
            background: #8e44ad;
            color: white;
            border-color: #8e44ad;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
            padding: 10px;
            box-sizing: border-box;
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 0;
            border-radius: 15px;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            animation: modalSlideIn 0.3s ease-out;
            overflow: hidden;
            max-height: 90vh;
            overflow-y: auto;
        }

        @keyframes modalSlideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-header {
            background: #8e44ad;
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .close {
            position: absolute;
            right: 15px;
            top: 15px;
            font-size: 20px;
            cursor: pointer;
            color: rgba(255,255,255,0.8);
            transition: color 0.3s;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close:hover {
            color: white;
        }

        .modal-brand-name {
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 8px;
            line-height: 1.2;
            word-break: break-word;
        }

        .modal-discount {
            font-size: 2em;
            font-weight: bold;
            opacity: 0.9;
        }

        .modal-body {
            padding: 20px;
        }

        .code-section {
            background: #f8f9fa;
            border: 2px dashed #8e44ad;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            margin-bottom: 15px;
        }

        .coupon-code {
            font-size: 1.4em;
            font-weight: bold;
            color: #8e44ad;
            letter-spacing: 1px;
            margin-bottom: 12px;
            word-break: break-all;
            line-height: 1.2;
        }

        .copy-button {
            background: #27ae60;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            font-size: 0.9em;
        }

        .copy-button:hover {
            background: #229954;
        }

        .modal-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.85em;
            color: #666;
            flex-wrap: wrap;
            gap: 10px;
        }

        .visit-store-btn {
            display: block;
            width: 100%;
            background: #3498db;
            color: white;
            text-decoration: none;
            padding: 12px;
            border-radius: 6px;
            text-align: center;
            font-weight: 600;
            transition: background 0.3s;
            font-size: 0.9em;
        }

        .visit-store-btn:hover {
            background: #2980b9;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            align-items: start;
        }

        .main-content {
            min-width: 0;
        }

        .footer-info {
            background: white;
            margin: 30px 10px 0;
            padding: 25px 15px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .footer-section h3 {
            color: #8e44ad;
            margin-bottom: 12px;
            font-size: 1em;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 6px;
            color: #666;
            font-size: 0.85em;
            line-height: 1.3;
        }

        .footer {
            background: white;
            border-top: 1px solid #e1e8ed;
            margin-top: 40px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .footer-main {
            padding: 30px 0 25px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            border-bottom: 1px solid #f1f2f6;
        }

        .footer-brand h3 {
            font-size: 1.2em;
            color: #8e44ad;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .footer-description {
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
            font-size: 0.85em;
        }

        .footer-section h4 {
            font-size: 0.95em;
            color: #333;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section li {
            margin-bottom: 6px;
        }

        .footer-section a {
            color: #666;
            text-decoration: none;
            font-size: 0.85em;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #8e44ad;
        }

        .footer-bottom {
            padding: 15px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

        .footer-bottom-left {
            color: #666;
            font-size: 0.8em;
        }

        .footer-bottom-right {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-bottom a {
            color: #666;
            text-decoration: none;
            font-size: 0.8em;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #8e44ad;
        }

        /* Ultra-small screens (320px to 359px) - Focus on table content optimization */
        @media (max-width: 359px) and (min-width: 320px) {
            .content-wrapper .coupons-section {
                margin: 0 2px;
                border-radius: 8px;
            }
            
            .content-wrapper .table-header {
                padding: 8px 6px;
                flex-direction: column;
                align-items: stretch;
                gap: 6px;
            }
            
            .content-wrapper .table-title {
                font-size: 0.85em;
                text-align: center;
            }
            
            .content-wrapper .sort-options {
                font-size: 0.7em;
                gap: 4px;
                justify-content: center;
            }
            
            .content-wrapper .sort-select {
                padding: 2px 4px;
                font-size: 0.7em;
            }
            
            .content-wrapper .table-container {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                /* Enable smooth scrolling on iOS */
                scroll-behavior: smooth;
            }
            
            .content-wrapper table {
                min-width: 300px;
                /* Compact table width for ultra-small screens */
            }
            
            .content-wrapper th {
                padding: 6px 3px;
                font-size: 0.7em;
                text-align: center;
                white-space: nowrap;
            }
            
            .content-wrapper td {
                padding: 8px 3px;
                font-size: 0.75em;
            }
            
            .content-wrapper .brand-cell {
                min-width: 85px;
                gap: 4px;
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            
            .content-wrapper .brand-info h3 {
                font-size: 0.7em;
                line-height: 1.1;
                margin-bottom: 0;
                max-width: 80px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            
            .content-wrapper .brand-info p {
                display: none;
                /* Hide description to save space */
            }
            
            .content-wrapper .discount-cell {
                min-width: 45px;
                padding: 8px 2px;
            }
            
            .content-wrapper .discount-value {
                font-size: 0.8em;
                margin-bottom: 1px;
                line-height: 1;
            }
            
            .content-wrapper .discount-type {
                font-size: 0.55em;
                line-height: 1;
            }
            
            .content-wrapper .date-cell {
                min-width: 55px;
                padding: 8px 2px;
            }
            
            .content-wrapper .date-badge {
                font-size: 0.6em;
                padding: 2px 3px;
                border-radius: 8px;
                display: block;
                text-align: center;
                max-width: 50px;
                margin: 0 auto;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            
            .content-wrapper .action-cell {
                min-width: 65px;
                padding: 8px 2px;
            }
            
            .content-wrapper .get-code-btn {
                padding: 4px 6px;
                font-size: 0.65em;
                border-radius: 12px;
                min-height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1;
            }
            
            .content-wrapper .pagination {
                padding: 10px 5px;
            }
            
            .content-wrapper .pagination-controls {
                gap: 2px;
                font-size: 0.65em;
            }
            
            .content-wrapper .page-btn {
                padding: 3px 5px;
                font-size: 0.7em;
                min-width: 24px;
                min-height: 24px;
                border-radius: 3px;
            }
            
            .content-wrapper #paginationInfo {
                font-size: 0.7em;
                margin-top: 8px;
                line-height: 1.2;
            }
            
            /* Enhanced hover effects for touch devices on ultra-small screens */
            .content-wrapper tr:active {
                background: #f0f0f0;
            }
            
            .content-wrapper .get-code-btn:active {
                transform: scale(0.95);
                background: #d63031;
            }
            
            /* Improve text readability */
            .content-wrapper .date-fresh {
                background: #d4edda;
                color: #0d5016;
                font-weight: 600;
            }
            
            .content-wrapper .date-recent {
                background: #cce7f0;
                color: #0a4b5c;
                font-weight: 600;
            }
            
            .content-wrapper .date-old {
                background: #fff3cd;
                color: #856404;
                font-weight: 600;
            }
            
            .content-wrapper .date-expired {
                background: #f8d7da;
                color: #721c24;
                font-weight: 600;
            }
        }

        /* Mobile-specific optimizations for very small screens */
        @media (max-width: 480px) {
            .header {
                padding: 10px 0;
            }
            
            .header-content {
                padding: 0 10px;
            }
            
            .logo {
                font-size: 1.3em;
            }
            
            .nav-links {
                gap: 15px;
            }
            
            .nav-links a {
                font-size: 0.85em;
            }
            
            .container {
                padding: 0 10px;
            }
            
            .hero-title {
                font-size: 1.6em;
            }
            
            .hero-subtitle {
                font-size: 0.9em;
            }
            
            .cache-status {
                font-size: 0.75em;
                padding: 8px;
            }
            
            .search-input {
                padding: 10px 12px;
                font-size: 0.85em;
            }
            
            .search-button {
                padding: 10px 15px;
                font-size: 0.8em;
            }
            
            .coupons-section {
                margin: 0 5px;
            }
            
            .table-header {
                padding: 12px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .table-title {
                font-size: 0.95em;
            }
            
            .sort-options {
                font-size: 0.75em;
                gap: 6px;
            }
            
            th, td {
                padding: 8px 6px;
            }
            
            th {
                font-size: 0.8em;
            }
            
            .brand-info h3 {
                font-size: 0.85em;
            }
            
            .brand-info p {
                font-size: 0.7em;
            }
            
            .discount-value {
                font-size: 1em;
            }
            
            .discount-type {
                font-size: 0.65em;
            }
            
            .date-badge {
                font-size: 0.7em;
                padding: 3px 6px;
            }
            
            .get-code-btn {
                padding: 6px 12px;
                font-size: 0.75em;
            }
            
            .pagination {
                padding: 15px 10px;
            }
            
            .page-btn {
                padding: 5px 8px;
                font-size: 0.75em;
                min-width: 32px;
            }
            
            .modal {
                padding: 5px;
            }
            
            .modal-content {
                margin: 2% auto;
                max-height: 95vh;
            }
            
            .modal-header {
                padding: 15px;
            }
            
            .modal-brand-name {
                font-size: 1.2em;
            }
            
            .modal-discount {
                font-size: 1.6em;
            }
            
            .modal-body {
                padding: 15px;
            }
            
            .code-section {
                padding: 15px;
            }
            
            .coupon-code {
                font-size: 1.2em;
            }
            
            .copy-button {
                padding: 8px 16px;
                font-size: 0.85em;
            }
            
            .visit-store-btn {
                padding: 10px;
                font-size: 0.85em;
            }
            
            .footer-info {
                margin: 20px 5px 0;
                padding: 20px 12px;
            }
            
            .footer-content {
                gap: 15px;
            }
            
            .footer-section h3 {
                font-size: 0.95em;
            }
            
            .footer-section li {
                font-size: 0.8em;
            }
            
            .footer-main {
                padding: 25px 0 20px;
                gap: 20px;
            }
            
            .footer-brand h3 {
                font-size: 1.1em;
            }
            
            .footer-description {
                font-size: 0.8em;
            }
            
            .footer-section h4 {
                font-size: 0.9em;
            }
            
            .footer-section a {
                font-size: 0.8em;
            }
            
            .footer-bottom {
                padding: 12px 0;
            }
            
            .footer-bottom-left {
                font-size: 0.75em;
            }
            
            .footer-bottom a {
                font-size: 0.75em;
            }
        }

        /* Extra small screens (320px) */
        @media (max-width: 479px) {
            .hero-title {
                font-size: 1.4em;
                line-height: 1.3;
            }
            
            .hero-subtitle {
                font-size: 0.85em;
            }
            
            .search-bar {
                border-radius: 20px;
            }
            
            .search-input {
                font-size: 0.8em;
            }
            
            .search-button {
                font-size: 0.75em;
                padding: 10px 12px;
            }
            
            th, td {
                padding: 6px 4px;
            }
            
            .brand-cell {
                gap: 6px;
                min-width: 100px;
            }
            
            .brand-info h3 {
                font-size: 0.8em;
            }
            
            .discount-cell {
                min-width: 60px;
            }
            
            .discount-value {
                font-size: 0.9em;
            }
            
            .date-cell {
                min-width: 70px;
            }
            
            .date-badge {
                font-size: 0.65em;
                padding: 2px 4px;
            }
            
            .action-cell {
                min-width: 80px;
            }
            
            .get-code-btn {
                padding: 5px 10px;
                font-size: 0.7em;
            }
            
            .page-btn {
                padding: 4px 6px;
                font-size: 0.7em;
                min-width: 28px;
            }
            
            .modal-brand-name {
                font-size: 1.1em;
            }
            
            .modal-discount {
                font-size: 1.4em;
            }
            
            .coupon-code {
                font-size: 1.1em;
                letter-spacing: 0.5px;
            }
        }

        /* Tablet styles */
        @media (min-width: 481px) and (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-main {
                grid-template-columns: 2fr 1fr;
            }
            
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        /* Desktop styles */
        @media (min-width: 769px) {
            .header {
                padding: 20px 0;
                margin-bottom: 30px;
            }
            
            .header-content {
                padding: 0 20px;
            }
            
            .logo {
                font-size: 1.8em;
            }
            
            .nav-links {
                gap: 30px;
            }
            
            .nav-links a {
                font-size: 1em;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .hero-section {
                margin-bottom: 40px;
            }
            
            .hero-title {
                font-size: 2.5em;
            }
            
            .hero-subtitle {
                font-size: 1.1em;
            }
            
            .cache-status {
                font-size: 0.85em;
                padding: 12px;
            }
            
            .search-section {
                margin: 30px 0;
            }
            
            .search-input {
                padding: 15px 20px;
                font-size: 1em;
            }
            
            .search-button {
                padding: 15px 25px;
                font-size: 1em;
            }
            
            .coupons-section {
                margin: 0;
            }
            
            .table-header {
                padding: 20px;
                flex-direction: row;
            }
            
            .table-title {
                font-size: 1.1em;
            }
            
            .sort-options {
                font-size: 0.9em;
                gap: 10px;
            }
            
            th, td {
                padding: 20px;
            }
            
            th {
                font-size: 1em;
            }
            
            .brand-info h3 {
                font-size: 1.1em;
            }
            
            .brand-info p {
                font-size: 0.85em;
            }
            
            .discount-value {
                font-size: 1.4em;
            }
            
            .discount-type {
                font-size: 0.8em;
            }
            
            .date-badge {
                font-size: 0.85em;
                padding: 6px 12px;
            }
            
            .get-code-btn {
                padding: 12px 25px;
                font-size: 0.9em;
            }
            
            .pagination {
                padding: 30px;
            }
            
            .page-btn {
                padding: 8px 12px;
                font-size: 1em;
            }
            
            .modal {
                padding: 10px;
            }
            
            .modal-content {
                max-width: 500px;
                margin: 5% auto;
            }
            
            .modal-header {
                padding: 25px;
            }
            
            .modal-brand-name {
                font-size: 1.8em;
            }
            
            .modal-discount {
                font-size: 2.5em;
            }
            
            .modal-body {
                padding: 30px;
            }
            
            .code-section {
                padding: 25px;
            }
            
            .coupon-code {
                font-size: 1.8em;
                letter-spacing: 2px;
            }
            
            .copy-button {
                padding: 12px 25px;
                font-size: 1em;
            }
            
            .visit-store-btn {
                padding: 15px;
                font-size: 1em;
            }
            
            .footer-info {
                margin: 50px 0 0;
                padding: 40px;
            }
            
            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
            }
            
            .footer-section h3 {
                font-size: 1.1em;
            }
            
            .footer-section li {
                font-size: 0.9em;
            }
            
            .footer-main {
                padding: 40px 0 30px;
                grid-template-columns: 2fr 1fr;
                gap: 40px;
            }
            
            .footer-brand h3 {
                font-size: 1.3em;
            }
            
            .footer-description {
                font-size: 0.9em;
            }
            
            .footer-section h4 {
                font-size: 1em;
            }
            
            .footer-section a {
                font-size: 0.9em;
            }
            
            .footer-bottom {
                padding: 20px 0;
                flex-direction: row;
                justify-content: space-between;
            }
            
            .footer-bottom-left {
                font-size: 0.85em;
            }
            
            .footer-bottom a {
                font-size: 0.85em;
            }
        }



        /* NEW: Disclaimer styles */
.percentage-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    font-size: 0.85em;
    color: #856404;
    text-align: left;
    line-height: 1.4;
}

.percentage-disclaimer strong {
    color: #b7690a;
}

/* Mobile disclaimer styles */
.percentage-disclaimer {
    font-size: 0.75em;
    padding: 10px;
    margin: 10px 0;
}

.percentage-disclaimer {
    font-size: 0.8em;
    padding: 10px;
    margin: 12px 0;
}

.percentage-disclaimer {
    font-size: 0.75em;
    padding: 8px;
    margin: 8px 0;
}
   