/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a4d 50%, #0f0c29 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #00d4ff, #ff00ff, #00ff88) 1;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

body {
    padding-top: 85px; /* Compensar o header fixo */
}

@media (max-width: 768px) {
    body {
        padding-top: 150px; /* Mais espaço no mobile para o header expandido */
    }

    .hero {
        padding: 80px 20px 60px 20px; /* Reduzir padding no mobile mas manter espaço */
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO TEXT NEON - CSS PURO */
.logo-text-neon {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #00ff88, #00d4ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    font-family: 'Arial Black', sans-serif;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo-subtitle {
    font-size: 11px;
    color: rgba(0, 212, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.header-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-size: 13px;
}

.stat-icon {
    font-size: 16px;
}

.stat-text {
    color: rgba(255, 255, 255, 0.9);
}

.stat-text strong {
    color: #00ff88;
}

.prize-badge {
    background: linear-gradient(135deg, #ff00ff, #ff1493);
    padding: 10px 18px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.prize-label {
    font-size: 11px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prize-value {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.btn-telegram-header {
    background: linear-gradient(135deg, #0088cc, #00d4ff);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.btn-telegram-header:hover {
    background: linear-gradient(135deg, #0077b3, #00ff88);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.visual-placeholder {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-image: linear-gradient(135deg, #00d4ff, #ff00ff) 1;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-icon {
    font-size: 100px;
    position: relative;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   CREDIBILIDADE BANNER
   ============================================ */

.credibility-banner {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
    padding: 30px 20px;
    margin: 40px 0;
}

.credibility-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.credibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.credibility-number {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.credibility-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credibility-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

/* ============================================
   CARD PURCHASE CTA
   ============================================ */

.card-purchase-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 255, 0.15));
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #00d4ff, #ff00ff) 1;
    padding: 60px 20px;
    margin: 60px 0;
}

.card-purchase-content {
    max-width: 1400px;
    margin: 0 auto;
}

.card-purchase-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-purchase-content > p {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.card-purchase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.card-purchase-option {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.card-purchase-option:hover {
    transform: translateY(-8px);
    border-color: #00ff88;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
}

.card-purchase-option.featured {
    border-color: #ff00ff;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(0, 212, 255, 0.15));
    transform: scale(1.05);
}

.featured-badge-mini {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff00ff, #ff1493);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
}

.card-purchase-option .card-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.card-purchase-option h3 {
    font-size: 20px;
    color: #00d4ff;
    margin-bottom: 8px;
}

.card-amount {
    font-size: 28px;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 5px;
}

.card-convert {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.card-benefits-mini {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    font-size: 13px;
}

.card-benefits-mini li {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.card-benefits-mini li:last-child {
    border-bottom: none;
}

.btn-buy {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
}

.card-purchase-highlight {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.card-purchase-highlight p {
    margin: 0;
}

.card-purchase-highlight strong {
    color: #00ff88;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
    border-color: #00d4ff;
}

.btn-secondary {
    background: rgba(255, 0, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 0, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: #ff00ff;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    width: 100%;
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc, #00d4ff);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 255, 0.5);
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #0077b3, #00ff88);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* ============================================
   TIPOS DE APOSTAS
   ============================================ */

.betting-types {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.betting-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.betting-type-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.betting-type-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
    }
    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

.betting-type-card:hover {
    transform: translateY(-8px);
    border-color: #00ff88;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
}

.betting-type-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.betting-type-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #00d4ff;
    position: relative;
    z-index: 1;
}

.betting-type-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.betting-type-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 12px;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    color: #00ff88;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.betting-type-badge.highlight {
    background: rgba(255, 0, 255, 0.2);
    border-color: #ff00ff;
    color: #ff00ff;
}

.betting-info-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.betting-info-box h3 {
    color: #00ff88;
    margin-bottom: 10px;
}

.betting-info-box p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SECTION HEADER
   ============================================ */

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PARTICIPANTS SECTION
   ============================================ */

.participants-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.participant-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.participant-card:hover {
    transform: translateY(-8px);
    border-color: #00ff88;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}

.participant-card.active {
    border-color: #00ff88;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
}

.participant-avatar {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
}

.participant-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

.participant-info {
    padding: 20px;
}

.participant-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.participant-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.odds-badge {
    background: rgba(0, 212, 255, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.odds-badge-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.odds-badge-value {
    font-size: 16px;
    font-weight: 700;
    color: #00ff88;
}

.participant-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.participant-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 212, 255, 0.5);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 12px 40px rgba(255, 0, 255, 0.3);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 16px;
    color: #00d4ff;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-badge {
    padding: 6px 12px;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    color: #00ff88;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 255, 0.15));
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #00d4ff, #ff00ff) 1;
    padding: 60px 20px;
    margin: 60px 0;
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content > p {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.card-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card-option {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.card-option:hover {
    transform: translateY(-8px);
    border-color: #00ff88;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
}

.card-option.featured {
    border-color: #ff00ff;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(0, 212, 255, 0.15));
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff00ff, #ff1493);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
}

.card-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.card-option h3 {
    font-size: 22px;
    color: #00d4ff;
    margin-bottom: 10px;
}

.card-price {
    font-size: 32px;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 20px;
}

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

.card-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.card-features li:last-child {
    border-bottom: none;
}

.cta-highlight {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 212, 255, 0.2));
    border: 2px solid rgba(255, 0, 255, 0.5);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.cta-highlight h3 {
    font-size: 28px;
    color: #ff00ff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-highlight p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.modal.active {
    display: block;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: block;
}

.modal-content {
    background: linear-gradient(135deg, #0a0e27, #1a1a4d);
    border: 2px solid;
    border-image: linear-gradient(135deg, #00d4ff, #ff00ff) 1;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.modal-centered {
    max-width: 450px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 212, 255, 0.2);
    border: none;
    color: #00d4ff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 212, 255, 0.4);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.participant-preview {
    font-size: 80px;
    margin-bottom: 15px;
}

.modal-body h3 {
    font-size: 24px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   FORM STYLES
   ============================================ */

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #00d4ff;
    font-size: 14px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.currency {
    color: #00ff88;
    font-weight: 600;
    margin-right: 8px;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* ============================================
   ODDS DISPLAY
   ============================================ */

.odds-display {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.odds-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.odds-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.odds-value {
    font-size: 28px;
    font-weight: 700;
    color: #00d4ff;
}

.odds-value.highlight {
    font-size: 32px;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

/* ============================================
   WARNING BOX
   ============================================ */

.warning-box {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 25px 0;
    display: flex;
    gap: 12px;
}

.warning-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.warning-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.warning-box strong {
    color: #ffb700;
}

/* ============================================
   TELEGRAM INFO
   ============================================ */

.telegram-info {
    text-align: center;
}

.telegram-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s infinite;
}

.telegram-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.telegram-info > p:first-of-type {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.telegram-benefits {
    list-style: none;
    margin: 25px 0;
    text-align: left;
    background: rgba(0, 212, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #00d4ff;
}

.telegram-benefits li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.telegram-link-section {
    margin: 30px 0;
}

.telegram-instruction {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 14px;
}

.telegram-note {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.telegram-note a {
    color: #00d4ff;
    text-decoration: none;
}

.telegram-note a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #00d4ff, #ff00ff) 1;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-content p {
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-visual {
        height: 250px;
    }

    .visual-placeholder {
        width: 200px;
        height: 200px;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .header-stats {
        flex-direction: column;
        width: 100%;
    }

    .participants-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .participant-avatar {
        height: 120px;
        font-size: 60px;
    }

    .modal-content {
        padding: 30px;
        max-width: 90%;
    }

    .odds-display {
        grid-template-columns: 1fr;
    }

    .card-option.featured {
        transform: scale(1);
    }

    .credibility-content {
        flex-direction: column;
        gap: 15px;
    }

    .credibility-divider {
        width: 100%;
        height: 2px;
    }

    .logo-text-neon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .participants-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .participant-card {
        border-radius: 8px;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-body h3 {
        font-size: 18px;
    }

    .odds-value {
        font-size: 24px;
    }

    .odds-value.highlight {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

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

    .logo-text-neon {
        font-size: 20px;
        letter-spacing: 2px;
    }
}

/* ============================================
   MELHORIAS - NOVO RODAPÉ & ESTILO VIP
   ============================================ */

.footer {
    background: rgba(10, 14, 39, 0.98);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #00d4ff, #ff00ff, #00ff88) 1;
    padding: 60px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer-legal {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* Estilo VIP Adicional */
.participant-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.participant-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #00d4ff;
}

.btn-telegram {
    background: #0088cc;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.btn-telegram:hover {
    background: #0099e6;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
}

/* ============================================
   CORREÇÕES DE VISIBILIDADE E ALINHAMENTO
   ============================================ */

/* Garantir que o gradiente de texto não oculte emojis */
.credibility-number, .logo-text-neon, .hero-title, .card-purchase-content h2 {
    -webkit-background-clip: text;
    background-clip: text;
    /* Remover filtros que podem causar sobreposição em alguns navegadores */
    filter: none !important;
}

/* Ajuste específico para os itens de credibilidade */
.credibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

/* Garantir que emojis e ícones apareçam com suas cores originais */
.stat-icon, .credibility-number, .card-icon, .betting-type-icon, .testimonial-avatar, .telegram-icon {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: inherit !important;
}

/* Estilo para o Raio Amarelo e outros emojis específicos */
.stat-item .stat-icon, .credibility-item .credibility-number {
    font-style: normal;
    display: inline-block;
}

/* ============================================
   ESTILO DE PARTICIPANTES ELIMINADOS
   ============================================ */

.participant-card.eliminado {
    filter: grayscale(0.8);
    opacity: 0.8;
    border-color: rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.participant-card.eliminado::after {
    content: 'ELIMINADO';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ff0000;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 10px;
    font-weight: 900;
    z-index: 10;
}

.participant-avatar {
    position: relative;
}

.eliminated-x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    color: rgba(255, 0, 0, 0.7);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.paid-badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
}

.paid-label {
    display: block;
    font-size: 9px;
    color: #00ff88;
    font-weight: 700;
    margin-bottom: 2px;
}

.paid-value {
    display: block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 800;
}

.participant-btn.disabled {
    background: #333 !important;
    color: #666 !important;
    cursor: not-allowed;
    border-color: #444 !important;
}

/* ============================================
   CENTRALIZAÇÃO E AJUSTES DO RODAPÉ
   ============================================ */

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    width: 100%;
}

.footer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 200px;
}

/* Garantir que o ticket apareça */
.footer-badge:last-child {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-color: #ffd700;
    color: #ffd700;
}

@media (max-width: 768px) {
    .footer-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-badge {
        width: 100%;
        max-width: 300px;
    }
}


/* ============================================
   POP-UP DE ENTRADA
   ============================================ */

.entry-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.entry-popup.closing {
    animation: fadeOut 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.entry-popup-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 26, 77, 0.98));
    border: 2px solid;
    border-image: linear-gradient(135deg, #00d4ff, #ff00ff, #00ff88) 1;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

@media (min-width: 769px) {
    .entry-popup-content {
        animation: slideUp 0.4s ease;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.entry-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #00d4ff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entry-popup-close:hover {
    color: #ff00ff;
}

.entry-popup-header {
    margin-bottom: 20px;
}

.entry-popup-icon {
    font-size: 60px;
    margin-bottom: 15px;
    display: block;
}

@media (min-width: 769px) {
    .entry-popup-icon {
        animation: bounce 2s infinite;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.entry-popup-header h2 {
    font-size: 28px;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.entry-popup-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.entry-popup-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.entry-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.entry-popup-footer {
    font-size: 12px;
    color: rgba(0, 212, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   BOTÃO FLUTUANTE
   ============================================ */

.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    animation: floatIn 0.5s ease;
}

@keyframes floatIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #00ff88, #00d4ff);
}

.floating-button-icon {
    font-size: 20px;
}

.floating-button-text {
    display: inline-block;
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-stats {
        display: none; /* Esconder stats no mobile para economizar espaço */
    }

    .logo-text-neon {
        font-size: 24px;
    }

    .prize-badge {
        padding: 5px 12px;
    }

    .prize-value {
        font-size: 14px;
    }

    .floating-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .floating-button-text {
        display: none;
    }
    
    .entry-popup-content {
        padding: 30px 20px;
    }
    
    .entry-popup-header h2 {
        font-size: 22px;
    }
}

/* ============================================
   IMAGENS DOS PARTICIPANTES
   ============================================ */

.participant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.participant-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.participant-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================
   SUPPORT SECTION
   ============================================ */

.support-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
    padding: 60px 20px;
    margin: 40px 0;
}

.support-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.support-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.support-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .support-container {
        flex-direction: column;
        text-align: center;
    }
    
    .support-actions {
        width: 100%;
        justify-content: center;
    }
    
    .support-actions .btn {
        width: 100%;
    }
}
