/* Shared page styles — esporte, bonus, promo, plataforma, jogos, jogo, casino, crash */

.page-hero {
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 2.8em;
    color: #f0c159;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-hero-intro {
    font-size: 1.3em;
    color: #abb8c3;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-image {
    text-align: center;
    margin: 30px 0;
}

.page-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    max-height: 500px;
}

.page-hero-image img.card-img {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-alert {
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.page-alert p {
    font-weight: bold;
    margin: 0;
}

.page-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.page-panel-title {
    color: #f0c159;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.page-panel-subtitle {
    text-align: center;
    color: #abb8c3;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.card-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(240, 193, 89, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.content-card:hover {
    transform: translateY(-10px);
    border-color: #f0c159;
    box-shadow: 0 15px 35px rgba(240, 193, 89, 0.3);
}

.content-card h3 {
    color: #f0c159;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.content-card p {
    color: #abb8c3;
    margin-bottom: 20px;
}

.card-badge::after {
    position: absolute;
    top: 20px;
    right: -35px;
    color: white;
    padding: 5px 45px;
    font-size: 0.8em;
    font-weight: bold;
    transform: rotate(45deg);
}

.card-stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.card-stat {
    text-align: center;
}

.card-stat-number {
    color: #f0c159;
    font-weight: bold;
    font-size: 1.2em;
    display: block;
}

.card-stat-label {
    color: #abb8c3;
    font-size: 0.9em;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.feature-list li {
    color: #abb8c3;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: '✅';
    font-size: 1.2em;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-item h3 {
    color: #f0c159;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.feature-item p {
    color: #abb8c3;
    line-height: 1.6;
}

.gradient-panel {
    border-radius: 20px;
    padding: 40px;
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.prize-item p {
    color: #abb8c3;
}

.prize-icon {
    font-size: 2em;
}

/* Esporte */

.sports-hero {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.15), rgba(240, 193, 89, 0.1));
    border: 2px solid #228B22;
}

.sports-hero .page-hero-image img {
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    border-radius: 25px;
    padding: 10px 20px;
    margin: 20px 0;
    animation: pulse 2s infinite;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.live-label {
    color: #ff0000;
    font-weight: bold;
}

.live-count {
    color: #abb8c3;
}

.sports-alert {
    background: rgba(34, 139, 34, 0.1);
    border: 2px solid #228B22;
}

.sports-alert p {
    color: #228B22;
}

.sport-card.featured {
    border-color: #228B22;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.15), rgba(34, 139, 34, 0.05));
}

.sport-card.featured::after {
    content: 'FAVORITO DO PÚBLICO';
    background: #228B22;
}

.sport-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.match-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    flex-wrap: wrap;
    gap: 15px;
}

.match-card:hover {
    border-color: #f0c159;
    transform: translateX(5px);
}

.match-teams {
    flex: 1;
    min-width: 180px;
}

.match-team {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.team-flag {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
}

.match-score {
    color: #f0c159;
    font-size: 1.5em;
    font-weight: bold;
}

.match-status {
    color: #ff0000;
    font-weight: bold;
}

.odd-button {
    background: rgba(240, 193, 89, 0.2);
    border: 1px solid #f0c159;
    color: #f0c159;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
    margin: 0 5px;
}

.odd-group {
    display: flex;
    gap: 15px;
}

.sports-promo-panel {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1), rgba(240, 193, 89, 0.05));
}

/* Bônus */

.bonus-hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(240, 193, 89, 0.1));
    border: 2px solid #f0c159;
}

.bonus-hero .page-hero-image img {
    box-shadow: 0 20px 40px rgba(240, 193, 89, 0.3);
}

.bonus-alert {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    animation: pulse 2s infinite;
}

.bonus-alert p {
    color: #ff4444;
}

.bonus-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
}

.bonus-card.featured::after {
    content: 'MAIS PROCURADO';
    background: #ffd700;
    color: #000;
    right: -30px;
    padding: 5px 40px;
}

.bonus-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.bonus-title {
    color: #f0c159;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.bonus-amount {
    font-size: 2.5em;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.vip-card {
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.vip-card:hover {
    transform: translateY(-5px);
}

.vip-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid #ffd700;
}

.vip-platinum {
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.2), rgba(229, 228, 226, 0.1));
    border: 2px solid #e5e4e2;
}

.vip-diamond {
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.2), rgba(185, 242, 255, 0.1));
    border: 2px solid #b9f2ff;
}

