/* Hero Section - Editorial split layout */
.hero {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-main) 100%);
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-content {
    padding: 4rem 5% 4rem 10%;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero h1::before {
    content: '—';
    display: block;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(199, 91, 57, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(199, 91, 57, 0.25);
}

.btn-primary:hover::after {
    transform: translateX(4px);
}

/* Feature Grid - Elegant masonry style */
.game-features {
    padding: 6rem 0;
    background: var(--bg-card);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.game-card {
    background: var(--bg-main);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow);
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 1.75rem;
}

.game-info h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.game-info p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btn-outline {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Latest News - Modern Magazine Layout */
.latest-news {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-main) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.news-grid .news-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.news-card .image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-card:first-child .image-wrapper {
    aspect-ratio: 16/12;
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover img {
    transform: scale(1.08);
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card:first-child .news-content {
    padding: 1.75rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.news-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(199, 91, 57, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.news-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 600;
}

.news-card:first-child .news-content h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.news-content h3 a {
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: var(--primary);
}

.news-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
}

.news-card:first-child .news-content p {
    font-size: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

.read-more svg {
    width: 16px;
    height: 16px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(199, 91, 57, 0.12);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Stats Section - Impressive numbers showcase */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Popular Section - Magazine-style ranked list */
.popular-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.popular-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-main);
    padding: 1.25rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.popular-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 24px var(--shadow);
    border-color: var(--accent);
}

.popular-rank {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    min-width: 50px;
    text-align: center;
}

.popular-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-content {
    flex: 1;
    min-width: 0;
}

.popular-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.popular-content h3 a {
    transition: color 0.3s ease;
}

.popular-content h3 a:hover {
    color: var(--primary);
}

.popular-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.popular-views {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Testimonials Section - Card carousel style */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-main) 50%, var(--bg-cream) 100%);
    position: relative;
}

.testimonials-section::before {
    content: '"';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15rem;
    color: var(--border);
    position: absolute;
    top: -2rem;
    left: 5%;
    line-height: 1;
    opacity: 0.5;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px var(--shadow);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Partners Section - Logo showcase */
.partners-section {
    padding: 5rem 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    min-width: 120px;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(199, 91, 57, 0.15);
    transform: translateY(-3px);
}

/* FAQ Section - Clean accordion */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span {
    padding-right: 1rem;
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 1rem;
}

/* Newsletter Section - Elegant subscription box */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: box-shadow 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--text-dark);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #1a1816;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive - Consolidated and Optimized */

/* Tablet and smaller screens */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .newsletter-box {
        gap: 2rem;
        padding: 2.5rem;
    }

    /* News grid - 3 columns on tablet */
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .news-grid .news-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Mid-tablet - 2-col news grid for better density */
@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .news-grid .news-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .news-card .image-wrapper {
        aspect-ratio: 16/9;
    }
}

/* Mobile landscape and smaller */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 3rem 5%;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero h1::before {
        margin-left: auto;
        margin-right: auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }

    .popular-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .partners-logos {
        gap: 1rem;
    }

    .partner-logo {
        min-width: 100px;
        padding: 0.75rem 1.25rem;
    }

    .cta-content h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }
}

