.section {
    padding: 0 10px 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 10px;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-yellow);
}

.title-dot {
    width: 8px;
    height: 8px;
    background-color: #ff9800;
    /* Orange dot matching screenshot */
    border-radius: 50%;
    margin-right: 10px;
}

.view-all {
    color: #e5ccb3;
    font-size: 13px;
    font-weight: 500;
}

.view-all:hover {
    color: var(--color-yellow);
}

/* Games Vertical List */
.vertical-games {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.game-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 215, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.game-card-top {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    gap: 12px;
    background: linear-gradient(90deg, rgba(255,215,0,0.05) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.domain-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
}

.game-card-domain {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.3px;
}

.game-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .game-card-image {
    transform: scale(1.08);
}

.game-card-info {
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-yellow), #ff9800);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.game-card-actions {
    display: flex;
    gap: 12px;
    padding: 0 18px 18px;
}

.btn-card {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-card.visite {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    color: var(--color-yellow);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.btn-card.visite:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-card.contato {
    background: linear-gradient(135deg, var(--color-green), #2e993c);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 15px rgba(66, 209, 82, 0.2);
}

.btn-card.contato:hover {
    background: linear-gradient(135deg, #4de05d, #36b844);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 209, 82, 0.3);
}

/* Wins Table */
.wins-table-wrapper {
    background: linear-gradient(145deg, var(--bg-card) 0%, #341f13 100%);
    border-radius: 16px;
    padding: 15px 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.wins-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.wins-table th {
    color: #b09d8d;
    text-align: left;
    padding: 14px 10px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wins-table td {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--color-muted);
    transition: background-color 0.2s;
}

.wins-table tr:hover td {
    background-color: rgba(255,255,255,0.02);
}

.wins-table tr:last-child td {
    border-bottom: none;
}

.wins-table td:nth-child(2) {
    color: var(--color-white);
    font-weight: 600;
}

.val-lucro {
    color: var(--color-green) !important;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(66,209,82,0.2);
}

.table-game-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Small Games Grid */
.small-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.small-game {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    display: block;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.small-game:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px rgba(255,215,0,0.08);
    border-color: rgba(255,215,0,0.15);
}

.small-game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.small-game:hover img {
    transform: scale(1.1);
}

/* Links List */
.links-box {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 5px 20px;
}

.link-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.link-row:last-child {
    border-bottom: none;
}

.link-text {
    flex: 1;
    color: var(--color-white);
    font-weight: 500;
}

.link-text:hover {
    color: var(--color-yellow);
}

/* Latest News Feature Section */
.pb-5 {
    padding-bottom: 48px !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.align-items-center {
    align-items: center !important;
}

.text-center {
    text-align: center !important;
}

.text-white {
    color: #ffffff !important;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.m-0 {
    margin: 0 !important;
}

.border-0 {
    border: none !important;
}

.latest-news {
    padding: 0 10px;
}

.section-prefix {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.latest-news .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: none;
    font-weight: 800;
}

.news-grid.modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 15px;
}

.news-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 214, 0, 0.2);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
    background: var(--bg-card);
    position: relative;
    z-index: 2;
}

.news-date {
    font-size: 11px;
    color: var(--color-yellow);
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content h3 a {
    color: var(--color-white);
    transition: color 0.2s;
}

.news-content h3 a:hover {
    color: var(--color-yellow);
}

.news-content p {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-new {
    background-color: var(--color-green);
    color: var(--color-white);
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: bold;
}

/* Footer Box */
.footer-promo {
    margin: 20px 10px;
    background: linear-gradient(135deg, var(--bg-card) 0%, #382315 50%, var(--bg-card) 100%);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    border: 2px solid rgba(255, 214, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 40px rgba(255,215,0,0.05);
    position: relative;
    overflow: hidden;
}

.footer-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
}

.footer-promo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 60px rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.3);
}

.footer-promo img {
    height: 60px;
    margin-bottom: 5px;
}

.footer-promo h3 {
    margin: 0;
    font-size: 22px;
    color: var(--color-yellow);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255,215,0,0.2);
    letter-spacing: 0.5px;
}

.footer-promo p {
    margin: 0;
    font-size: 15px;
    color: var(--color-muted);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    border-color: rgba(255,215,0,0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,152,0,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-yellow);
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--color-white);
}

.feature-desc {
    font-size: 13px;
    margin: 0;
    color: var(--color-muted);
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255,215,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid rgba(255,215,0,0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0 0 15px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: var(--color-white);
}

.testimonial-rating {
    color: var(--color-yellow);
    font-size: 14px;
}

/* Promotions Section */
.promos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.promo-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255,215,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    border-color: rgba(255,215,0,0.3);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--color-yellow), #ff9800);
    color: #111;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
}

.promo-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--color-white);
}

