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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0908 0%, #15120e 50%, #0f0908 100%);
    color: #e7dbce;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header/Navbar */
header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(10, 9, 8, 0.7);
    border-bottom: 1px solid rgba(100, 116, 139, 0.2);
    z-index: 1001;
    padding: 1rem 0;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f1b1b2 0%, #e7dbce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-center {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #bbb3a8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f1b1b2;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f1b1b2, #e7dbce);
    border-radius: 1px;
}

.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f1b1b2 0%, #e7dbce 100%);
    color: #340200;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(241, 177, 178, 0.5), 0 8px 20px rgba(241, 177, 178, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #f1b1b2;
    border: 2px solid #f1b1b2;
}

.btn-secondary:hover {
    background: rgba(96, 165, 250, 0.1);
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 3rem;
}

.hero-title-section {
    flex: 1;
}

.hero-title-section h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #e7dbce;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-title-section p {
    font-size: 1.05rem;
    color: #9d9488;
    font-weight: 500;
}

.hero-title-with-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f1b1b2 0%, #e7dbce 100%);
    color: #340200;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(241, 177, 178, 0.6), 0 0 40px rgba(241, 177, 178, 0.3);
    animation: livePulse 2s ease-in-out infinite;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #340200;
    border-radius: 50%;
    animation: liveDot 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(241, 177, 178, 0.6), 0 0 40px rgba(241, 177, 178, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(241, 177, 178, 0.8), 0 0 60px rgba(241, 177, 178, 0.5);
    }
}

@keyframes liveDot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-reward-pool {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(241, 177, 178, 0.15);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: 280px;
    flex-shrink: 0;
}

.reward-pool-label {
    color: #9d9488;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.reward-pool-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f1b1b2 0%, #e7dbce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.reward-pool-currency {
    color: #bbb3a8;
    font-size: 0.95rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-left {
    min-width: 0;
}

.rewards-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e7dbce;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.available-rewards-card {
    background: rgba(20, 15, 12, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.rewards-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.rewards-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.voucher-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e7dbce;
}

.rewards-card-content .btn {
    width: 100%;
}

.hero-right {
    min-width: 0;
}

.event-statistics {
    background: rgba(20, 15, 12, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.stats-label {
    color: #e7dbce;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.stat-title {
    color: #bbb3a8;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.stat-big-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f1b1b2 0%, #e7dbce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rewards-usd {
    font-size: 0.9rem;
    color: #340200;
    font-weight: 700;
}

.progress-section {
    border-top: 1px solid rgba(100, 116, 139, 0.2);
    padding-top: 1rem;
}

.progress-label {
    color: #bbb3a8;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

.progress-label span {
    color: #e7dbce;
    font-weight: 600;
}

.progress-bar {
    height: 6px;
    background: rgba(100, 116, 139, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f1b1b2 0%, #e7dbce 100%);
    width: 0%;
    transition: width 0.3s ease;
}


@keyframes spin3d {
    0% {
        transform: rotateY(0deg) rotateX(5deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(5deg);
    }
}

.reward-card-img {
    width: 100%;
    height: auto;
    animation: spin3d 8s linear infinite;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    filter: drop-shadow(0 4px 12px rgba(241, 177, 178, 0.15));
    perspective: 1000px;
}

.reward-card-img:hover {
    animation: none;
    filter: drop-shadow(0 0 25px rgba(241, 177, 178, 0.8)) brightness(1.15);
}

.event-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(241, 177, 178, 0.15);
}

.event-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e7dbce;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.event-info p {
    color: #bbb3a8;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.event-info ul {
    list-style: none;
    margin-top: 1rem;
}

.event-info li {
    color: #bbb3a8;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.event-info li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f1b1b2;
    font-weight: bold;
}

/* Rewards Section */
.rewards {
    padding: 80px 0;
    background: rgba(20, 15, 12, 0.6);
    border-top: 1px solid rgba(241, 177, 178, 0.15);
    border-bottom: 1px solid rgba(241, 177, 178, 0.15);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #e7dbce;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reward-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(241, 177, 178, 0.05) 0%, rgba(231, 219, 206, 0.05) 100%);
    border: 2px solid rgba(241, 177, 178, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.reward-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 177, 178, 0.5);
    background: linear-gradient(135deg, rgba(241, 177, 178, 0.1) 0%, rgba(231, 219, 206, 0.05) 100%);
    box-shadow: 0 0 20px rgba(241, 177, 178, 0.3);
}

.reward-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reward-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.reward-card p {
    color: #bbb3a8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reward-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f1b1b2;
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1b1b2 0%, #e7dbce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #340200;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(241, 177, 178, 0.25);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.step p {
    color: #bbb3a8;
    line-height: 1.6;
}

/* Events Table */
.events-table {
    padding: 80px 0;
}

.activations-list {
    max-height: 650px;
    overflow-y: scroll;
    border: 2px solid rgba(100, 116, 139, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    background: rgba(20, 15, 12, 0.6);
}

.activations-list::-webkit-scrollbar {
    width: 8px;
}

.activations-list::-webkit-scrollbar-track {
    background: rgba(100, 116, 139, 0.1);
    border-radius: 10px;
}

.activations-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f1b1b2 0%, #e7dbce 100%);
    border-radius: 10px;
}

.activations-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e7dbce 0%, #f1b1b2 100%);
}

.activations-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(241, 177, 178, 0.25);
    background: rgba(10, 9, 8, 0.8);
    position: sticky;
    top: 0;
    font-weight: 700;
    color: #9d9488;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    z-index: 10;
}

.activation-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(100, 116, 139, 0.1);
    transition: background 0.3s ease;
}

.activation-item:hover {
    background: rgba(241, 177, 178, 0.05);
}

.activation-date {
    color: #9d9488;
    font-size: 0.9rem;
    font-weight: 500;
}

.activation-wallet {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #f1b1b2;
    font-weight: 600;
}

.activation-reward {
    color: #f1b1b2;
    font-weight: 700;
    text-align: right;
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #e7dbce;
}

.cta p {
    font-size: 1.1rem;
    color: #bbb3a8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-header {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-reward-pool {
        min-width: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .hero-title-section h1 {
        font-size: 1.75rem;
    }

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

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

    .cta h2 {
        font-size: 1.75rem;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 1rem;
    }
}