.tournament-panel {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 105, 0, 0.1));
    border: 2px solid #ff4444;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.tournament-panel h2 {
    color: #ff4444;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.tournament-panel .page-hero-image img {
    width: 400px;
    max-width: 100%;
    box-shadow: 0 10px 25px rgba(255, 68, 68, 0.3);
}

/* Promo */

.promo-hero {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.15), rgba(240, 193, 89, 0.1));
    border: 2px solid #ff6900;
}

.promo-hero .page-hero-image img {
    box-shadow: 0 20px 40px rgba(255, 105, 0, 0.3);
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 105, 0, 0.2);
    border: 2px solid #ff6900;
    border-radius: 25px;
    padding: 15px 30px;
    margin: 20px 0;
    animation: pulse 2s infinite;
}

.countdown-item {
    text-align: center;
    color: #ff6900;
}

.countdown-number {
    font-size: 2em;
    font-weight: bold;
    display: block;
}

.countdown-label {
    font-size: 0.8em;
    text-transform: uppercase;
}

.countdown-sep {
    color: #ff6900;
    font-size: 2em;
}

.promo-alert {
    background: rgba(255, 105, 0, 0.1);
    border: 2px solid #ff6900;
}

.promo-alert p {
    color: #ff6900;
}

.promo-card.hot {
    border-color: #ff6900;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.15), rgba(255, 105, 0, 0.05));
}

.promo-card.hot::after {
    content: 'OFERTA QUENTE';
    background: #ff6900;
}

.promo-card.limited::after {
    content: 'TEMPO LIMITADO';
    background: #ff0000;
    right: -40px;
    padding: 5px 50px;
}

