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

html {
    scroll-behavior: smooth;
    /* Prevent zoom on double tap */
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Disable touch callout on iOS */
    -webkit-touch-callout: none;
    /* Prevent text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Re-enable text selection for content areas */
.review-section p,
.faq-answer,
.channel-details,
.feature-highlight p,
.promo-card p,
.bonus-details,
.legal-card,
.analysis-card p,
.tip-card p,
.user-profile p,
.alternatives ul,
.recommendation-card p {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    -webkit-touch-callout: text;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #121212;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    background-attachment: fixed;
    min-height: 100vh;
    /* Prevent zoom and improve touch behavior */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Prevent tap highlight on mobile */
    -webkit-tap-highlight-color: transparent;
    /* Disable touch delay on clickable elements */
    touch-action: manipulation;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 300px;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff8c66;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('images/betbarter-hero-cricket-betting.jpg?v=2');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    border-radius: 24px;
    margin-top: 0;
    color: white;
    padding: 4rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    min-height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.5rem;
    color: #ffd700;
}

.star.filled {
    color: #ffd700;
}

.rating-text {
    font-weight: 500;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(255, 107, 53, 0.6));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: white;
}

.cta-button.secondary {
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hero-image {
    display: none;
}

/* Quick Facts Section */
.quick-facts {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    margin: 2rem 0;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.quick-facts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fact-item {
    background: rgba(40, 40, 40, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    color: white;
}

.fact-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(50, 50, 50, 0.8);
}

.fact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4dabf7;
}

/* Review Sections */
.detailed-review {
    padding: 2rem 0;
    background: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.review-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.review-section:last-child {
    border-bottom: none;
}

.review-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.review-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.review-section h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

/* Professional UI Adjustments for Text Paragraphs */
.review-section p {
    font-size: 1.1rem; /* Slightly increased font size for better readability */
    line-height: 1.8; /* Increased line height for more comfortable reading */
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem; /* Increased horizontal padding for more whitespace */
    text-align: justify; /* Justified text for a cleaner look */
    -webkit-font-smoothing: antialiased; /* Smoother font rendering on macOS/iOS */
    -moz-osx-font-smoothing: grayscale; /* Smoother font rendering on Firefox */
}

.review-section h2 {
    font-size: 2.8rem; /* Larger heading for better hierarchy */
    margin-bottom: 2.5rem; /* Increased margin for more separation */
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6); /* Enhanced text shadow for depth */
    text-align: center; /* Centered headings for a more formal look */
}

.review-section h3 {
    font-size: 2rem; /* Larger subheading */
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-align: center;
}

.review-section h4 {
    font-size: 1.6rem; /* Larger secondary subheading */
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    text-align: center;
}

/* Rating Breakdown */
.rating-breakdown {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.overall-rating {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    color: #4dabf7;
}

.rating-details {
    flex: 1;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-item span:first-child {
    min-width: 120px;
    font-weight: 500;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #444;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff8c66, #4dabf7);
    transition: width 0.3s ease;
}

.rating-item span:last-child {
    min-width: 50px;
    font-weight: 600;
    color: #4dabf7;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
}

.pros {
    border-left: 4px solid #28a745;
}

.cons {
    border-left: 4px solid #dc3545;
}

.pros h3, .cons h3 {
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Cricket Features */
.cricket-features {
    display: grid;
    gap: 3rem;
}

.feature-highlight {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
}

.feature-highlight h3 {
    background: linear-gradient(135deg, rgba(77, 171, 247, 0.8), rgba(77, 171, 247, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
}

.feature-highlight img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-highlight p, .feature-highlight ul {
    padding: 0 2rem;
}

.feature-highlight ul {
    padding-bottom: 2rem;
}

/* Betting Tips */
.betting-tips {
    margin-top: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4dabf7;
}

.tip-card h4 {
    color: #4dabf7;
    margin-bottom: 0.5rem;
}

/* App Download Section */
.app-overview {
    margin-bottom: 3rem;
}

.app-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.platform {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
}

.platform h3 {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
}

.platform img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    padding: 1rem;
}

.app-features, .download-steps, .webapp-steps {
    padding: 0 2rem 2rem;
}

.app-features h4, .download-steps h4, .webapp-steps h4 {
    color: #4dabf7;
    margin-bottom: 1rem;
}

.download-steps ol, .webapp-steps ol {
    padding-left: 1.5rem;
}

.download-steps li, .webapp-steps li {
    margin-bottom: 0.5rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.comparison-table th {
    background: #4dabf7;
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: #1e1e1e;
}

/* Bonus Cards */
.bonus-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    color: white;
}

.bonus-card.featured {
    border: 2px solid #ff8c66;
}

.bonus-header {
    background: linear-gradient(135deg, #ff8c66, #4dabf7);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 700;
}

.bonus-details {
    padding: 2rem;
}

.bonus-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.bonus-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.bonus-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4dabf7;
    font-weight: bold;
}

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

.promo-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.promo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(40, 40, 40, 0.8);
}

.promo-card h4 {
    background: linear-gradient(135deg, rgba(77, 171, 247, 0.8), rgba(77, 171, 247, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-card p, .promo-card ul {
    padding: 0 1.5rem;
}

.promo-card ul {
    padding-bottom: 1.5rem;
    list-style: none;
}

.promo-card li {
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.promo-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff8c66;
}

/* VIP Program */
.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tier {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.tier.bronze {
    background: linear-gradient(135deg, #92400e, #451a03);
    color: white;
}

.tier.silver {
    background: linear-gradient(135deg, #6b7280, #374151);
    color: white;
}

.tier.gold {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: black;
}

.tier.platinum {
    background: linear-gradient(135deg, #e5e4e2, #b8860b);
    color: black;
}

.tier h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tier ul {
    list-style: none;
    text-align: left;
}

.tier li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.tier li::before {
    content: "★";
    position: absolute;
    left: 0;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    gap: 2rem;
}

.payment-category h4 {
    background: #4dabf7;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px 8px 0 0;
    margin: 0;
}

.payment-list {
    background: #1e1e1e;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.payment-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333;
}

.payment-item:last-child {
    border-bottom: none;
}

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

.payment-details h5 {
    margin-bottom: 0.25rem;
    color: #e0e0e0;
}

.payment-details p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.payment-limits {
    background: #333;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #4dabf7;
    font-weight: 500;
}

.payment-timing {
    text-align: right;
}

.deposit-time, .withdrawal-time {
    display: block;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

.deposit-time {
    background: #28a745;
    color: white;
}

.withdrawal-time {
    background: #ffc107;
    color: black;
}

/* Analysis Cards */
.analysis-cards {
    display: grid;
    gap: 2rem;
}

.analysis-card {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-left: 4px solid #4dabf7;
}

.analysis-card h4 {
    color: #4dabf7;
    margin-bottom: 1rem;
}

.recommendation {
    background: #333;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
    color: #4dabf7;
}

/* Withdrawal Process */
.withdrawal-steps {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.step-number {
    background: #4dabf7;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h4 {
    margin-bottom: 0.5rem;
}

.timeline {
    background: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4dabf7;
    font-weight: 500;
    white-space: nowrap;
}

.withdrawal-tips {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
}

.withdrawal-tips h4 {
    color: #4dabf7;
    margin-bottom: 1rem;
}

.withdrawal-tips ul {
    list-style: none;
}

.withdrawal-tips li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.withdrawal-tips li::before {
    content: "💡";
    position: absolute;
    left: 0;
}

/* Legal and Security */
.legal-card {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.legal-card.important {
    border-left: 4px solid #dc3545;
}

.state-restrictions {
    margin: 1.5rem 0;
}

.state-restrictions h5 {
    color: #4dabf7;
    margin-bottom: 0.5rem;
}

.disclaimer {
    background: #333;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-top: 1rem;
}

.license-details {
    display: grid;
    gap: 2rem;
}

.license-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.license-info h4 {
    color: #4dabf7;
    margin-bottom: 0.5rem;
}

.license-analysis {
    background: #333;
    padding: 2rem;
    border-radius: 12px;
}

.pros-cons-license {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.security-item {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.security-item h4 {
    color: #4dabf7;
    margin-bottom: 1rem;
}

.security-item ul {
    list-style: none;
}

.security-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.security-item li::before {
    content: "🛡️";
    position: absolute;
    left: 0;
}

/* Responsible Gaming */
.rg-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-category {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.tool-category h4 {
    color: #4dabf7;
    margin-bottom: 1rem;
}

.warning-signs {
    background: #dc3545;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    margin-top: 2rem;
}

.warning-signs h4 {
    color: white;
    margin-bottom: 1rem;
}

/* Support Channels */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-channel {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.channel-header {
    background: #4dabf7;
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.availability {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.channel-details {
    padding: 2rem;
}

.channel-details ul {
    list-style: none;
    margin-top: 1rem;
}

.channel-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.channel-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.channel-rating {
    background: #333;
    padding: 1.5rem 2rem;
    border-top: 1px solid #444;
}

.channel-rating .rating {
    background: #4dabf7;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 1rem;
}

/* Quality Metrics */
.quality-metrics {
    display: grid;
    gap: 1.5rem;
}

.metric {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.metric h4 {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.metric-bar {
    background: #444;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff8c66, #4dabf7);
    transition: width 0.3s ease;
}

.metric span {
    font-weight: 600;
    color: #4dabf7;
}

/* Common Issues */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.issue-card {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-left: 4px solid #4dabf7;
}

.issue-card h4 {
    color: #4dabf7;
    margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-container {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
}

.faq-question {
    background: #4dabf7;
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #3690e3;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 2rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer ul, .faq-answer ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.faq-table th, .faq-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #333;
}

.faq-table th {
    background: #333;
    font-weight: 600;
}

.market-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 1rem 0;
}

.market-category {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
}

.market-category h4 {
    color: #4dabf7;
    margin-bottom: 1rem;
}

.market-category ul {
    list-style: none;
}

.market-category li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.market-category li::before {
    content: "🎯";
    position: absolute;
    left: 0;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.support-option {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.support-option h4 {
    color: #4dabf7;
    margin-bottom: 0.5rem;
}

.state-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1rem 0;
}

.restricted-states, .allowed-states {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
}

.restricted-states {
    border-left: 4px solid #dc3545;
}

.allowed-states {
    border-left: 4px solid #28a745;
}

.restricted-states h4, .allowed-states h4 {
    margin-bottom: 1rem;
}

/* Final Verdict */
.verdict-content {
    background: #1e1e1e;
    padding: 3rem;
    border-radius: 12px;
}

.verdict-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.verdict-score {
    text-align: center;
}

.verdict-score .score {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #4dabf7;
    margin-bottom: 0.5rem;
}

.score-label {
    background: #4dabf7;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.ideal-users {
    margin-bottom: 3rem;
}

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

.user-profile {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.user-profile h4 {
    color: #4dabf7;
    margin-bottom: 1rem;
}

.alternatives {
    background: #333;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    margin-bottom: 3rem;
}

.alternatives h3 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.recommendation-card {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin: 2rem 0;
}

.recommendation-card p {
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff8c66;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff8c66;
}

.gambling-logos {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gambling-logos img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Additional glass morphism for remaining elements */
.footer-section {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.site-footer {
    background: rgba(18, 18, 18, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 3rem 0 1rem;
}

/* Enhanced Mobile-First Responsive Design */

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .site-header {
        padding: 1rem 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo img {
        height: 40px;
        max-width: 200px;
    }

    /* Hero Section Mobile Optimizations */
    .hero-section {
        background-attachment: scroll;
        padding: 2rem 1rem;
        min-height: 50vh;
        margin: 1rem 0.5rem;
        border-radius: 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-rating {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
    }

    /* Content Section Mobile Improvements */
    .quick-facts,
    .detailed-review {
        margin: 1rem 0.5rem;
        padding: 2rem 1rem;
        border-radius: 16px;
    }
    
    .quick-facts h2,
    .review-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .review-section h3 {
        font-size: 1.5rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .review-section h4 {
        font-size: 1.3rem;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .review-section p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
        text-align: left;
        margin-bottom: 1.25rem;
    }

    /* Grid Layout Mobile Adjustments */
    .facts-grid,
    .promo-grid,
    .vip-tiers,
    .security-features,
    .rg-tools,
    .support-grid,
    .issues-grid,
    .user-profiles,
    .analysis-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tips-grid,
    .market-categories,
    .support-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Card Components Mobile Optimization */
    .fact-item,
    .promo-card,
    .security-item,
    .tool-category,
    .support-channel,
    .issue-card,
    .user-profile {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Rating and Scoring Mobile Layout */
    .overall-rating {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .rating-score {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .rating-item span:first-child {
        min-width: auto;
        font-weight: 600;
        color: #4dabf7;
    }

    /* Two-Column Layout Mobile Fixes */
    .pros-cons,
    .app-platforms,
    .pros-cons-license,
    .state-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .verdict-summary {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    /* Table Mobile Responsiveness */
    .comparison-table,
    .faq-table {
        font-size: 0.8rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .comparison-table th,
    .comparison-table td,
    .faq-table th,
    .faq-table td {
        padding: 0.5rem 0.25rem;
        min-width: 100px;
    }

    /* Payment Methods Mobile Layout */
    .payment-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .payment-timing {
        text-align: center;
    }
    
    .deposit-time,
    .withdrawal-time {
        display: inline-block;
        margin: 0 0.25rem;
    }

    /* Step Process Mobile Layout */
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .timeline {
        align-self: center;
    }

    /* Support Channel Mobile Layout */
    .channel-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem;
    }
    
    .channel-details {
        padding: 1.5rem;
    }

    /* Feature Highlights Mobile */
    .feature-highlight,
    .bonus-card,
    .platform {
        margin-bottom: 2rem;
    }
    
    .feature-highlight img,
    .promo-card img,
    .platform img {
        min-height: 200px;
        max-height: 250px;
    }
    
    .feature-highlight p,
    .feature-highlight ul,
    .promo-card p,
    .promo-card ul {
        padding: 0 1rem;
    }

    /* Floating CTA Mobile Optimization */
    .floating-cta {
        bottom: 20px;
        right: 15px;
        left: 15px;
        width: auto;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 25px;
        position: fixed;
    }

    /* Footer Mobile Layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .gambling-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Ultra-Mobile Optimization (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    /* Header Ultra-Mobile */
    .site-header {
        padding: 0.8rem 0;
    }
    
    .logo img {
        height: 35px;
        max-width: 160px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .nav-menu {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Hero Ultra-Mobile */
    .hero-section {
        min-height: 45vh;
        margin: 0.5rem 0.25rem;
        padding: 1.5rem 0.8rem;
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .hero-rating {
        margin-bottom: 1.2rem;
    }
    
    .rating-stars .star {
        font-size: 1.2rem;
    }
    
    .rating-text {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 12px;
        min-height: 48px; /* Touch-friendly minimum */
    }

    /* Content Ultra-Mobile */
    .quick-facts,
    .detailed-review {
        margin: 0.8rem 0.25rem;
        padding: 1.5rem 0.8rem;
        border-radius: 12px;
    }
    
    .quick-facts h2,
    .review-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .review-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .review-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .review-section p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 0.25rem;
        margin-bottom: 1rem;
    }

    /* Card Components Ultra-Mobile */
    .fact-item,
    .promo-card,
    .security-item,
    .tool-category,
    .support-channel,
    .issue-card,
    .user-profile,
    .analysis-card,
    .legal-card,
    .bonus-card {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
        border-radius: 12px;
    }

    /* Rating Ultra-Mobile */
    .rating-score {
        font-size: 2.8rem;
    }
    
    .rating-item {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }
    
    .rating-bar {
        height: 6px;
        min-width: 120px;
    }
    
    .verdict-score .score {
        font-size: 2.8rem;
    }

    /* Table Ultra-Mobile */
    .comparison-table,
    .faq-table {
        font-size: 0.75rem;
    }
    
    .comparison-table th,
    .comparison-table td,
    .faq-table th,
    .faq-table td {
        padding: 0.4rem 0.2rem;
        min-width: 80px;
    }

    /* Lists Ultra-Mobile */
    ul, ol {
        padding-left: 1.2rem;
    }
    
    li {
        margin-bottom: 0.4rem;
        line-height: 1.4;
    }

    /* Feature Cards Ultra-Mobile */
    .feature-highlight h3,
    .promo-card h4,
    .platform h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .feature-highlight img,
    .promo-card img {
        min-height: 150px;
        max-height: 200px;
    }
    
    .feature-highlight p,
    .feature-highlight ul,
    .promo-card p,
    .promo-card ul {
        padding: 0 0.8rem;
        font-size: 0.9rem;
    }

    /* Payment Methods Ultra-Mobile */
    .payment-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .payment-details h5 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .payment-details p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .payment-limits {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }

    /* Support Channel Ultra-Mobile */
    .channel-header {
        padding: 0.8rem;
    }
    
    .channel-header h4 {
        font-size: 1rem;
    }
    
    .availability {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
    
    .channel-details {
        padding: 1rem;
    }
    
    .channel-rating {
        padding: 1rem;
    }

    /* FAQ Ultra-Mobile */
    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.2rem;
        line-height: 1.3;
    }
    
    .faq-question::after {
        right: 1.2rem;
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 1.2rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Step Process Ultra-Mobile */
    .step {
        padding: 1.2rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step h4 {
        font-size: 1rem;
    }
    
    .timeline {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Floating CTA Ultra-Mobile */
    .floating-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 20px;
        min-height: 48px; /* Touch-friendly minimum */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Footer Ultra-Mobile */
    .footer-section {
        padding: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p,
    .footer-section li,
    .footer-section a {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .gambling-logos img {
        height: 30px;
        margin: 0.2rem;
    }
    
    .footer-bottom {
        padding: 1rem;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Touch-Friendly Improvements */
    .cta-button,
    .nav-menu a,
    .faq-question,
    .floating-cta {
        min-height: 44px; /* iOS recommended minimum touch target */
        min-width: 44px;
    }
    
    /* Text Selection Improvements */
    .review-section p,
    .faq-answer p,
    .channel-details p {
        -webkit-touch-callout: text;
        -webkit-user-select: text;
        user-select: text;
    }

    /* Improved Spacing for Readability */
    .feature-highlight,
    .promo-card,
    .review-section,
    .faq-item {
        margin-bottom: 1.5rem;
    }
}

/* Mobile Menu Body Lock */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Touch Action Controls - Prevent Double-Tap Zoom */
.cta-button,
.nav-menu a,
.mobile-menu-toggle,
.faq-question,
.floating-cta,
.scroll-to-top,
button,
a[href] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Content areas that should allow text selection and scrolling */
.review-section,
.faq-answer,
.channel-details,
.feature-highlight,
.promo-card,
.analysis-card {
    touch-action: pan-y pinch-zoom;
}

/* Scrollable areas */
.comparison-table,
.faq-table,
.payment-methods,
.nav-menu {
    touch-action: pan-x pan-y;
}

/* Additional Mobile Enhancements */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
        /* Additional zoom prevention */
        -webkit-text-size-adjust: none;
        -moz-text-size-adjust: none;
        -ms-text-size-adjust: none;
        text-size-adjust: none;
    }
    
    /* Improved touch targets */
    .cta-button,
    .nav-menu a,
    .mobile-menu-toggle {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
    }
    
    /* Better text contrast on mobile */
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('images/betbarter-hero-cricket-betting.jpg?v=2');
        touch-action: pan-y;
    }
    
    /* Prevent zoom on input focus (if any inputs are added later) */
    input,
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 107, 53, 0.7));
    backdrop-filter: blur(15px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 120px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 100px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Enhanced Focus States for Mobile */
@media (max-width: 768px) {
    .cta-button:focus,
    .nav-menu a:focus,
    .faq-question:focus,
    .mobile-menu-toggle:focus {
        outline: 3px solid #ff8c66;
        outline-offset: 3px;
    }
    
    /* Larger tap targets for small elements */
    .star,
    .rating-fill,
    .metric-fill {
        cursor: pointer;
        min-height: 20px;
        min-width: 20px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-to-top {
        transition: none;
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 107, 53, 0.7));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, rgba(255, 107, 53, 1), rgba(255, 107, 53, 0.8));
}

@keyframes pulse {
    0% { box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(255, 107, 53, 0.8); }
    100% { box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4); }
}

/* Image Aspect Ratio Fixes */
img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-highlight img,
.promo-card img,
.platform img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

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

/* UPI Featured Image */
.payment-overview img {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

/* Focus States */
.cta-button:focus,
.nav-menu a:focus,
.faq-question:focus {
    outline: 2px solid #ff8c66;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .hero-cta,
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-section {
        background: none;
        color: black;
    }
    
    .review-section {
        break-inside: avoid;
    }
}