/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0F172A;
    color: #F8FAFC;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    z-index: 1000;
    padding: 16px 0;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #F59E0B, #FCD34D);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1E293B;
    font-size: 18px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #F59E0B;
}

.nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta, .btn-ato3, .btn-final-cta {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, #F59E0B, #FCD34D);
    color: #1E293B;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #F59E0B;
    border: 1px solid #F59E0B;
}

.btn-secondary:hover {
    background: rgba(245, 158, 11, 0.1);
}

.btn-cta, .btn-ato3, .btn-final-cta {
    background: linear-gradient(45deg, #F59E0B, #FCD34D);
    color: #1E293B;
    font-size: 18px;
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover, .btn-ato3:hover, .btn-final-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.btn-cta::before, .btn-ato3::before, .btn-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before, .btn-ato3:hover::before, .btn-final-cta:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(45deg, #F59E0B, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.counter-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin: 40px auto;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.counter-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 8px;
}

.counter-text {
    color: #94A3B8;
    font-size: 1rem;
}

.cta-subtitle {
    color: #94A3B8;
    margin-top: 16px;
    font-size: 14px;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #F8FAFC;
}

.feature-card p {
    color: #CBD5E1;
    line-height: 1.6;
}

/* Pioneer Progress Section */
.pioneer-progress {
    padding: 80px 0;
    background: rgba(30, 41, 59, 0.3);
}

.progress-card {
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(10px);
    max-width: 1000px;
    margin: 0 auto;
}

.progress-header {
    text-align: center;
    margin-bottom: 40px;
}

.progress-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #F59E0B;
}

.progress-counter {
    text-align: center;
    margin-bottom: 32px;
}

.big-number {
    font-size: 4rem;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 8px;
}

.progress-text {
    color: #94A3B8;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.remaining-text {
    color: #8B5CF6;
    font-size: 0.9rem;
}

.progress-bar-container {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: #1E293B;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.3);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #F59E0B 0%, #8B5CF6 50%, #3B82F6 100%);
    transition: width 2s ease-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.progress-percentage {
    text-align: center;
    margin-top: 8px;
    color: #94A3B8;
    font-size: 0.9rem;
}

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

.tier {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.tier-completed {
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(245, 158, 11, 0.1);
}

.tier-current {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.tier-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.tier-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    background: #F59E0B;
    color: #1E293B;
}

.tier-badge-current {
    background: #8B5CF6;
    color: white;
    animation: pulse 2s infinite;
}

.tier-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #F8FAFC;
}

.tier-range {
    font-size: 0.85rem;
    color: #94A3B8;
}

.urgency-message {
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.urgency-header {
    font-weight: 600;
    color: #F59E0B;
    margin-bottom: 8px;
}

.ato3-hint {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 12px 24px;
    color: #8B5CF6;
    font-weight: 500;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.6); }
}

/* Rewards Section */
.rewards {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: #CBD5E1;
    font-size: 1.1rem;
    margin-bottom: 48px;
}

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

.reward-card {
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.reward-gold {
    border-color: rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(30, 41, 59, 0.8));
}

.reward-purple {
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(30, 41, 59, 0.8));
}

.reward-blue {
    border-color: rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 41, 59, 0.8));
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.reward-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #F8FAFC;
}

.reward-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reward-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.reward-item:last-child {
    border-bottom: none;
}

.label {
    color: #94A3B8;
    font-size: 0.9rem;
}

.value {
    color: #F8FAFC;
    font-weight: 600;
}

/* Act 3 Teaser */
.ato3-teaser {
    padding: 80px 0;
    background: rgba(139, 92, 246, 0.05);
}

.ato3-card {
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(10px);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.ato3-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8B5CF6, #F59E0B, #3B82F6, #8B5CF6);
    border-radius: inherit;
    z-index: -1;
    animation: glow-rotate 3s linear infinite;
    opacity: 0.3;
}

@keyframes glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.classified-header {
    text-align: center;
    margin-bottom: 24px;
}

.classified-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.ato3-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.ato3-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 48px;
}

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

.hint-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.hint-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.hint-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.hint-card h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #F8FAFC;
}

.hint-card p {
    color: #94A3B8;
    font-style: italic;
    font-size: 0.9rem;
}

.countdown-container {
    text-align: center;
    margin-bottom: 32px;
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.5), rgba(245, 158, 11, 0.5));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 16px 24px;
}

.countdown-icon {
    font-size: 1.5rem;
    animation: spin 2s linear infinite;
}

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

.countdown-label {
    font-size: 0.9rem;
    color: #94A3B8;
}

.countdown-date {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8B5CF6;
}

.mystery-quotes {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.quote-card {
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.quote-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.quote-card p {
    color: #CBD5E1;
    font-size: 0.95rem;
}

.ato3-cta {
    text-align: center;
}

.limited-access {
    color: #94A3B8;
    margin-bottom: 16px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

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

.dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    animation-delay: 1s;
}

.disclaimer {
    color: #64748B;
    font-size: 0.8rem;
    margin-top: 16px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.features-list {
    color: #94A3B8;
    margin-top: 24px;
    font-size: 0.9rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1E293B;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #94A3B8;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 20px;
}

.close:hover {
    color: #F59E0B;
}

.modal h2 {
    margin-bottom: 24px;
    color: #F8FAFC;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form input {
    padding: 12px 16px;
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.8);
    color: #F8FAFC;
    font-size: 16px;
}

.login-form input:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.ranking-list {
    max-height: 400px;
    overflow-y: auto;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.ranking-item:hover {
    background: rgba(245, 158, 11, 0.1);
}

.ranking-top {
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.position {
    font-weight: 700;
    color: #F59E0B;
    min-width: 40px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #F59E0B, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.user-details {
    flex: 1;
}

.name {
    font-weight: 600;
    color: #F8FAFC;
}

.tier {
    font-size: 0.8rem;
    color: #94A3B8;
}

.points {
    text-align: right;
    font-weight: 700;
    color: #F59E0B;
}

.points small {
    color: #94A3B8;
    font-weight: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ato3-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .rewards-grid,
    .hints-grid,
    .tiers-container {
        grid-template-columns: 1fr;
    }
    
    .nav {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .progress-card,
    .ato3-card {
        padding: 24px;
    }
    
    .big-number {
        font-size: 3rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-cta,
    .btn-ato3,
    .btn-final-cta {
        font-size: 16px;
        padding: 16px 24px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 24px;
    }
}

