:root {
    --primary: 217 91% 60%;
    --primary-foreground: 0 0% 100%;
    --secondary: 217 20% 20%;
    --secondary-foreground: 0 0% 100%;
    --background: 222 47% 11%;
    --foreground: 213 31% 91%;
    --card: 217 33% 17%;
    --card-foreground: 213 31% 91%;
    --muted: 223 47% 20%;
    --muted-foreground: 215 20% 65%;
    --accent: 217 91% 60%;
    --accent-foreground: 0 0% 100%;
    --border: 217 33% 25%;
    --destructive: 0 84% 60%;
    --ring: 217 91% 60%;
    --gradient-primary: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 70%));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* Navbar */
.navbar {
    background: hsl(var(--card));
    border-bottom: 1px solid hsl(var(--border));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: hsl(var(--foreground));
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--primary));
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: hsl(var(--foreground));
    transition: 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: hsl(var(--card));
        flex-direction: column;
        padding: 1rem;
        display: none;
        border-bottom: 1px solid hsl(var(--border));
    }
    
    .nav-menu.active {
        display: flex;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background: hsl(217, 91%, 55%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border: 1px solid hsl(var(--border));
}

.btn-secondary:hover {
    background: hsl(var(--muted));
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* CTA Hero Block */
.cta-hero {
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 45%));
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 40px hsla(217, 91%, 60%, 0.3);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 40px hsla(217, 91%, 60%, 0.3); }
    50% { box-shadow: 0 10px 60px hsla(217, 91%, 60%, 0.5); }
}

.cta-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-hero h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.cta-hero-highlight {
    color: #ffd700;
    font-size: 2.5rem;
    display: block;
    margin: 0.5rem 0;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.cta-hero-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #ffd700;
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 7px 30px rgba(255, 215, 0, 0.6);
}

.btn-cta-secondary {
    background: white;
    color: hsl(217, 91%, 45%);
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 7px 30px rgba(255, 255, 255, 0.3);
}

