.section {
    padding: 0 15px 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    margin-top: 15px;
    padding: 0 5px;
}

.section-title {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.title-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    margin-right: 12px;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    transform: rotate(45deg);
}

.view-all {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.view-all:hover {
    opacity: 1;
    text-shadow: 0 0 8px var(--color-primary);
}

/* Games Vertical List - Modernized */
.vertical-games {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--glass-border), transparent, var(--glass-border));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 255, 0.1);
}

.game-card-top {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.domain-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
}

.game-card-domain {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.game-card:hover .game-card-image {
    transform: scale(1.08);
}

.game-card-info {
    padding: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--color-secondary);
}

.game-card-actions {
    display: flex;
    gap: 12px;
    padding: 0 18px 18px;
}

.btn-card {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-card.visite {
    background: var(--color-primary);
    color: #000;
    border: none;
}

.btn-card.visite:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.btn-card.contato {
    background: var(--glass);
    color: var(--color-white);
    border: 1px solid var(--glass-border);
}

.btn-card.contato:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* Wins Table - Cyberpunk Data Style */
.wins-table-wrapper {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.wins-table-wrapper::before {
    content: 'LIVE DATA';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 10px;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.3;
}

.wins-table {
    width: 100%;
    border-collapse: collapse;
}

.wins-table th {
    color: var(--color-text-dim);
    text-align: left;
    padding: 15px 10px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--glass-border);
}

.wins-table td {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--color-muted);
    font-size: 14px;
}

.wins-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: var(--color-white);
}

.wins-table tr:last-child td {
    border-bottom: none;
}

.wins-table td:nth-child(2) {
    color: var(--color-white);
    font-weight: 700;
}

.val-lucro {
    color: var(--color-success) !important;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace; /* Optional techno font */
}

.table-game-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Small Games Grid */
.small-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.small-game {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    background: var(--bg-card);
    display: block;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.small-game:hover {
    transform: scale(1.1) rotate(2deg);
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2);
    z-index: 10;
}

.small-game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Links List */
.links-box {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 10px 25px;
    border: 1px solid var(--glass-border);
}