.promo-desc {
    font-size: 14px;
    margin: 0 0 20px;
    color: var(--color-muted);
}

.btn-promo {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--color-yellow), #e5be00);
    color: #111;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.3);
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.step-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255,215,0,0.05);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--color-yellow), #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--color-white);
}

.step-desc {
    font-size: 14px;
    margin: 0;
    color: var(--color-muted);
    line-height: 1.5;
}

/* Desktop Responsiveness - New Sections */
@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Responsiveness - Full Width */
@media (min-width: 576px) {
    .small-games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .vertical-games {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .game-card-image {
        height: 180px;
    }

    .small-games-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }

    .section {
        padding: 0 40px 30px;
    }

    .banner-wrapper {
        padding: 20px 40px;
    }

    .banner-wrapper img {
        height: 100px;
        /*object-fit: cover;*/
    }

    .wins-table-wrapper {
        padding: 15px 20px 20px;
    }

    .wins-table {
        font-size: 14px;
    }

    .wins-table th {
        font-size: 13px;
        padding: 15px 10px;
    }

    .wins-table td {
        padding: 15px 10px;
    }

    .footer-promo {
        margin: 30px 40px;
        padding: 30px;
    }

    .footer-promo h3 {
        font-size: 22px;
    }

    .footer-promo p {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .vertical-games {
        grid-template-columns: repeat(3, 1fr);
    }

    .small-games-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .section {
        padding: 0 50px 40px;
    }

    .banner-wrapper {
        padding: 20px 50px;
    }

    .game-card-image {
        height: 200px;
    }

    .wins-table {
        font-size: 15px;
    }

    .wins-table th {
        font-size: 14px;
        padding: 18px 12px;
    }

    .wins-table td {
        padding: 18px 12px;
    }

    .table-game-icon {
        width: 40px;
        height: 40px;
    }

    .footer-promo {
        margin: 40px 50px;
    }
}

@media (min-width: 1200px) {
    .vertical-games {
        grid-template-columns: repeat(4, 1fr);
    }

    .small-games-grid {
        grid-template-columns: repeat(10, 1fr);
    }

    .game-card-image {
        height: 220px;
    }
}

/* Game Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.category-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-yellow);
}

.category-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--color-white);
}

.category-desc {
    font-size: 12px;
    margin: 0;
    color: var(--color-muted);
}

/* VIP Membership Section */
.vip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.vip-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.vip-card.featured {
    border-color: var(--color-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.vip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.vip-card.featured:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);
}

.vip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.vip-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
    color: white;
}

.vip-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: #111;
}

.vip-badge.gold {
    background: linear-gradient(135deg, var(--color-yellow), #ff9800);
    color: #111;
}

.vip-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-yellow);
}

.vip-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 15px;
    color: var(--color-white);
    text-align: center;
}

.vip-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-benefits li {
    padding: 8px 0;
    color: var(--color-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-benefits li i {
    color: var(--color-green);
    font-size: 12px;
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 15px;
    color: var(--color-white);
    font-weight: 600;
}

.faq-question i {
    color: var(--color-yellow);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-answer p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Payment Methods Section */
.payments-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.payment-method {
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 215, 0, 0.15);
}

.payment-method i {
    font-size: 28px;
    color: var(--color-yellow);
}

.payment-method span {
    font-size: 12px;
    color: var(--color-white);
    font-weight: 500;
}

/* Partners Section */
.partners-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.partner-logo {
    background: linear-gradient(145deg, var(--bg-card) 0%, #362015 100%);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 215, 0, 0.15);
}

.partner-logo i {
    font-size: 32px;
    color: var(--color-yellow);
}

.partner-logo span {
    font-size: 12px;
    color: var(--color-white);
    font-weight: 500;
}

/* Responsive Styles for New Sections */
@media (min-width: 576px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .payments-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
    .partners-wrapper {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .payments-wrapper {
        grid-template-columns: repeat(8, 1fr);
    }
    .partners-wrapper {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}