.btn-cta-demo {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-cta-demo:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-hero {
        padding: 2rem 1.5rem;
    }
    
    .cta-hero h2 {
        font-size: 1.5rem;
    }
    
    .cta-hero-highlight {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-demo {
        width: 100%;
    }
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-primary {
    background: hsla(var(--primary), 0.2);
    color: hsl(var(--primary));
    border: 1px solid hsla(var(--primary), 0.4);
}

.badge-live {
    background: hsla(120, 100%, 50%, 0.2);
    color: hsl(120, 100%, 40%);
    border: 1px solid hsla(120, 100%, 50%, 0.3);
    animation: pulse 2s infinite;
}

.badge-upcoming {
    background: hsla(217, 91%, 60%, 0.2);
    color: hsl(217, 91%, 60%);
    border: 1px solid hsla(217, 91%, 60%, 0.3);
}

.badge-completed {
    background: hsla(0, 0%, 50%, 0.2);
    color: hsl(0, 0%, 60%);
    border: 1px solid hsla(0, 0%, 50%, 0.3);
}

.badge-prize {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.badge-ai {
    background: hsla(280, 100%, 50%, 0.2);
    color: hsl(280, 100%, 60%);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Cards */
.card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    margin: 2rem 0;
    border-radius: 1rem;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-content {
    padding: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin: 1rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: hsl(var(--primary));
}

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

.feature-card h3 {
    margin: 0.5rem 0;
    color: hsl(var(--foreground));
}

.feature-card p {
    color: hsl(var(--muted-foreground));
}

/* Tournaments */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tournament-card {
    overflow: hidden;
    transition: all 0.3s;
}

.tournament-card:hover {
    transform: translateY(-4px);
    border-color: hsl(var(--primary));
}

.tournament-active {
    background: linear-gradient(135deg, hsla(var(--primary), 0.1), hsl(var(--card)));
    border: 2px solid hsla(var(--primary), 0.5);
}

.tournament-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: -1.5rem -1.5rem 1rem;
}

.tournament-image-upcoming {
    opacity: 0.8;
    height: 160px;
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tournament-header h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.tournament-type {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.tournament-icon {
    font-size: 2rem;
}

.tournament-description {
    margin: 1rem 0;
    color: hsl(var(--foreground));
}

.tournament-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.stat-box {
    background: hsla(var(--card), 0.5);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.stat-prize {
    color: hsl(var(--primary));
}

.tournament-dates {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.875rem;
}

.date-label {
    color: hsl(var(--muted-foreground));
}

.date-value {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-top: 0.25rem;
}

.tournament-info {
    margin: 1rem 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(var(--border));
}

.info-row:last-child {
    border-bottom: none;
}

/* Leaderboard */
.leaderboard-card {
    margin: 2rem 0;
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.leaderboard-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leaderboard-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--border));
    background: hsla(var(--muted), 0.3);
    transition: all 0.3s;
}

.leaderboard-top {
    background: linear-gradient(90deg, hsla(var(--primary), 0.2), hsla(var(--primary), 0.05));
    border: 2px solid hsla(var(--primary), 0.4);
}

.leaderboard-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.position-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.position-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.position-silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #000;
}

.position-bronze {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: #fff;
}

.position-default {
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.player-info {
    display: flex;
    flex-direction: column;
}

.player-name {
    font-weight: 700;
    color: hsl(var(--foreground));
}

.player-score {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Reviews */
.review-card {
    margin-bottom: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.review-rating {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.review-content {
    margin: 1rem 0;
    line-height: 1.7;
}

.review-footer {
    display: flex;
    gap: 1rem;
}

.btn-vote {
    background: transparent;
    border: 1px solid hsl(var(--border));
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    color: hsl(var(--foreground));
}

.btn-vote:hover {
    background: hsl(var(--muted));
    border-color: hsl(var(--primary));
}

.rating-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0;
}

.rating-big {
    font-size: 3rem;
    font-weight: 700;
}

.rating-details {
    color: hsl(var(--muted-foreground));
}

/* Page Headers */
.page-header {
    text-align: center;
    margin: 3rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.page-header .lead {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 800px;
    margin: 1rem auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0 1rem;
}

.section-header h2 {
    font-size: 2rem;
}

.icon-pulse {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.breadcrumbs a {
    color: hsl(var(--primary));
}

/* Info sections */
.info-card {
    margin: 2rem 0;
}

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

.info-section h3 {
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.info-section ul,
.info-section ol {
    padding-left: 1.5rem;
}

.info-section li {
    margin: 0.5rem 0;
}

.info-box {
    background: hsla(var(--muted), 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--border));
    margin-top: 1.5rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.faq-item {
    background: hsl(var(--card));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
}

.faq-item h3 {
    color: hsl(var(--primary));
    margin-bottom: 0.75rem;
}

/* Footer */
footer {
    background: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
    margin-top: 4rem;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: hsl(var(--muted-foreground));
    transition: color 0.3s;
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

.responsible-gaming {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid hsl(var(--border));
    padding-top: 1.5rem;
    text-align: center;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    max-width: 350px;
}

.toast-show {
    opacity: 1;
    transform: translateY(0);
}

.toast strong {
    display: block;
    margin-bottom: 0.25rem;
    color: hsl(var(--foreground));
}

.toast p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.no-data {
    text-align: center;
    color: hsl(var(--muted-foreground));
    padding: 2rem;
}

/* Review Page Layout */
.review-page {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin: 2rem 0;
}

.review-main {
    min-width: 0;
}

.review-sidebar {
    position: relative;
}

.sticky-card {
    position: sticky;
    top: 100px;
}

.rating-overview {
    margin: 2rem 0;
}

.rating-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.rating-value {
    color: hsl(var(--primary));
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: hsl(var(--secondary));
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.content-image {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    margin: 1.5rem 0;
}

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

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(var(--border));
}

.info-label {
    color: hsl(var(--muted-foreground));
}

.info-value {
    font-weight: 600;
    color: hsl(var(--foreground));
}

.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin: 0.5rem 0;
}

.related-links a {
    color: hsl(var(--foreground));
    transition: color 0.3s;
}

.related-links a:hover {
    color: hsl(var(--primary));
}

/* Bonus specific */
.bonus-hero {
    background: linear-gradient(135deg, hsla(var(--primary), 0.1), hsl(var(--card)));
    border: 2px solid hsl(var(--primary));
}

.bonus-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.bonus-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: hsla(var(--card), 0.5);
    border-radius: 0.5rem;
}

.bonus-value {
    color: hsl(var(--primary));
    font-weight: 700;
}

.games-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: hsl(var(--card));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

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

.provider-badge {
    background: hsl(var(--card));
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--border));
    text-align: center;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE MOBILE STYLES
   ============================================ */

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    /* Base Container */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Typography Mobile */
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }
    
    p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo img {
        height: 32px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 1.5rem 0 !important;
        min-height: auto !important;
        margin: 0 !important;
    }
    
    .hero > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 !important;
    }
    
    .hero .grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .hero .card {
        padding: 1rem !important;
    }
    
    .hero img {
        max-width: 100%;
        height: auto;
        border-radius: 0.5rem;
    }
    
    /* Page Headers Mobile */
    .page-header {
        padding: 1.5rem 0 !important;
        text-align: center;
    }
    
    .section-header {
        padding: 1rem 0 !important;
    }
    
    /* CTA Hero Block Mobile */
    .cta-hero {
        padding: 1.5rem 1rem !important;
        margin: 1rem 0 !important;
        border-radius: 0.75rem !important;
    }
    
    .cta-content h2 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .cta-amount {
        font-size: 2rem !important;
        margin: 0.75rem 0 !important;
    }
    
    .cta-features {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin: 0.75rem 0 !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin-top: 1rem !important;
    }
    
    .cta-buttons .btn {
        width: 100% !important;
        min-width: auto !important;
        padding: 0.875rem 1rem !important;
        font-size: 0.95rem !important;
        white-space: normal !important;
    }
    
    /* Buttons Mobile */
    .btn {
        width: 100%;
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Cards and Grids Mobile */
    .features,
    .tournaments-grid,
    .promotions-grid,
    .games-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .feature-card,
    .tournament-card,
    .card {
        padding: 1.25rem !important;
    }
    
    /* Games Stats Mobile */
    .games-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }
    
    .stat-card {
        padding: 1rem !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
    
    /* Review Page Mobile */
    .review-page {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .review-sidebar {
        order: -1;
        position: static !important;
    }
    
    .sticky-card {
        position: static !important;
    }
    
    .rating-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
    }
    
    .rating-score {
        font-size: 3rem !important;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Content Images Mobile */
    .content-image {
        margin: 1rem 0 !important;
        border-radius: 0.5rem !important;
    }
    
    /* Tables Mobile */
    .comparison-table {
        display: block;
        overflow-x: auto;
        font-size: 0.85rem !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Leaderboard Mobile */
    .leaderboard-entry {
        padding: 0.875rem !important;
        font-size: 0.9rem !important;
        flex-wrap: wrap;
    }
    
    .leaderboard-left {
        gap: 0.75rem !important;
    }
    
    .leaderboard-name {
        font-size: 0.9rem !important;
    }
    
    .position-badge {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
    }
    
    .score {
        font-size: 0.95rem !important;
    }
    
    .prize {
        font-size: 0.9rem !important;
    }
    
    /* Tournament Cards Mobile */
    .tournament-stats {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .stat-box {
        padding: 0.75rem !important;
    }
    
    .tournament-dates {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Badges Mobile */
    .badge {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.5rem !important;
    }
    
    /* Author Bio Mobile */
    .author-bio {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem !important;
    }
    
    .author-avatar {
        margin: 0 auto 1rem !important;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem !important;
    }
    
    /* Providers Grid Mobile */
    .providers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .provider-badge {
        padding: 0.75rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Contact Grid Mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Security Features Mobile */
    .security-features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* License Details Mobile */
    .license-details-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .license-icon {
        font-size: 3rem !important;
    }
    
    /* VIP Levels Mobile */
    .vip-levels {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Info Cards Mobile */
    .info-cards {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb {
        font-size: 0.85rem !important;
        flex-wrap: wrap;
    }
    
    /* Toast Mobile */
    .toast {
        right: 1rem !important;
        left: 1rem !important;
        bottom: 1rem !important;
        font-size: 0.9rem !important;
        width: auto !important;
    }
    
    /* Accordion Mobile */
    .accordion-item {
        border-radius: 0.5rem !important;
    }
    
    .accordion-trigger {
        padding: 1rem !important;
        font-size: 0.95rem !important;
    }
    
    .accordion-content {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    
    h1 {
        font-size: 1.5rem !important;
    }
    
    h2 {
        font-size: 1.3rem !important;
    }
    
    .cta-amount {
        font-size: 1.75rem !important;
    }
    
    .games-stats {
        grid-template-columns: 1fr !important;
    }
}