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

:root {
    --primary-color: #FFD700;
    --secondary-color: #FFA500;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-hover: #252525;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* BLOCK 1: Header & Hero */
.header {
    background: var(--bg-card);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.btn-login {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-signup {
    background: var(--gradient-gold);
    border: none;
    color: var(--bg-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-signup:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero {
    background: var(--gradient-dark);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* BLOCK 2: Game Categories */
.game-categories {
    padding: 4rem 0;
    background: var(--bg-dark);
}

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

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

.category-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* BLOCK 3: Featured Games Slider */
.featured-games {
    padding: 4rem 0;
    background: var(--bg-card);
}

.slider-container {
    position: relative;
}

.games-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
}

.games-slider::-webkit-scrollbar {
    height: 8px;
}

.games-slider::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 10px;
}

.games-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.game-item {
    min-width: 200px;
    background: var(--bg-dark);
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.game-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
}

.game-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.game-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

/* BLOCK 4: Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
    background: var(--bg-dark);
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

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

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* BLOCK 5: Payment Methods */
.payment-methods {
    padding: 4rem 0;
    background: var(--bg-card);
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.payment-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--bg-dark);
    border-radius: 10px;
    min-width: 100px;
    transition: all 0.3s;
    cursor: pointer;
}

.payment-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.payment-logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.payment-logo span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* BLOCK 6: Promotions */
.promotions {
    padding: 4rem 0;
    background: var(--bg-dark);
}

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

.promo-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.promo-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.promo-amount {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.promo-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.7rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* BLOCK 7: Winners Ticker */
.winners-ticker {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 1rem 0;
}

.winners-ticker h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ticker-wrapper {
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    font-weight: 600;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* BLOCK 8: How To Start */
.how-to-start {
    padding: 4rem 0;
    background: var(--bg-card);
}

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

.step-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

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

.step-card p {
    color: var(--text-secondary);
}

/* BLOCK 9: Download App */
.download-app {
    padding: 4rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.app-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn-download i {
    font-size: 2.5rem;
}

.btn-download div {
    text-align: left;
}

.btn-download small {
    display: block;
    font-size: 0.8rem;
}

.btn-download strong {
    display: block;
    font-size: 1.2rem;
}

.phone-mockup {
    font-size: 10rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* BLOCK 10: Game Providers */
.game-providers {
    padding: 4rem 0;
    background: var(--bg-card);
}

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

.provider-logo {
    background: var(--bg-dark);
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.provider-logo:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* BLOCK 11: FAQ Accordion */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-hover);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* BLOCK 12: Blog/News */
.blog-news {
    padding: 4rem 0;
    background: var(--bg-card);
}

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

.blog-card {
    background: var(--bg-dark);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 4rem;
    color: var(--primary-color);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0 1rem;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* PROMOTIONAL BANNER & GALLERY */
.promo-banner-section {
    background: var(--bg-card);
}

.main-banner {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.main-banner:hover {
    transform: scale(1.01);
}

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

.gallery-item {
    background: var(--bg-dark);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.gallery-item img {
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* BLOCK 13: Footer */
.footer {
    background: var(--bg-card);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--primary-color);
}

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

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-legal {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
}

.legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* BLOCK 14: Responsible Gaming */
.responsible-gaming {
    background: var(--bg-dark);
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.rg-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.age-warning {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.separator {
    color: var(--text-secondary);
}

.rg-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .categories-grid,
    .features-grid,
    .promotions-grid,
    .steps-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        display: none;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Mobile-specific responsive typography */
    h2[style*="font-size: 3rem"],
    h2[style*="font-size:3rem"] {
        font-size: 1.8rem !important;
    }

    h3[style*="font-size: 2.5rem"],
    h3[style*="font-size:2.5rem"] {
        font-size: 1.6rem !important;
    }

    h3[style*="font-size: 2rem"],
    h3[style*="font-size:2rem"],
    h4[style*="font-size: 2rem"],
    h4[style*="font-size:2rem"] {
        font-size: 1.4rem !important;
    }

    h4[style*="font-size: 2.5rem"],
    h4[style*="font-size:2.5rem"] {
        font-size: 1.6rem !important;
    }

    /* Icons */
    i[style*="font-size: 4rem"],
    i[style*="font-size:4rem"] {
        font-size: 2.5rem !important;
    }

    i[style*="font-size: 3rem"],
    i[style*="font-size:3rem"] {
        font-size: 2rem !important;
    }

    /* Table responsiveness */
    table[style*="min-width"] {
        min-width: 100% !important;
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
    }

    table {
        word-wrap: break-word;
    }

    table th,
    table td {
        padding: 0.5rem !important;
        font-size: 0.85rem !important;
        white-space: normal !important;
        word-wrap: break-word;
    }

    /* Ensure horizontal scrolling for tables */
    div[style*="overflow-x: auto"] {
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
        position: relative;
    }

    /* Add shadow to indicate scrollability */
    div[style*="overflow-x: auto"]::after {
        content: '← Swipe to see more →';
        display: block;
        text-align: center;
        color: var(--text-secondary);
        font-size: 0.75rem;
        margin-top: 0.5rem;
        opacity: 0.7;
    }

    /* Content sections padding */
    .featured-games[style*="padding: 6rem 0"] {
        padding: 3rem 0 !important;
    }

    /* Text descriptions */
    p[style*="font-size: 1.2rem"],
    p[style*="font-size:1.2rem"] {
        font-size: 1rem !important;
    }

    /* Grid layouts on mobile */
    .game-categories .categories-grid a {
        padding: 1.5rem 1rem;
    }

    /* Game items slider on mobile */
    .game-item {
        min-width: 160px;
    }

    /* Provider grid */
    .providers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Blog grid on mobile */
    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    /* Ensure all sections are visible */
    section {
        overflow-x: hidden;
    }

    /* Fix any potential horizontal overflow */
    body {
        overflow-x: hidden;
    }

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

    /* Prevent horizontal scroll from text */
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Buttons and flex containers */
    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }

    .nav-buttons button {
        width: 100%;
    }

    /* Hero section adjustments */
    .hero {
        padding: 3rem 0 !important;
    }

    div[style*="display: flex"][style*="gap"][style*="justify-content: center"] {
        gap: 0.5rem !important;
        flex-wrap: wrap;
    }

    /* Hero buttons specifically */
    .hero div[style*="display: flex"] a,
    .hero div[style*="display: flex"] .btn-primary,
    .hero div[style*="display: flex"] .btn-secondary {
        white-space: nowrap;
        min-width: fit-content;
    }

    /* Cards and content boxes */
    div[style*="padding: 2rem"],
    div[style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }

    div[style*="padding: 2.5rem"] {
        padding: 1.5rem !important;
    }

    /* Nested content with max-width */
    p[style*="max-width: 900px"],
    p[style*="max-width:900px"] {
        max-width: 100% !important;
        padding: 0 1rem;
    }

    /* Container adjustments */
    .container {
        padding: 0 15px;
    }

    /* Feature cards and game items */
    .feature-card,
    .category-card,
    .game-item {
        margin-bottom: 1rem;
    }

    /* Promo cards */
    .promo-card,
    .step-card {
        padding: 1.5rem !important;
    }

    /* Responsive images and placeholders */
    .game-image {
        height: 150px;
    }

    /* Button sizing */
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem !important;
    }

    .btn-large {
        font-size: 1rem !important;
        padding: 1rem 2rem !important;
    }

    /* Promotional Gallery Mobile */
    .promo-gallery {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .gallery-item {
        margin-bottom: 1rem;
    }

    .main-banner {
        border-radius: 10px !important;
        border-width: 2px !important;
    }

    .main-banner div[style*="position: absolute"] {
        padding: 1rem !important;
    }

    .main-banner div[style*="position: absolute"] h3 {
        font-size: 1.3rem !important;
    }

    .main-banner div[style*="position: absolute"] p {
        font-size: 0.9rem !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem !important;
    }

    h2[style*="font-size: 3rem"],
    h2[style*="font-size:3rem"] {
        font-size: 1.5rem !important;
    }

    h3[style*="font-size: 2.5rem"],
    h3[style*="font-size:2.5rem"] {
        font-size: 1.3rem !important;
    }

    h3[style*="font-size: 2rem"],
    h3[style*="font-size:2rem"],
    h4[style*="font-size: 2rem"],
    h4[style*="font-size:2rem"] {
        font-size: 1.2rem !important;
    }

    /* Even smaller text on tiny screens */
    table th,
    table td {
        padding: 0.3rem !important;
        font-size: 0.75rem !important;
    }

    /* Button text */
    .btn-primary,
    .btn-secondary,
    .btn-login,
    .btn-signup {
        font-size: 0.85rem !important;
        padding: 0.6rem 1rem !important;
    }

    /* Logo sizing */
    .logo {
        font-size: 1.3rem !important;
    }

    .logo i {
        font-size: 1.5rem !important;
    }

    /* Icons in cards */
    .category-card i {
        font-size: 2rem !important;
    }

    .feature-card i {
        font-size: 2.5rem !important;
    }

    /* Reduce padding more aggressively */
    div[style*="padding: 2rem"],
    div[style*="padding: 3rem"],
    div[style*="padding: 2.5rem"] {
        padding: 1rem !important;
    }

    .container {
        padding: 0 10px;
    }

    /* Cards */
    .category-card,
    .feature-card {
        padding: 1.5rem 1rem !important;
    }

    /* Gallery on tiny screens */
    .promo-gallery {
        grid-template-columns: 1fr !important;
    }

    .gallery-item h4 {
        font-size: 1.1rem !important;
    }

    .gallery-item p {
        font-size: 0.85rem !important;
    }

    .gallery-item div[style*="padding: 1rem"] {
        padding: 0.8rem !important;
    }
}


