* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

header h1 {
    font-size: 3em;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3em;
    opacity: 0.9;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

/* Timeline line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ffd700, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 3px;
    z-index: 0;
}

.day-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeInUp 0.6s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Alternating card positions */
.day-card:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    width: calc(50% - 40px);
}

.day-card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    width: calc(50% - 40px);
}

/* Colored dots on timeline */
.day-card::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: 5px solid white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.day-card:nth-child(odd)::before {
    right: -11%;
}

.day-card:nth-child(even)::before {
    left: -12%;
}

/* Different colors for different days */
.day-card[data-day="1"] { border-left: 6px solid #ff6b6b; }
.day-card[data-day="2"] { border-left: 6px solid #4ecdc4; }
.day-card[data-day="3"] { border-left: 6px solid #45b7d1; }
.day-card[data-day="4"] { border-left: 6px solid #f7b731; }
.day-card[data-day="5"] { border-left: 6px solid #5f27cd; }
.day-card[data-day="6"] { border-left: 6px solid #00d2d3; }
.day-card[data-day="9"] { border-left: 6px solid #ff9ff3; }
.day-card[data-day="10"] { border-left: 6px solid #feca57; }
.day-card[data-day="13"] { border-left: 6px solid #48dbfb; }

.date {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.day-card h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.activities {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3edf7 100%);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease;
}

.activity:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

.activity.full {
    flex-direction: column;
    align-items: flex-start;
}

.time {
    font-weight: bold;
    color: #667eea;
    min-width: 120px;
}

.location {
    color: #333;
    font-size: 1.1em;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    padding: 30px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.1) rotate(2deg);
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #666;
    margin-top: 10px;
    font-size: 1.1em;
}

.map-placeholder {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.2em;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .timeline::before {
        left: 20px;
    }

    .day-card:nth-child(odd),
    .day-card:nth-child(even) {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 60px;
    }

    .day-card::before {
        left: 5px !important;
        right: auto !important;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 80%;
    }
}
