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

:root {
    --primary: #d4af37;
    --secondary: #00d4ff;
    --accent: #00ff88;
    --danger: #ff3366;
    --bg-dark: #0a0e27;
    --bg-card: #1a1f3a;
    --bg-hover: #252d4a;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #2a3050;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #0a0e27, #1a1f3a, #0a0e27);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* Animações */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 40px;
    width: 288px;
    height: 288px;
    background: #00d4ff;
    border-radius: 50%;
    mix-blend-mode: screen;
    opacity: 0.05;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 80px;
    width: 384px;
    height: 384px;
    background: #d4af37;
    border-radius: 50%;
    mix-blend-mode: screen;
    opacity: 0.05;
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    animation: slideUp 0.6s ease-out;
}

.badge::before {
    content: '⚡';
    font-size: 14px;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.gradient-text {
    background: linear-gradient(to right, #d4af37, #f0d968, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 32px;
    animation: slideUp 1s ease-out 0.2s both;
}

.highlight {
    color: var(--accent);
    font-weight: 700;
}

.highlight-gold {
    color: var(--primary);
    font-weight: 700;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(90deg, #d4af37 0%, #f0d968 50%, #d4af37 100%);
    background-size: 1000px 100%;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a0e27;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: slideUp 1.2s ease-out 0.3s both;
    animation: shimmer 3s infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-button:active {
    transform: scale(0.98);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-muted);
    animation: slideUp 1.4s ease-out 0.4s both;
}

.trust-indicators div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Bonus Table Section */
.bonus-section {
    padding: 60px 20px;
    background: rgba(10, 14, 39, 0.5);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    animation: slideUp 0.6s ease-out;
}

.table-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    border-bottom: 2px solid var(--primary);
}

th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
}

th:nth-child(1) {
    color: var(--primary);
}

th:nth-child(2) {
    text-align: center;
    color: var(--accent);
}

th:nth-child(3) {
    text-align: right;
    color: var(--secondary);
}

tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: var(--bg-card);
}

tbody tr.highlight {
    background-color: var(--bg-card);
}

td {
    padding: 16px;
    font-size: 15px;
}

td:nth-child(1) {
    color: var(--text-light);
    font-weight: 600;
}

td:nth-child(2) {
    text-align: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

td:nth-child(3) {
    text-align: right;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.table-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 24px;
    font-size: 14px;
}

/* Scratch Card Section */
.scratch-section {
    padding: 60px 20px;
}

.scratch-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1f3a, #252d4a);
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out;
}

.scratch-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.scratch-content {
    position: relative;
    z-index: 10;
}

.scratch-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.scratch-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.scratch-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.scratch-description {
    color: var(--text-muted);
    font-size: 15px;
}

.scratch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.scratch-stat {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.scratch-stat.highlight {
    border-color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-value.gold {
    color: var(--primary);
}

.stat-value.green {
    color: var(--accent);
}

.stat-value.cyan {
    color: var(--secondary);
}

.scratch-footer {
    color: var(--text-muted);
    font-size: 14px;
}

/* Tiger Times Section */
.tiger-section {
    padding: 60px 20px;
    background: rgba(10, 14, 39, 0.5);
}

.tiger-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tiger-icon {
    font-size: 32px;
}

.tiger-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-light);
}

.times-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.time-card {
    background: linear-gradient(135deg, #1a1f3a, #252d4a);
    border: 1px solid var(--danger);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.time-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
}

.time-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.time-status {
    color: var(--danger);
    font-weight: 700;
    font-size: 14px;
}

.tiger-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    max-width: 900px;
    margin: 0 auto;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 20px;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    animation: slideUp 0.6s ease-out;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease-out 0.1s both;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 32px 20px;
    background: rgba(10, 14, 39, 0.8);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

footer p {
    margin: 8px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 16px;
    }

    .bonus-section,
    .scratch-section,
    .tiger-section {
        padding: 40px 16px;
    }

    .scratch-card {
        padding: 24px;
    }

    .times-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }

    .time-value {
        font-size: 1.5rem;
    }

    .trust-indicators {
        gap: 16px;
    }

    .trust-indicators div {
        flex-basis: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

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

    .tiger-title {
        font-size: 1.2rem;
    }
}