.link-row {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.link-row:last-child {
    border-bottom: none;
}

.link-text {
    flex: 1;
    color: var(--color-white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-text:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

/* Latest News */
.latest-news {
    background: linear-gradient(to bottom, transparent, rgba(112, 0, 255, 0.05));
    padding: 60px 15px;
}

.section-prefix {
    font-size: 12px;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px !important;
}

.latest-news .section-title {
    font-size: 36px;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #fff 0%, var(--color-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-grid.modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.news-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.news-card img {
    height: 220px;
}

.news-content {
    padding: 25px;
    background: transparent;
}

.news-date {
    background: rgba(0, 242, 255, 0.1);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 15px;
}

.news-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

/* Trust Strip */
.trust-strip {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.trust-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    min-width: max-content;
    padding: 0 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-muted);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
    color: var(--color-white);
}

.trust-item i {
    font-size: 24px;
    color: var(--color-primary);
}

.trust-item img {
    height: 20px;
    filter: grayscale(1) brightness(2);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    transform: scale(1.02);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(112, 0, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
    box-shadow: inset 0 0 15px rgba(0, 242, 255, 0.1);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--color-muted);
    font-weight: 600;
}

/* VIP Hierarchy */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.vip-card {
    height: 140px;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    background: #111;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vip-card:hover::before {
    opacity: 1;
}

.vip-card:hover {
    transform: translateY(-5px);
}

.vip-badge {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    z-index: 2;
}

.vip-perks {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.vip-card.bronze { border-color: #cd7f32; background: linear-gradient(135deg, #2a1810, #0a0b10); }
.vip-card.bronze .vip-badge { color: #cd7f32; }

.vip-card.silver { border-color: #c0c0c0; background: linear-gradient(135deg, #1f2025, #0a0b10); }
.vip-card.silver .vip-badge { color: #c0c0c0; }

.vip-card.gold { border-color: #ffd700; background: linear-gradient(135deg, #302b10, #0a0b10); }
.vip-card.gold .vip-badge { color: #ffd700; }

.vip-card.platinum { border-color: #e5e4e2; background: linear-gradient(135deg, #222b35, #0a0b10); }
.vip-card.platinum .vip-badge { color: #00f2ff; text-shadow: 0 0 10px rgba(0, 242, 255, 0.5); }

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--color-white);
    cursor: pointer;
    font-size: 15px;
}

.faq-question i {
    font-size: 12px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
    display: none;
}

.faq-item.active {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Tag New */
.tag-new {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #000;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 900;
}

/* Footer Promo */
.footer-promo {
    margin: 40px 15px;
    background: linear-gradient(135deg, var(--bg-card), #1a1b2e);
    border-radius: 28px;
    padding: 40px 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.footer-promo h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-transform: none;
}

/* Testimonials Section */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(0, 242, 255, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 80px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    opacity: 0.1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    font-size: 18px;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-white);
    font-size: 16px;
}

.testimonial-win {
    color: var(--color-success);
    font-size: 13px;
    font-weight: 800;
}

.testimonial-text {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

/* Providers */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.provider-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 13px;
    color: var(--color-muted);
    transition: all 0.3s ease;
}

.provider-card:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.provider-card i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--color-primary);
}

/* App Download Banners */
.app-download-banner {
    background: linear-gradient(135deg, #0f111a 0%, #1a1525 100%);
    border: 1px solid var(--color-accent);
    border-radius: 24px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(112, 0, 255, 0.2);
}

.app-download-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    pointer-events: none;
}

.app-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 15px;
}

.app-title span {
    color: var(--color-primary);
}

.app-desc {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 400px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 2;
}

.btn-app {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-app i {
    font-size: 24px;
}

.btn-app:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 32px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--color-primary);
    opacity: 0.2;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.15), rgba(112, 0, 255, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 8px 0;
}

.step-desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}

/* Promos Grid */
.promos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    display: block;
    transition: all 0.4s ease;
}

.promo-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(112, 0, 255, 0.2);
}

.promo-card.promo-featured {
    border-color: rgba(0, 242, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), transparent);
}

.promo-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 8px;
    margin-bottom: 12px;
    background: var(--color-primary);
    color: #000;
}

.promo-card.promo-featured .promo-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.promo-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 6px 0;
}

.promo-card p {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0 0 16px 0;
}

.promo-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.promo-card:hover .promo-cta {
    color: var(--color-white);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.benefit-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-primary);
}

.benefit-card i {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 8px 0;
}

.benefit-card p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}

/* Licenses Grid */
.licenses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.license-badge {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-muted);
    transition: all 0.3s ease;
}

.license-badge:hover {
    color: var(--color-white);
    border-color: var(--color-primary);
}

.license-badge i {
    font-size: 24px;
    color: var(--color-primary);
}

/* Responsible Gaming Box */
.responsible-gaming-box {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.08), transparent);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
}

.rg-icon {
    font-size: 40px;
    color: var(--color-warning);
    margin-bottom: 12px;
}

.responsible-gaming-box h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 12px 0;
}

.responsible-gaming-box p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.rg-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-warning);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rg-link:hover {
    color: var(--color-white);
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, var(--bg-card), #1a1525);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-content h3 i {
    color: var(--color-primary);
}

.newsletter-content p {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0 0 20px 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: var(--color-white);
    font-size: 15px;
}

.newsletter-form input::placeholder {
    color: var(--color-text-dim);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-newsletter {
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #000;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 242, 255, 0.3);
}

/* Desktop Responsiveness */
@media (min-width: 768px) {
    .vertical-games {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .small-games-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .news-grid.modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vip-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .providers-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .licenses-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .newsletter-form {
        flex-direction: row;
        max-width: 500px;
    }

    .newsletter-form input {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .vertical-games {
        grid-template-columns: repeat(4, 1fr);
    }

    .small-games-grid {
        grid-template-columns: repeat(10, 1fr);
    }

    .news-grid.modern-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