/* Mobile portrait - Enhanced */
@media (max-width: 768px) {
    /* Fluid spacing for all sections */
    .hero,
    .game-features,
    .benefits-section,
    .stats-section,
    .popular-section,
    .testimonials-section,
    .faq-section,
    .latest-news,
    .newsletter-section,
    .cta-banner {
        padding: 2.5rem 0;
    }

    /* Section titles */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    /* Single column layouts */
    .grid-container,
    .benefits-grid,
    .popular-grid,
    .testimonials-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Stats - 2x2 grid with no dividers */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.75rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-number {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    /* Game cards - Enhanced mobile */
    .game-card {
        min-height: 280px;
    }

    .game-card img {
        height: 160px;
    }

    .game-info {
        padding: 1.25rem;
    }

    .game-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .game-info p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .btn-outline {
        min-height: 44px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Benefit cards */
    .benefit-card {
        padding: 1.5rem;
        text-align: center;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 1rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    /* Popular cards - Enhanced mobile */
    .popular-card {
        flex-direction: row;
        padding: 1rem;
        gap: 1rem;
        min-height: 100px;
    }

    .popular-card img {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .popular-content {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .popular-content h3 {
        font-size: 1rem;
        line-height: 1.4;
        margin: 0;
    }

    .popular-content h3 a {
        display: block;
        padding: 0.5rem 0;
        min-height: 44px;
    }

    /* Testimonials */
    .testimonials-section::before {
        font-size: 6rem;
        top: 0.5rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-stars {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    /* FAQ */
    .faq-list {
        padding: 0 0.5rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 0;
        min-height: 52px;
    }

    .faq-question span {
        padding-right: 0.5rem;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 3rem 0;
    }

    .newsletter-box {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .newsletter-content h2 {
        font-size: 1.75rem;
    }

    .newsletter-content p {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-height: 48px;
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevent iOS zoom */
    }

    /* CTA Banner */
    .cta-banner {
        padding: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Partners */
    .partners-logos {
        gap: 0.75rem;
    }

    .partner-logo {
        min-width: 90px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* Buttons - Full width on mobile */
    .btn-primary,
    .btn-outline,
    .btn-large {
        width: 100%;
        min-height: 52px;
        justify-content: center;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

    /* Ads */
    .ad-container {
        margin: 1.5rem auto;
    }

    .ad-container img {
        height: 80px !important;
        object-fit: cover;
    }
}

/* Small mobile - Extra small screens */
@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 4%;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 1rem;
    }

    .hero h1::before {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.35rem;
        padding-bottom: 0.75rem;
    }

    .section-title::after {
        width: 40px;
        height: 2px;
    }

    .game-card img,
    .news-card img {
        height: 150px;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
    }

    /* Popular - Stack vertically on very small screens */
    .popular-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .popular-rank {
        font-size: 1.5rem;
    }

    .popular-card img {
        width: 100%;
        height: 120px;
    }

    .popular-content h3 {
        font-size: 0.9rem;
    }

    .popular-meta {
        justify-content: center;
    }

    /* Stats */
    .stats-section {
        padding: 2rem 0;
    }

    .stats-grid {
        gap: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Testimonials */
    .testimonials-section::before {
        font-size: 5rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .author-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .author-info strong {
        font-size: 0.85rem;
    }

    /* Partners */
    .partner-logo {
        min-width: 80px;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .partners-logos {
        gap: 0.5rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: 0.875rem 0;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 1.35rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    /* Newsletter */
    .newsletter-content h2 {
        font-size: 1.5rem;
    }

    .newsletter-content p {
        font-size: 0.9rem;
    }

    .ad-container {
        margin: 1rem auto;
    }
}

/* Extra small mobile */
@media (max-width: 360px) {
    .hero-content {
        padding: 1.5rem 3%;
    }

    .hero h1 {
        font-size: 1.35rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .partner-logo {
        min-width: 70px;
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-main) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--border), transparent);
}

.step-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -1.5rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(199, 91, 57, 0.1);
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Featured Categories Section */
.featured-categories {
    padding: 6rem 0;
    background: var(--bg-main);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(45, 41, 38, 0.9));
    color: #fff;
    transition: padding 0.3s ease;
}

.category-card:hover .category-overlay {
    padding-bottom: 2rem;
}

.category-overlay h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.category-count {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .steps-grid {
        gap: 2rem;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 3rem 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .trust-section {
        padding: 2rem 0;
    }

    .trust-grid {
        gap: 1rem;
    }

    .trust-item {
        padding: 0.6rem 1rem;
    }

    .trust-icon {
        width: 20px;
        height: 20px;
    }

    .trust-item span {
        font-size: 0.8rem;
    }

    .featured-categories {
        padding: 3rem 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-overlay {
        padding: 1rem;
    }

    .category-overlay h3 {
        font-size: 1rem;
    }

    .category-count {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        gap: 1rem;
    }

    .step-card {
        padding: 1rem;
    }

    .step-number {
        font-size: 2.5rem;
        margin-bottom: -1rem;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-card {
        aspect-ratio: 16/9;
        min-height: 140px;
    }

    .category-overlay {
        padding: 1rem;
        background: linear-gradient(transparent, rgba(30, 30, 40, 0.95));
    }

    .category-card:hover .category-overlay {
        padding-bottom: 1rem;
    }

    .category-overlay h3 {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .category-count {
        font-size: 0.8rem;
        display: block;
        margin-top: 0.25rem;
    }

    .btn-category {
        display: inline-block;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin-top: 0.5rem;
        background: var(--primary);
        color: #fff;
        border-radius: 6px;
        text-decoration: none;
        min-height: 36px;
        line-height: 1;
    }
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    min-width: 120px;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(199, 91, 57, 0.15);
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-main) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-body);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--bg-main);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(199, 91, 57, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Responsive for Partners and Contact */
@media (max-width: 1024px) {
    .contact-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }

    .partners-logos {
        gap: 1rem;
    }

    .partner-logo {
        min-width: 100px;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .partner-logo {
        min-width: 80px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .partners-logos {
        gap: 0.75rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1rem;
    }
}

/* Mobile Fixed Footer */
.mobile-fixed-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(30, 30, 40, 0.98) 0%, rgba(20, 20, 30, 0.99) 100%);
    padding: 0.875rem 1rem;
    gap: 0.875rem;
    z-index: 999;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-entrar,
.btn-cadastrar {
    flex: 1;
    min-height: 48px;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-entrar {
    background: linear-gradient(135deg, #007bff 0%, #0056d6 100%);
    color: #fff;
}

.btn-entrar:hover,
.btn-entrar:active {
    background: linear-gradient(135deg, #0056d6 0%, #004494 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.35);
}

.btn-cadastrar {
    background: linear-gradient(135deg, #28a745 0%, #1e8a3a 100%);
    color: #fff;
}

.btn-cadastrar:hover,
.btn-cadastrar:active {
    background: linear-gradient(135deg, #1e8a3a 0%, #166b2e 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.35);
}

@media (max-width: 768px) {
    .mobile-fixed-footer {
        display: flex;
    }

    /* Add padding to body to prevent content from being hidden behind fixed footer */
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .mobile-fixed-footer {
        padding: 0.75rem 0.875rem;
        gap: 0.625rem;
    }

    .btn-entrar,
    .btn-cadastrar {
        min-height: 44px;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    body {
        padding-bottom: 72px;
    }
}

@media (max-width: 360px) {
    .mobile-fixed-footer {
        padding: 0.625rem 0.75rem;
        gap: 0.5rem;
    }

    .btn-entrar,
    .btn-cadastrar {
        min-height: 40px;
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
        font-weight: 500;
    }

    body {
        padding-bottom: 64px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}