.promo-value {
    background: linear-gradient(135deg, #ff6900, #f0c159);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.5em;
    display: inline-block;
    margin: 20px 0;
}

.promo-requirements {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.promo-requirements h4 {
    color: #f0c159;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.promo-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-requirements li {
    color: #abb8c3;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-requirements li::before {
    content: '✓';
    color: #00d084;
    font-weight: bold;
}

.tournament-row {
    margin-bottom: 25px;
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.tournament-name {
    color: #f0c159;
    font-weight: bold;
    font-size: 1.4em;
}

.tournament-prize {
    background: linear-gradient(135deg, #ff6900, #f0c159);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #f0c159, #ff6900);
    border-radius: 5px;
}

.tournament-meta {
    display: flex;
    justify-content: space-between;
    color: #abb8c3;
    font-size: 0.9em;
    flex-wrap: wrap;
    gap: 10px;
}

.cashback-panel {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.1), rgba(0, 208, 132, 0.05));
}

.cashback-panel .page-hero-image img {
    box-shadow: 0 10px 25px rgba(0, 208, 132, 0.3);
}

.stat-card-green {
    border-color: rgba(0, 208, 132, 0.3);
}

.stat-card-green .stat-number {
    color: #00d084;
}

.limited-title {
    color: #ff0000;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.limited-offer {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    animation: pulse 3s infinite;
}

.limited-offer h3 {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.limited-offer p {
    color: #abb8c3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.limited-badge {
    background: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

.exclusive-image img {
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

/* Plataforma */

.platform-hero {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15), rgba(240, 193, 89, 0.1));
    border: 2px solid #007bff;
}

.platform-hero::before {
    content: '⚙️💻🔧';
    position: absolute;
    top: 20px;
    right: -100px;
    font-size: 8em;
    opacity: 0.1;
    animation: rotate 20s infinite linear;
}

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

.platform-hero .page-hero-image img {
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.3);
}

.tech-stats {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    background: rgba(0, 123, 255, 0.2);
    border: 2px solid #007bff;
    border-radius: 25px;
    padding: 15px 30px;
    margin: 20px 0;
    animation: pulse 2s infinite;
}

.tech-stat {
    text-align: center;
    color: #007bff;
}

.tech-stat-number {
    font-size: 1.8em;
    font-weight: bold;
    display: block;
}

.tech-stat-label {
    font-size: 0.9em;
    text-transform: uppercase;
}

.platform-alert {
    background: rgba(0, 123, 255, 0.1);
    border: 2px solid #007bff;
}

.platform-alert p {
    color: #007bff;
}

.platform-card.featured {
    border-color: #007bff;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15), rgba(0, 123, 255, 0.05));
}

.platform-card.featured::after {
    content: 'TECNOLOGIA AVANÇADA';
    background: #007bff;
    right: -45px;
    padding: 5px 55px;
}

.platform-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.platform-specs {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.platform-specs h4 {
    color: #f0c159;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.platform-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-specs li {
    color: #abb8c3;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-specs li::before {
    content: '⚡';
    color: #007bff;
    font-weight: bold;
}

.security-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.security-feature {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.security-feature:hover {
    border-color: #00d084;
    transform: translateY(-5px);
}

.security-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
    color: #00d084;
}

.security-title {
    color: #00d084;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.security-description {
    color: #abb8c3;
    line-height: 1.6;
}

.performance-panel {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
}

.performance-panel .page-hero-image img {
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.metric-card:hover {
    border-color: #007bff;
    transform: translateY(-5px);
}

.metric-value {
    color: #007bff;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.metric-label {
    color: #abb8c3;
    font-size: 0.9em;
    text-transform: uppercase;
}

.metric-description {
    color: #abb8c3;
    font-size: 0.8em;
    margin-top: 10px;
}

.support-section {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(240, 193, 89, 0.05));
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.support-channel {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 123, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.support-channel:hover {
    border-color: #007bff;
    transform: translateY(-5px);
}

.support-channel.priority {
    border-color: #f0c159;
    background: linear-gradient(135deg, rgba(240, 193, 89, 0.15), rgba(240, 193, 89, 0.05));
}

.channel-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
    color: #007bff;
}

.channel-icon.priority {
    color: #f0c159;
}

.channel-title {
    color: #007bff;
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.channel-title.priority {
    color: #f0c159;
}

.channel-info {
    color: #abb8c3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.channel-status {
    background: #00d084;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
    display: inline-block;
}

.innovation-timeline {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.timeline-date {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: bold;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.timeline-title {
    color: #f0c159;
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.timeline-description {
    color: #abb8c3;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 20px;
    }

    .page-hero h1 {
        font-size: 2em;
    }

    .card-grid,
    .card-grid-wide {
        grid-template-columns: 1fr;
    }

    .match-card {
        flex-direction: column;
        text-align: center;
    }

    .tech-stats {
        flex-direction: column;
        gap: 15px;
    }

    .countdown-timer {
        flex-direction: column;
        gap: 10px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-date {
        min-width: auto;
    }

    .tournament-header {
        flex-direction: column;
        text-align: center;
    }

    .tournament-meta {
        flex-direction: column;
        text-align: center;
    }

    .game-hero {
        grid-template-columns: 1fr;
    }

    .game-categories,
    .casino-games,
    .crash-games {
        grid-template-columns: 1fr;
    }

    .table-grid,
    .dealers-grid {
        grid-template-columns: 1fr;
    }

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

    .game-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-hero,
    .casino-hero,
    .crash-hero {
        padding: 40px 20px;
    }

    .games-hero h1,
    .casino-hero h1,
    .crash-hero h1 {
        font-size: 2em;
    }
}

/* ===== JOGOS ===== */

.games-hero {
    background: linear-gradient(135deg, rgba(240, 193, 89, 0.1), rgba(255, 105, 0, 0.05));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
}

.games-hero h1 {
    font-size: 2.8em;
    color: #f0c159;
    margin-bottom: 20px;
    font-weight: bold;
}

.games-hero-intro {
    font-size: 1.3em;
    color: #abb8c3;
    margin-bottom: 30px;
}

.search-bar {
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    border: 2px solid rgba(240, 193, 89, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1em;
}

.search-bar input:focus {
    outline: none;
    border-color: #f0c159;
}

.search-bar input::placeholder {
    color: #abb8c3;
}

.search-bar button,
.search-bar .search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #f0c159;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.game-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.filter-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(240, 193, 89, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 0.95em;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f0c159;
    color: #141416;
    border-color: #f0c159;
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(240, 193, 89, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #f0c159;
    box-shadow: 0 15px 35px rgba(240, 193, 89, 0.3);
}

.category-image {
    text-align: center;
    margin-bottom: 20px;
}

.category-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.category-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.category-title {
    color: #f0c159;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.category-count {
    font-size: 1.2em;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 15px;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.category-features li {
    color: #abb8c3;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-features li::before {
    content: '🎯';
    font-size: 1.2em;
}

.popular-games {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #f0c159;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.game-card .game-title {
    color: #f0c159;
    font-weight: bold;
    margin-bottom: 10px;
}

.game-thumbnail {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #f0c159, #ff6900);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    margin-bottom: 15px;
}

.game-provider {
    color: #abb8c3;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.game-rtp {
    background: rgba(0, 208, 132, 0.2);
    color: #00d084;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.game-jackpot {
    color: #ffd700;
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.providers-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
}

.providers-title {
    color: #f0c159;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.provider-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.provider-card:hover {
    border-color: #f0c159;
    transform: translateY(-5px);
}

.provider-card h3 {
    color: #f0c159;
    margin-bottom: 10px;
}

.provider-card p {
    color: #abb8c3;
    font-size: 0.9em;
}

.provider-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0c159, #ff6900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5em;
    color: white;
    font-weight: bold;
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* ===== JOGO (single game) ===== */

.breadcrumb {
    color: #abb8c3;
    margin-bottom: 30px;
    font-size: 0.95em;
}

.breadcrumb a {
    color: #f0c159;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.game-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.game-hero .game-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(240, 193, 89, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.game-preview-image {
    text-align: center;
    margin: 20px 0;
}

.game-preview-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(240, 193, 89, 0.3);
}

.play-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.play-btn {
    background: linear-gradient(135deg, #f0c159, #ff6900);
    color: white;
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 193, 89, 0.4);
}

.play-btn.demo {
    background: #00d084;
}

.game-cert-note {
    text-align: center;
    color: #abb8c3;
    font-size: 0.9em;
}

.game-info .game-title {
    font-size: 2.5em;
    color: #f0c159;
    margin-bottom: 10px;
}

.game-subtitle {
    color: #abb8c3;
    font-size: 1.2em;
    margin-bottom: 25px;
}

.jackpot-display {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.jackpot-amount {
    font-size: 2.5em;
    font-weight: bold;
    color: #ffd700;
    display: block;
}

.jackpot-label {
    color: #ffd700;
    font-weight: bold;
    margin: 10px 0 0;
}

.jackpot-updated {
    color: #abb8c3;
    font-size: 0.9em;
    margin: 5px 0 0;
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-item .stat-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #f0c159;
    display: block;
}

.stat-item .stat-label {
    color: #abb8c3;
    font-size: 0.85em;
    text-transform: uppercase;
}

.game-features-title {
    color: #f0c159;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #abb8c3;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.game-description {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
}

.game-description h3 {
    color: #f0c159;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.game-description p {
    color: #abb8c3;
    margin-bottom: 15px;
    line-height: 1.8;
}

.paytable {
    background: rgba(240, 193, 89, 0.05);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
}

.paytable h3 {
    color: #f0c159;
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 30px;
}

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

.symbol-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.symbol-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 10px;
}

.symbol-name {
    color: #f0c159;
    font-weight: bold;
    margin-bottom: 8px;
}

.symbol-payout {
    color: #abb8c3;
    font-size: 0.9em;
}

.reviews-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
}

.reviews-title {
    color: #f0c159;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.review-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-author {
    color: #f0c159;
    font-weight: bold;
}

.review-rating {
    color: #ffd700;
}

.review-text {
    color: #abb8c3;
    font-style: italic;
    line-height: 1.6;
}

.similar-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.similar-game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.similar-game-card:hover {
    border-color: #f0c159;
    transform: translateY(-5px);
}

.similar-game-card h4 {
    color: #f0c159;
    margin: 10px 0;
}

.similar-game-thumb {
    font-size: 3em;
    margin-bottom: 10px;
}

.similar-meta {
    color: #abb8c3;
    font-size: 0.9em;
    margin-bottom: 15px;
}

/* ===== CASINO ===== */

.casino-hero {
    background: linear-gradient(135deg, rgba(240, 193, 89, 0.1), rgba(255, 0, 0, 0.05));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.casino-hero h1 {
    font-size: 2.8em;
    color: #f0c159;
    margin-bottom: 20px;
}

.casino-hero-intro {
    font-size: 1.3em;
    color: #abb8c3;
    margin-bottom: 20px;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.live-label {
    color: #ff0000;
    font-weight: bold;
}

.live-count {
    color: #abb8c3;
}

.casino-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.casino-game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(240, 193, 89, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
}

.casino-game-card:hover {
    transform: translateY(-5px);
    border-color: #f0c159;
}

.casino-game-card.featured {
    border-color: #f0c159;
    background: rgba(240, 193, 89, 0.08);
}

.casino-game-card .game-icon {
    font-size: 3em;
    display: block;
    margin: 15px 0;
}

.casino-game-card .game-title {
    color: #f0c159;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.casino-game-card .game-description {
    color: #abb8c3;
    margin-bottom: 20px;
    line-height: 1.6;
}

.casino-game-card .game-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.casino-game-card .game-features li {
    color: #abb8c3;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.casino-game-card .game-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.live-tables {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
}

.live-tables-title {
    color: #f0c159;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

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

.table-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.table-card:hover {
    border-color: #f0c159;
    transform: translateY(-3px);
}

.table-card.vip {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.table-preview {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.table-name {
    color: #f0c159;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.table-limits,
.table-players {
    color: #abb8c3;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.dealers-section {
    margin: 60px 0;
}

.dealers-title {
    color: #f0c159;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

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

.dealer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.dealer-card:hover {
    border-color: #f0c159;
    transform: translateY(-5px);
}

.dealer-avatar {
    font-size: 4em;
    margin-bottom: 15px;
}

.dealer-name {
    color: #f0c159;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 8px;
}

.dealer-specialty {
    color: #00d084;
    margin-bottom: 8px;
}

.dealer-rating {
    color: #ffd700;
    margin-bottom: 10px;
}

.dealer-bio {
    color: #abb8c3;
    font-size: 0.9em;
}

.vip-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(240, 193, 89, 0.05));
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 50px 40px;
    margin: 60px 0;
    text-align: center;
}

.vip-section-title {
    color: #ffd700;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.vip-section-intro {
    color: #abb8c3;
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vip-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    text-align: left;
}

.vip-benefit {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.vip-benefit .icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.vip-benefit h4 {
    color: #f0c159;
    margin-bottom: 10px;
}

.vip-benefit p {
    color: #abb8c3;
    font-size: 0.9em;
}

.btn-vip {
    background: linear-gradient(135deg, #ffd700, #f0c159);
    color: #141416;
    font-size: 1.2em;
    padding: 18px 40px;
}

.promotions-banner {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.promotions-banner h3 {
    color: #ff4444;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.promotions-banner p {
    color: #abb8c3;
    margin-bottom: 20px;
}

/* ===== CRASH ===== */

.crash-hero {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(240, 193, 89, 0.05));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.crash-hero h1 {
    font-size: 2.8em;
    color: #f0c159;
    margin-bottom: 20px;
}

.crash-hero-intro {
    font-size: 1.3em;
    color: #abb8c3;
    margin-bottom: 20px;
}

.multiplier-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.multiplier-icon {
    font-size: 1.5em;
}

.multiplier-value {
    color: #00bfff;
    font-size: 2em;
    font-weight: bold;
}

.multiplier-label {
    color: #abb8c3;
    font-size: 0.9em;
}

.crash-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.crash-game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(240, 193, 89, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
}

.crash-game-card:hover {
    transform: translateY(-5px);
    border-color: #f0c159;
}

.crash-game-card.featured {
    border-color: #00bfff;
    background: rgba(0, 191, 255, 0.05);
}

.crash-game-card .game-preview {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #87CEEB, #00bfff, #1E90FF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.crash-game-card .game-preview-jetx {
    background: linear-gradient(135deg, #FF4500, #FF6347, #DC143C);
}

.crash-game-title {
    color: #f0c159;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.crash-rtp {
    background: rgba(0, 208, 132, 0.2);
    color: #00d084;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.crash-game-desc {
    color: #abb8c3;
    margin-bottom: 20px;
}

.crash-game-card .game-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.crash-game-card .game-features li {
    color: #abb8c3;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.crash-game-card .game-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0c159, #ff6900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #f0c159;
    margin-bottom: 15px;
}

.step-card p {
    color: #abb8c3;
}

.recent-title {
    color: #f0c159;
    text-align: center;
    margin: 40px 0 20px;
    font-size: 1.5em;
}

.recent-multipliers {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.multiplier-chip {
    background: rgba(0, 191, 255, 0.2);
    border: 1px solid #00bfff;
    color: #00bfff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.strategies-panel {
    background: linear-gradient(135deg, rgba(240, 193, 89, 0.1), rgba(255, 105, 0, 0.05));
    border-radius: 20px;
    padding: 40px;
}

.strategies-title {
    color: #f0c159;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

/* Promo hero gradient */
.promo-hero {
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.1), rgba(240, 193, 89, 0.05));
}

.promo-alert {
    background: rgba(255, 105, 0, 0.1);
    border: 2px solid #ff6900;
}

.promo-alert p {
    color: #ff6900;
    font-weight: bold;
    margin: 0;
}

.exclusive-image img {
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}
