/* Business Corporate Styles - Premium Casino Edition */
:root {
    --primary-color: #ff9800;
    --primary-hover: #e68a00;
    --secondary-color: #1a1a1a;
    --bg-white: #ffffff;
    --bg-light: #f4f7f6;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 12px;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
}

/* Hero Section Refinement */
.hero {
    position: relative;
    padding: 220px 0 160px;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%), url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-white), transparent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 650px;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Stats Bar Refinement */
.hero-stats-bar {
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.stats-item {
    flex: 1;
    text-align: center;
    padding: 3.5rem 2rem;
    border-right: 1px solid var(--border-color);
    transition: var(--transition);
}

.stats-item:last-child {
    border-right: none;
}

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

.stats-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-item.highlighted {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--text-white);
    border: none;
}

.stats-item.highlighted .stats-number,
.stats-item.highlighted .stats-label {
    color: var(--text-white);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-prefix {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Service Cards Refinement */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.game-card-modern {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.03);
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.game-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 35px;
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.game-card-modern:hover .card-icon {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.1) rotate(10deg);
}

.game-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.game-card-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-item {
    position: relative;
    padding-top: 30px;
}

.process-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 152, 0, 0.08);
    position: absolute;
    top: -10px;
    left: 0;
    line-height: 1;
}

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

.process-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

/* CTA Bar */
.cta-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    padding: 60px 0;
    color: var(--text-white);
}

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

/* Testimonials */
.testimonials-section {
    background: var(--bg-light);
    padding: 140px 0;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    background: var(--bg-white);
    color: var(--text-main);
    padding: 60px;
    border-radius: 20px;
    position: relative;
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.testimonial-quote::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--bg-white);
}

.testimonial-author img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
}

/* Advisors / Features Section */
.advisors-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.advisors-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.03) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.advisors-section .section-title {
    color: var(--bg-white);
}

.advisors-section .section-title::after {
    background: linear-gradient(90deg, var(--primary-color), #ff6b35);
}

.advisors-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Feature Card */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px 35px;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 152, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 152, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Featured Card */
.feature-card.featured {
    border-color: rgba(255, 152, 0, 0.4);
    background: rgba(255, 152, 0, 0.05);
}

.feature-card.featured::before {
    opacity: 1;
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b35);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

/* Feature Icon */
.feature-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.feature-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.05));
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.3), rgba(255, 152, 0, 0.1));
}

.feature-card:hover .feature-icon i {
    transform: scale(1.15);
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

/* Feature Content */
.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bg-white);
    position: relative;
    z-index: 2;
}

.feature-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-tag {
    display: inline-block;
    background: rgba(255, 152, 0, 0.15);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 152, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.feature-card:hover .feature-tag {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Buttons Refinement */
.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.2);
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
    }
    .footer-contact-col {
        grid-column: 1 / -1;
    }
    .footer-licenses {
        justify-content: flex-start;
    }
}

