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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

header {
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 0 60px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 900;
}

.tagline {
    font-size: 1.4rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 30px;
}

.emoji-decoration {
    font-size: 2rem;
    margin: 0 10px;
}

.event-date {
    display: inline-block;
    background: #764ba2;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

section {
    background: white;
    margin: 30px auto;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
}

h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-left: 50px;
}

h2::before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 0;
}

.overview-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    font-size: 1.2rem;
    margin: 20px 0;
    text-align: center;
}

.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.mechanic-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s;
}

.mechanic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mechanic-card h3 {
    color: #667eea;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.timeline-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 15px;
}

.timeline-time {
    font-size: 1.5rem;
    font-weight: bold;
    color: #764ba2;
}

.timeline-event {
    margin-top: 8px;
    color: #666;
}

.chaos-list {
    list-style: none;
    padding: 0;
}

.chaos-list li {
    padding: 15px;
    margin: 15px 0;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    font-size: 1.1rem;
}

.chaos-list li::before {
    content: '⚡ ';
    font-weight: bold;
}

.prizes-section {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #333;
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.prize-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.warning-text {
    background: #dc3545;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
    font-weight: 600;
    text-align: center;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

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

    .tagline {
        font-size: 1.1rem;
    }

    section {
        padding: 30px 20px;
    }
}