/* MOBILE-FIRST RESET - ELIMINATE ALL HORIZONTAL SCROLL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

*:before,
*:after {
    box-sizing: border-box;
    max-width: 100%;
}

/* FORCE NO HORIZONTAL SCROLL - CRITICAL */
html {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-width: 320px;
}

/* PREVENT ALL ELEMENTS FROM CAUSING HORIZONTAL SCROLL */
div, section, article, aside, header, footer, main, nav, ul, ol, li, p, h1, h2, h3, h4, h5, h6, span, a, button, input, textarea, select, img, video, iframe, table, tr, td, th {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c0392b, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #34495e;
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.site-header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
    max-width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-content {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
    flex-wrap: wrap;
    width: 100%;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.5rem;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
}

.bg-light {
    background: var(--bg-light);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.text-white {
    color: white !important;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Login Box */
.login-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.promo-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.promo-widget h4 {
    color: white;
}

.promo-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sport-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sport-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.sport-card ul {
    list-style: none;
    padding: 1rem 0;
    margin: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.sport-card li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

/* Casino Categories */
.casino-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(135deg, #fff, var(--bg-light));
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

/* Live Betting Section */
.live-betting-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.live-matches {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.live-matches h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.live-content h4 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.live-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.live-bet-types {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.live-bet-types li {
    padding: 0.75rem;
    background: var(--bg-light);
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.live-bet-types li:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.live-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Bonus Cards */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.bonus-limit {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-container {
    margin-top: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px;
}

.contact-form-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    min-width: 120px;
}

.payment-method img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minWidth(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    text-align: center;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    background: var(--bg-light);
    transition: background 0.3s ease;
}

.faq-item summary:hover {
    background: #e9ecef;
}

.faq-item[open] summary {
    background: var(--primary-color);
    color: white;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    padding: 0.25rem 0;
}

.footer-column a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #666;
}

/* Media and Image Fixes */
img, video, iframe, embed, object, svg {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

/* Form and Input Fixes */
input, textarea, select, button {
    max-width: 100%;
    box-sizing: border-box;
}

/* Grid and Flex Fixes */
[class*="grid"], [class*="flex"], .row, .col {
    max-width: 100%;
    min-width: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE RESPONSIVE - TABLET FIRST */
@media (max-width: 992px) {
    .live-betting-container {
        grid-template-columns: 1fr;
    }
    
    .live-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE CRITICAL FIXES - ELIMINATE ALL HORIZONTAL SCROLL */
@media (max-width: 768px) {
    /* FORCE VIEWPORT CONSTRAINTS */
    html, body {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    .container {
        padding: 0 10px !important;
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        margin: 0 auto !important;
    }
    
    /* TYPOGRAPHY */
    h1 { 
        font-size: 1.75rem !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
    }
    h2 { 
        font-size: 1.5rem !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
    }
    h3 { 
        font-size: 1.25rem !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
    }
    
    /* HEADER FIXES */
    .site-header {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }
    
    .main-nav {
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100vw !important;
        max-width: 100vw !important;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .cta-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* HERO SECTION */
    .hero-section {
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 60px 0 !important;
        overflow: hidden !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        align-items: center !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .hero-features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* CONTENT SECTIONS */
    .content-section {
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 40px 0 !important;
        overflow: hidden !important;
    }
    
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .sports-grid,
    .casino-categories,
    .bonus-cards,
    .contact-methods {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* LIVE BETTING MOBILE */
    .live-betting-container {
        grid-template-columns: 1fr !important;
    }
    
    .live-stats {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1rem !important;
    }
    
    .stat-item {
        padding: 1rem !important;
        border-bottom: 1px solid var(--border-color);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .live-bet-types li {
        font-size: 0.9rem !important;
        padding: 0.5rem !important;
    }
    
    .live-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .feature-box {
        padding: 1rem !important;
    }
    
    .feature-box h4 {
        font-size: 0.9rem !important;
    }
    
    .feature-box p {
        font-size: 0.8rem !important;
    }
    
    /* CARDS AND WIDGETS */
    .sport-card,
    .category-card,
    .bonus-card,
    .contact-card,
    .sidebar-widget,
    .content-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        box-sizing: border-box !important;
    }
    
    .bonus-card.featured {
        transform: scale(1) !important;
    }
    
    .bonus-amount {
        font-size: 2rem !important;
    }
    
    /* PAYMENT METHODS */
    .payment-methods {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .payment-method {
        padding: 0.75rem !important;
        min-width: auto !important;
    }
    
    .payment-method img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .payment-info {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* BUTTONS */
    .btn {
        max-width: 100% !important;
        width: 100% !important;
        word-wrap: break-word !important;
        white-space: normal !important;
    }
    
    /* FOOTER */
    .footer-top {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
}

/* SMALL MOBILE - FINAL SAFETY MEASURES */
@media (max-width: 480px) {
    .container {
        padding: 0 5px !important;
        width: calc(100vw - 10px) !important;
        max-width: calc(100vw - 10px) !important;
    }
    
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
    }
    
    .btn {
        padding: 8px 12px !important;
        font-size: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .btn-large {
        padding: 12px 16px !important;
        font-size: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-features {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    .live-features {
        grid-template-columns: 1fr !important;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .faq-item summary {
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
        word-wrap: break-word !important;
    }
    
    .faq-item p {
        padding: 0.75rem !important;
        font-size: 0.85rem !important;
        word-wrap: break-word !important;
    }
    
    table {
        font-size: 0.8rem !important;
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }
    
    td, th {
        word-wrap: break-word !important;
        max-width: 0 !important;
        overflow: hidden !important;
    }
    
    /* FINAL FORCE NO SCROLL */
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
}