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

:root {
    --forest-green: #2f5f5f;
    --sage-green: #8fb3a8;
    --warm-beige: #d4c7a8;
    --cream: #f2e8d8;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--forest-green);
    background-color: var(--cream);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

.hero {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: var(--cream);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,20 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(244,240,216,0.1)"/></svg>') repeat-x bottom;
    background-size: 200px 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.adventure-badge {
    display: inline-block;
    background-color: var(--warm-beige);
    color: var(--forest-green);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: rotate(-2deg);
    margin-top: 20px;
}

.countdown-section {
    margin-top: 3rem;
}

.countdown-section h3 {
    color: var(--warm-beige);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--warm-beige);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.8;
    margin-top: 0.5rem;
}

.camp-marker {
    background: transparent;
    border: none;
    font-size: 40px;
    text-align: center;
    line-height: 50px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.start-finish-marker {
    background: transparent;
    border: none;
    font-size: 40px;
    text-align: center;
    line-height: 50px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.kayak-icon {
    font-size: 4rem;
    margin-top: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.route-intro {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--warm-beige), var(--cream));
    text-align: center;
}

.route-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--forest-green);
}

.route-intro .route-description {
    font-size: 1.2rem;
    color: var(--forest-green);
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.distance-info {
    text-align: center;
    font-size: 1.1rem;
    color: var(--forest-green);
    background: rgba(143,179,168,0.2);
    padding: 1rem;
    border-radius: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.distance-info strong {
    font-size: 1.3rem;
    color: var(--forest-green);
}

.distance-info small {
    opacity: 0.8;
    font-size: 0.9rem;
}

.trip-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.trip-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--forest-green);
}

.route-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--forest-green);
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

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

.trip-card {
    background: linear-gradient(135deg, var(--sage-green), var(--warm-beige));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--forest-green);
    box-shadow: 0 8px 25px rgba(47,95,95,0.1);
    transition: transform 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-5px);
}

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

.trip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.route-details {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--warm-beige), var(--cream));
}

.route-details h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--forest-green);
}

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

.detail-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(47,95,95,0.1);
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.detail-item p {
    color: var(--forest-green);
    opacity: 0.8;
    line-height: 1.6;
}

.map-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--cream), var(--warm-beige));
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.map-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--forest-green);
    opacity: 0.8;
}

#map {
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(47,95,95,0.2);
    overflow: hidden;
}

.excitement-section {
    padding: 80px 0;
    background-color: var(--forest-green);
    color: var(--cream);
}

.excitement-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--warm-beige);
}

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

.excitement-item {
    text-align: center;
    padding: 2rem;
    background: rgba(143,179,168,0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.excitement-item:hover {
    transform: scale(1.05);
}

.excitement-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.excitement-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--warm-beige);
}

.competition-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
    color: var(--cream);
}

.competition-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--warm-beige);
}

.competition-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.challenge-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background: none;
}

.challenge-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    background: transparent;
}

.challenge-image:hover {
    transform: scale(1.05);
}

.challenge-emoji-fallback {
    font-size: 3rem;
}

.challenge-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--warm-beige);
}

.challenge-item p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.winner-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.win-btn {
    background: var(--warm-beige);
    color: var(--forest-green);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.win-btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.win-btn.winner {
    background: #ffd700;
    color: var(--forest-green);
}

.challenge-stamp {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    opacity: 0;
    transform: rotate(-15deg) scale(0.5);
    transition: all 0.5s ease;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.challenge-stamp.show {
    display: block;
}

.challenge-stamp.claimed {
    opacity: 0.9;
    transform: rotate(-15deg) scale(1);
}

.stamp-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.stamp-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
    transform: scale(1.1);
}

.current-winner {
    font-weight: bold;
    color: #ffd700;
    min-height: 20px;
}

.scoreboard {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.scoreboard h3 {
    margin-bottom: 2rem;
    color: var(--warm-beige);
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.score-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--warm-beige);
    color: var(--forest-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.score-item h4 {
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.score-count {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
}

.packlist-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--cream), var(--white));
}

.packlist-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.packlist-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--forest-green);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.packlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.packlist-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(47,95,95,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.packlist-item:hover {
    transform: translateY(-5px);
    border-color: var(--sage-green);
}

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

.packlist-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.packlist-item p {
    color: var(--forest-green);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.requirements {
    background: linear-gradient(135deg, var(--sage-green), var(--warm-beige));
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.requirements span {
    color: var(--forest-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.team-section {
    padding: 80px 0;
    background-color: var(--sage-green);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--forest-green);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: var(--cream);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(47,95,95,0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--forest-green);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.team-member p {
    color: var(--forest-green);
    opacity: 0.8;
}

.footer {
    background-color: var(--forest-green);
    color: var(--cream);
    text-align: center;
    padding: 2rem 0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .trip-grid,
    .excitement-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .trip-overview,
    .map-section,
    .excitement-section,
    .team-section {
        padding: 60px 0;
    }
}