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

:root {
    --bg-dark: #1b1c2a;
    --bg-darker: #13141f;
    --bg-card: #252636;
    --primary: #ef4765;
    --primary-hover: #d63854;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --border: #2d2e3f;
    --highlight: #ef4765;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
    display: block;
}

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

.btn-google {
    background-color: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google img {
    height: 20px;
}

.btn-twitch {
    background-color: #9146ff;
    color: white;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-title .highlight {
    color: var(--highlight);
}

.hero-title .subtitle {
    color: var(--text-secondary);
    font-weight: 400;
}

/* Games Carousel */
.games-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    margin-bottom: 40px;
}

.game-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    min-width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover,
.game-card.active {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.game-card img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.game-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.game-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.game-reward {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-reward .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.game-reward .rating {
    font-size: 14px;
}

/* Signup Box */
.signup-box {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.signup-box h2 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.signup-form input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 2px solid var(--border);
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 15px;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: var(--text-secondary);
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: var(--border);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.terms-text {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 20px;
}

.terms-text a {
    color: var(--primary);
    text-decoration: none;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Hero Footer */
.hero-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.mascot {
    width: 200px;
}

.trustpilot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trustpilot img {
    height: 30px;
}

.trustpilot p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Sections */
.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--highlight);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.trustpilot-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
}

.trustpilot-small img {
    height: 25px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(239, 71, 101, 0.1);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.step-icon {
    margin: 40px 0 20px;
}

.step-icon img {
    width: 60px;
    height: 60px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.step-visual img {
    max-width: 100%;
    border-radius: 12px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-methods img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Features */
.features {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.feature-card img {
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.feature-item img {
    width: 40px;
    height: 40px;
}

/* Rewards Carousel */
.rewards-carousel {
    padding: 80px 0;
    background-color: var(--bg-darker);
    overflow: hidden;
}

.rewards-scroll {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

.rewards-scroll img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.cta-text {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Recent Payouts */
.recent-payouts {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.payouts-list {
    max-width: 800px;
    margin: 0 auto;
}

.payout-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 15px;
}

.payout-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.payout-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.payout-info strong {
    font-size: 16px;
    margin-bottom: 5px;
}

.payout-info span {
    font-size: 14px;
    color: var(--text-secondary);
}

.payout-time {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.final-mascot {
    width: 250px;
    margin-bottom: 30px;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-nav {
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links img {
    width: 24px;
    height: 24px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Page Content */
.page-content {
    padding: 100px 0;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

@media (max-width: 640px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