@media (max-width: 992px) {
    .hero-stats-bar { flex-direction: column; margin-top: 0; }
    .stats-item { border-right: none; border-bottom: 1px solid var(--border-color); padding: 3rem 0; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .advisors-grid { grid-template-columns: repeat(2, 1fr); }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

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

    .footer-licenses {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .process-grid { grid-template-columns: 1fr; }
    .advisors-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .cta-container { flex-direction: column; text-align: center; gap: 30px; }

    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-subscribe {
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links-col,
    .footer-contact-col {
        padding-top: 0;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   NEWS SECTION - Modern Blog Layout
   ============================================ */
.latest-news {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.latest-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff9800' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

/* News Card */
.news-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* News Image */
.news-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.1);
}

/* News Overlay */
.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.news-category {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

/* News Content */
.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.news-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

/* Read More Link */
.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: auto;
}

.news-readmore i {
    transition: transform 0.3s ease;
}

.news-readmore:hover {
    color: var(--primary-hover);
    gap: 12px;
}

.news-readmore:hover i {
    transform: translateX(5px);
}

/* News Footer */
.news-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .advisors-section {
        padding: 100px 0;
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .latest-news {
        padding: 80px 0;
    }

    .news-image-wrapper {
        height: 200px;
    }

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

    .advisors-section {
        padding: 80px 0;
    }
}

/* ============================================
   POPULAR GAMES SECTION
   ============================================ */
.popular-games {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 140px 0;
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.game-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.game-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-item:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

.btn-play:hover {
    transform: scale(1);
    background: var(--primary-hover);
}

.game-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-badge.hot {
    background: linear-gradient(135deg, #ff4757, #ff6348);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.game-info {
    padding: 20px;
}

.game-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.game-provider {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.game-stats {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
}

.game-rating {
    color: #ffa502;
}

.game-players {
    color: var(--text-muted);
}

.games-footer {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   LIVE WINNERS SECTION
   ============================================ */
.live-winners {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.winners-header {
    text-align: center;
    margin-bottom: 50px;
}

.winners-title-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.live-winners .section-title {
    color: var(--bg-white);
    margin: 0;
}

.live-winners .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.winners-marquee {
    overflow: hidden;
    margin-bottom: 50px;
}

.winners-track {
    display: flex;
    gap: 25px;
    animation: scroll-winners 30s linear infinite;
}

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

.winner-card {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    backdrop-filter: blur(10px);
}

.winner-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.winner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-info h4 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.winner-game {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.winner-amount {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.jackpot-display {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.jackpot-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.jackpot-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.jackpot-value {
    color: var(--bg-white);
    font-size: 1.6rem;
    font-weight: 800;
}

/* ============================================
   PAYMENT METHODS SECTION
   ============================================ */
.payment-methods {
    background: var(--bg-white);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.payment-header {
    text-align: center;
    margin-bottom: 50px;
}

.payment-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.payment-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.payment-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px;
    background: var(--bg-light);
    border-radius: 16px;
    min-width: 120px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.payment-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.payment-icon.pix {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: var(--text-white);
}

.payment-icon.crypto {
    background: linear-gradient(135deg, #f7931a, #ff6b35);
    color: var(--text-white);
}

.payment-item span {
    font-weight: 700;
    color: var(--secondary-color);
}

.payment-item small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.payment-security {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.security-badge i {
    color: #00b894;
    font-size: 1.2rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--bg-light);
    padding: 140px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--bg-white);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 152, 0, 0.03);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .jackpot-display {
        gap: 30px;
    }

    .winners-title-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .popular-games {
        padding: 80px 0;
    }

    .games-showcase {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        gap: 15px;
    }

    .payment-item {
        padding: 20px;
        min-width: 100px;
    }

    .jackpot-item {
        padding: 20px 25px;
    }

    .jackpot-value {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .winners-track {
        animation-duration: 20s;
    }

    .winner-card {
        min-width: 260px;
        padding: 15px;
    }
}

/* ============================================
   IMPROVED FOOTER LAYOUT
   ============================================ */

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.newsletter-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    background: var(--text-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.btn-subscribe {
    padding: 18px 35px;
    background: var(--secondary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-subscribe i {
    transition: transform 0.3s ease;
}

.btn-subscribe:hover i {
    transform: translateX(5px);
}

/* Main Footer */
.main-footer {
    background: linear-gradient(180deg, #0f1419 0%, #0a0d12 100%);
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
    border-top: 1px solid rgba(255, 152, 0, 0.1);
}

.footer-main {
    padding: 70px 0 50px;
}

/* Footer Top Row - Brand + Links */
.footer-top-row {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 50px;
}

/* Brand Column */
.footer-brand-col {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 42px;
    filter: brightness(1.2);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Links Wrapper */
.footer-links-wrapper {
    display: flex;
    justify-content: flex-end;
}

.footer-links-wrapper .footer-links-col {
    min-width: 200px;
}

.footer-links-col {
    padding-top: 5px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 0;
}

.footer-menu a:hover::before {
    width: 12px;
}

/* Footer Contact Row */
.footer-contact-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.footer-contact-col {
    padding-top: 5px;
}

.footer-contact-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info .value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Badges Column */
.footer-badges-col {
    padding-top: 5px;
}

.footer-licenses {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.license-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.license-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 152, 0, 0.2);
    transform: translateX(5px);
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 184, 148, 0.1);
    border: 1px solid rgba(0, 184, 148, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b894;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.badge-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.responsible-gaming {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   COMPREHENSIVE RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-top-row {
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
    }

    .footer-contact-row {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-contact-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .footer-top-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand-col {
        max-width: 100%;
    }

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

    .footer-links-wrapper {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-contact-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-contact-list li {
        flex-direction: column;
        align-items: center;
    }

    .footer-licenses {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-top-row {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-contact-list {
        grid-template-columns: 1fr;
    }

    .footer-licenses {
        flex-direction: column;
        align-items: stretch;
    }

    .license-badge {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .newsletter-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-links-wrapper {
        justify-content: center;
    }

    .footer-menu a {
        justify-content: center;
    }

    .license-badge {
        justify-content: center;
    }

    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Tablet Landscape & Large Tablets (768px - 991px) */
@media (max-width: 991px) {
    /* Section Spacing */
    section {
        padding: 80px 0;
    }

    .latest-news,
    .faq-section,
    .testimonials-section {
        padding: 80px 0;
    }

    .advisors-section,
    .popular-games {
        padding: 100px 0;
    }

    /* Typography */
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    /* Hero Adjustments */
    .hero {
        padding: 160px 0 100px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .hero-desc {
        font-size: 1.1rem;
        max-width: 100%;
    }

    /* Stats Bar */
    .hero-stats-bar {
        margin-top: 40px;
    }

    .stats-item {
        padding: 2rem 1rem;
    }

    .stats-number {
        font-size: 2rem;
    }

    /* Grid Layouts */
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .game-card-modern {
        padding: 40px 30px;
    }

    /* Process Section */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-number {
        font-size: 4rem;
    }

    /* Testimonials */
    .testimonial-quote {
        padding: 40px;
        font-size: 1.2rem;
    }

    /* Games Showcase */
    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .game-thumbnail {
        height: 180px;
    }

    /* Winners Section */
    .winners-marquee {
        margin-bottom: 30px;
    }

    .jackpot-display {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .jackpot-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Payment Methods */
    .payment-grid {
        gap: 20px;
    }

    .payment-item {
        padding: 20px 25px;
        min-width: auto;
        flex: 1;
        min-width: 140px;
    }

    /* Newsletter */
    .newsletter-form input {
        padding: 15px 20px;
    }

    .btn-subscribe {
        padding: 15px 25px;
    }

    /* FAQ */
    .faq-grid {
        gap: 15px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news-image-wrapper {
        height: 180px;
    }

    /* CTA Bar */
    .cta-bar {
        padding: 40px 0;
    }

    .cta-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-container h3 {
        font-size: 1.3rem;
    }
}

/* Tablets Portrait (576px - 767px) */
@media (max-width: 767px) {
    /* Container */
    .container {
        width: 95%;
    }

    /* Section Spacing */
    section {
        padding: 60px 0;
    }

    .advisors-section,
    .popular-games,
    .latest-news,
    .faq-section,
    .testimonials-section {
        padding: 60px 0;
    }

    /* Hero */
    .hero {
        padding: 140px 0 80px;
        background-attachment: scroll;
    }

    .hero .container {
        width: 100%;
        padding: 0 20px;
        max-width: none;
        margin: 0;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions .btn-signup {
        margin-left: 0 !important;
    }

    /* Stats */
    .hero-stats-bar {
        flex-direction: column;
        margin-top: 30px;
    }

    .stats-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem 1.5rem;
    }

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

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
        padding-bottom: 15px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    /* Grids */
    .grid-container,
    .features-grid,
    .process-grid,
    .advisors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-card-modern {
        padding: 35px 25px;
    }

    .card-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    /* Process */
    .process-item {
        padding-top: 20px;
    }

    .process-number {
        font-size: 3.5rem;
    }

    .process-title {
        font-size: 1.2rem;
    }

    /* Mid CTA */
    .mid-cta h2 {
        font-size: 2rem;
    }

    /* News */
    .news-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .news-image-wrapper {
        height: 200px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-quote {
        padding: 30px 25px;
        font-size: 1.1rem;
    }

    .testimonial-author img {
        width: 70px;
        height: 70px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    /* Games */
    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .game-thumbnail {
        height: 150px;
    }

    .game-info {
        padding: 15px;
    }

    .game-name {
        font-size: 1rem;
    }

    /* Winners */
    .live-winners {
        padding: 60px 0;
    }

    .winners-header {
        margin-bottom: 30px;
    }

    .winners-title-group {
        flex-direction: column;
        gap: 10px;
    }

    .live-winners .section-title {
        font-size: 1.6rem;
    }

    .winner-card {
        min-width: 240px;
        padding: 12px;
    }

    .winner-amount {
        font-size: 1rem;
    }

    /* Payment */
    .payment-grid {
        flex-wrap: wrap;
        gap: 15px;
    }

    .payment-item {
        flex: 0 0 calc(33.333% - 10px);
        min-width: auto;
        padding: 15px;
    }

    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .payment-item span {
        font-size: 0.9rem;
    }

    .payment-item small {
        font-size: 0.75rem;
    }

    .payment-security {
        gap: 20px;
    }

    /* Newsletter */
    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .newsletter-text p {
        font-size: 0.95rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .btn-subscribe {
        width: 100%;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    /* Footer */
    .main-footer {
        padding: 60px 0 0;
    }

    .footer-main {
        gap: 30px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .responsible-gaming {
        font-size: 0.8rem;
    }

    /* Mobile bottom bar */
    .mobile-bottom-bar {
        padding: 8px 12px;
    }

    .mobile-bottom-bar a {
        padding: 8px 0;
        font-size: 0.85rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Hero - Fix overflow issues */
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
        overflow-x: hidden;
    }

    .hero .container {
        width: 100%;
        padding: 0 15px;
        max-width: none;
        margin: 0;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .hero-desc {
        font-size: 0.95rem;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn-signup,
    .hero-actions .btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    /* Section Title */
    .section-title {
        font-size: 1.5rem;
    }

    .section-prefix {
        font-size: 0.75rem;
    }

    /* Feature Cards */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    /* Games */
    .games-showcase {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .game-thumbnail {
        height: 180px;
    }

    /* Payment */
    .payment-grid {
        gap: 10px;
    }

    .payment-item {
        flex: 0 0 calc(50% - 5px);
        padding: 12px;
    }

    /* Winners */
    .winner-card {
        min-width: 220px;
    }

    .jackpot-value {
        font-size: 1.2rem;
    }

    /* Stats */
    .stats-number {
        font-size: 1.8rem;
    }

    .stats-label {
        font-size: 0.85rem;
    }

    /* Newsletter */
    .newsletter-text h3 {
        font-size: 1.3rem;
    }

    /* FAQ */
    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h4 {
        font-size: 0.95rem;
        padding-right: 10px;
    }

    /* Partners */
    .partners-grid {
        gap: 20px;
    }

    .partners-grid img {
        height: 25px !important;
    }

    /* Buttons */
    .btn-primary,
    .btn-view-all,
    .btn-subscribe {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .hero {
        padding: 130px 0 70px;
    }

    .hero .container {
        width: 100%;
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .game-card-modern {
        padding: 30px 20px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .payment-item {
        padding: 10px;
    }

    .payment-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ============================================
   ADDITIONAL MOBILE IMPROVEMENTS
   ============================================ */

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* Larger touch targets */
    .btn-primary,
    .btn-signup,
    .btn-view-all,
    .btn-subscribe,
    .news-readmore,
    .social-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve button spacing */
    .hero-actions {
        gap: 15px;
    }

    .hero-actions .btn-signup {
        padding: 1rem 2rem;
    }

    /* Better form elements */
    input,
    button,
    select,
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        appearance: none;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Improve text readability */
    .hero-desc,
    .news-excerpt,
    .feature-desc,
    .process-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Section padding adjustments */
    section {
        padding: 60px 0;
    }

    /* Container width optimization */
    .container {
        width: 92%;
        padding: 0 4%;
    }

    /* Hero full width on mobile */
    .hero .container {
        width: 100%;
        padding: 0 15px;
        max-width: none;
        margin: 0;
    }

    /* Better card spacing */
    .game-card-modern,
    .news-card,
    .feature-card,
    .process-item {
        padding: 25px 20px;
    }

    /* Improve spacing in grid layouts */
    .grid-container,
    .features-grid,
    .process-grid,
    .advisors-grid,
    .news-grid,
    .games-showcase {
        gap: 15px;
    }

    /* FAQ improvements */
    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h4 {
        font-size: 0.95rem;
        padding-right: 30px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    /* Payment methods optimization */
    .payment-item {
        padding: 15px;
    }

    .payment-item span {
        font-size: 0.85rem;
    }

    /* Winners section */
    .winner-card {
        min-width: 240px;
        padding: 12px 15px;
    }

    .winner-avatar {
        width: 40px;
        height: 40px;
    }

    /* Stats bar improvements */
    .stats-number {
        font-size: 1.8rem;
    }

    .stats-label {
        font-size: 0.8rem;
    }

    /* Navigation improvements */
    .mobile-menu-toggle {
        width: 30px;
        height: 22px;
    }

    /* Footer improvements */
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .copyright {
        font-size: 0.8rem;
    }

    /* Newsletter form */
    .newsletter-form input {
        padding: 15px 20px;
    }

    .btn-subscribe {
        padding: 15px 25px;
    }
}

/* Small Mobile Optimizations (480px and below) */
@media (max-width: 480px) {
    /* Further reduce padding */
    section {
        padding: 50px 0;
    }

    .container {
        width: 94%;
        padding: 0 3%;
    }

    /* Hero optimizations - full width */
    .hero {
        padding: 130px 0 60px;
    }

    .hero .container {
        width: 100%;
        padding: 0 12px;
        max-width: none;
        margin: 0;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    /* Card optimizations */
    .game-card-modern,
    .news-card,
    .feature-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Process section */
    .process-number {
        font-size: 2.5rem;
    }

    .process-title {
        font-size: 1.1rem;
    }

    /* Testimonials */
    .testimonial-quote {
        padding: 25px 20px;
        font-size: 1rem;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
    }

    /* Games showcase */
    .game-thumbnail {
        height: 160px;
    }

    .game-info {
        padding: 12px;
    }

    .game-name {
        font-size: 0.9rem;
    }

    /* Payment grid */
    .payment-grid {
        gap: 8px;
    }

    .payment-item {
        flex: 0 0 calc(50% - 4px);
        padding: 12px 10px;
        min-width: auto;
    }

    .payment-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    /* FAQ items */
    .faq-item {
        border-radius: 10px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h4 {
        font-size: 0.9rem;
    }

    /* Social links */
    .social-link {
        width: 38px;
        height: 38px;
    }

    /* Badges */
    .license-badge {
        padding: 12px 15px;
    }

    .badge-icon {
        width: 38px;
        height: 38px;
    }

    /* Newsletter */
    .newsletter-text h3 {
        font-size: 1.3rem;
    }

    .newsletter-text p {
        font-size: 0.9rem;
    }

    /* Mobile bottom bar adjustments */
    .mobile-bottom-bar {
        padding: 8px 10px;
    }

    .mobile-bottom-bar a {
        padding: 10px 0;
        font-size: 0.8rem;
    }
}

/* Landscape mode optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

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

    section {
        padding: 50px 0;
    }

    .mobile-bottom-bar {
        display: none;
    }
}

/* High-DPI mobile screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    @media (max-width: 768px) {
        .hero-title,
        .section-title {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
    }
}

/* Safe area insets for notched phones */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .container {
            padding-left: max(4%, env(safe-area-inset-left));
            padding-right: max(4%, env(safe-area-inset-right));
        }

        .mobile-bottom-bar {
            padding-bottom: max(10px, env(safe-area-inset-bottom));
        }
    }
}
