/* CSS Variables - Beach Pastel Palette */
:root {
    --coral: #FF9B85;
    --seafoam: #7FCDCD;
    --sand: #F5E6D3;
    --sky-blue: #87CEEB;
    --driftwood: #8B7355;
    --sunset-orange: #FFB347;
    --white: #FFFFFF;
    --dark-text: #2C3E50;
    --light-text: #5A6C7D;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Simple Header */
.simple-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.4rem 0;
}

.header-logo {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    color: var(--coral);
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
    line-height: 1.2;
}

.header-logo:hover {
    color: var(--sunset-orange);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    padding: 3rem 0 8rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/background-pelikan.png');
    background-size: cover;
    background-position: center -50px;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.hero .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 70vh;
}

.hero-title {
    font-family: 'Righteous', cursive;
    font-size: 4rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: 'Baloo 2', cursive;
    font-size: 3rem;
    color: var(--sunset-orange);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-top: auto;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-description strong {
    color: var(--sunset-orange);
    font-weight: 700;
}

.hero-content .cta-button {
    align-self: center;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
}

.cta-button.primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 155, 133, 0.4);
}

.cta-button.primary:hover {
    background: var(--sunset-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 155, 133, 0.6);
}

.cta-button.secondary {
    background: var(--seafoam);
    color: var(--dark-text);
    box-shadow: 0 4px 15px rgba(127, 205, 205, 0.4);
}

.cta-button.secondary:hover {
    background: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 205, 205, 0.6);
}

.cta-button.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--coral);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

/* How It Works */
.how-it-works {
    background: var(--sand);
}

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

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--light-text);
}

/* Cards Showcase */
.cards-showcase {
    background: var(--white);
}

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

.challenge-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.challenge-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    border: 3px solid transparent;
}

.challenge-card-link:hover .challenge-card {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--coral);
}

.challenge-card-link:hover .challenge-card[data-stoke="max"] {
    border-color: var(--sunset-orange);
}

.challenge-card-link:hover .challenge-card[data-stoke="medium"] {
    border-color: var(--coral);
}

.challenge-card-link:hover .challenge-card[data-stoke="low-medium"] {
    border-color: var(--seafoam);
}

.challenge-card-link:hover .challenge-card[data-stoke="low"] {
    border-color: var(--sky-blue);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.3rem;
    color: var(--dark-text);
}

.stokenz-badge {
    background: var(--sunset-orange);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.card-challenge {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.card-thumbnail {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    background: var(--sand);
    max-height: 180px;
}

.card-thumbnail.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 155, 133, 0.25), rgba(135, 206, 235, 0.25));
}

.card-thumbnail-icon {
    font-size: 3rem;
}

.card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(0.9);
}

.stoke-meter {
    position: relative;
    height: 100px;
    background: linear-gradient(180deg, var(--sand) 0%, var(--seafoam) 100%);
    border-radius: 50px 50px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    overflow: hidden;
    border: 2px solid var(--sky-blue);
}

.stoke-meter::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(90deg, 
        var(--sky-blue) 0%, 
        var(--seafoam) 25%, 
        var(--coral) 50%, 
        var(--sunset-orange) 75%, 
        var(--sunset-orange) 100%);
    opacity: 0.3;
}

.meter-needle {
    position: absolute;
    width: 4px;
    height: 45px;
    background: var(--coral);
    transform-origin: bottom center;
    bottom: 10px;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    transition: transform 0.4s ease;
    z-index: 2;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.challenge-card[data-stoke="max"] .meter-needle {
    background: var(--sunset-orange);
}

.challenge-card[data-stoke="medium"] .meter-needle {
    background: var(--coral);
}

.challenge-card[data-stoke="low-medium"] .meter-needle {
    background: var(--seafoam);
}

.challenge-card[data-stoke="low"] .meter-needle {
    background: var(--sky-blue);
}

.stoke-level {
    position: relative;
    z-index: 3;
    font-weight: 700;
    color: var(--dark-text);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cards-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Play Styles */
.play-styles {
    background: linear-gradient(135deg, var(--seafoam) 0%, var(--sky-blue) 100%);
    color: var(--white);
}

.play-styles .section-title {
    color: var(--white);
}

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

.play-style-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.play-style-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
}

.play-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.play-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.play-description {
    opacity: 0.9;
}

.play-tagline {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    font-style: italic;
}

/* Leaderboard */
.leaderboard {
    background: var(--sand);
}

.leaderboard-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 60px 1fr 120px 1fr;
    gap: 1rem;
    padding: 1rem;
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--sand);
    transition: background 0.3s;
}

.leaderboard-row:hover {
    background: var(--sand);
}

.leaderboard-row:last-child {
    border-bottom: none;
}

.lb-col {
    display: flex;
    align-items: center;
}

.lb-col.rank {
    font-weight: 700;
    color: var(--coral);
    font-size: 1.2rem;
}

.lb-col.name {
    font-weight: 600;
}

.lb-col.stokenz {
    font-weight: 700;
    color: var(--sunset-orange);
}

.leaderboard-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Mission */
.mission {
    background: var(--white);
}

.mission-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
}

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

.stat-card {
    background: var(--seafoam);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-text);
    font-weight: 600;
}

/* Social Feed */
.social-feed {
    background: var(--sand);
}

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

.feed-item {
    aspect-ratio: 1;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.feed-cta-text {
    text-align: center;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--dark-text);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--sunset-orange);
}

.feed-tagline {
    text-align: center;
    margin-top: 1rem;
    color: var(--light-text);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--coral) 0%, var(--sunset-orange) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.email-signup {
    max-width: 500px;
    margin: 0 auto;
}

.signup-text {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.signup-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.signup-button {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--coral);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.signup-button:hover {
    background: var(--sand);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--driftwood);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--coral);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 5rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 50px 1fr 80px 1fr;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    .email-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .simple-header {
        padding: 0.35rem 0;
    }
    
    .header-logo {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 1.5rem 0 4rem;
    }
    
    .hero-content {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .steps-grid,
    .play-styles-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card Detail Page Styles */
.back-link {
    color: var(--coral) !important;
    font-weight: 700;
}

/* Card Hero Section */
.card-hero {
    width: 100%;
    margin: 0;
    padding: 0;
}

.card-image-wrapper {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 400px;
    max-height: 60vh;
    overflow: hidden;
}

.back-to-home-link {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.back-to-home-link:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateX(-5px);
    color: var(--sunset-orange);
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--sunset-orange) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-image-placeholder .card-image {
    width: 70%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.card-image-icon {
    font-size: 10rem;
    margin-bottom: 1rem;
    z-index: 1;
}

.card-image-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.card-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 3rem 0 2rem;
    z-index: 2;
}

.card-hero-info {
    text-align: center;
    width: 100%;
}

.card-hero-title {
    font-family: 'Righteous', cursive;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.card-identifier {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.card-number,
.card-series,
.card-collector-id {
    font-weight: 600;
}

.card-separator {
    color: var(--sunset-orange);
    font-weight: 700;
}

/* Card Story Section */
.card-story {
    background: var(--white);
    padding: 4rem 0;
    position: relative;
}

.card-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--sky-blue) 0%, 
        var(--seafoam) 25%, 
        var(--coral) 50%, 
        var(--sunset-orange) 100%);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-title {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.story-text-wrapper {
    background: var(--sand);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--coral);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark-text);
    font-style: italic;
}

/* Challenge Details Section */
.challenge-details {
    background: var(--sand);
    padding: 4rem 0;
}

.challenge-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.challenge-description {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.challenge-rewards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.stoke-meter-large {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(180deg, var(--sand) 0%, var(--seafoam) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--sky-blue);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.stoke-meter-large::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(90deg, 
        var(--sky-blue) 0%, 
        var(--seafoam) 25%, 
        var(--coral) 50%, 
        var(--sunset-orange) 75%, 
        var(--sunset-orange) 100%);
    border-radius: 0 0 50% 50%;
    opacity: 0.3;
}

.meter-needle-large {
    position: absolute;
    width: 6px;
    height: 80px;
    background: var(--coral);
    transform-origin: bottom center;
    bottom: 20px;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    z-index: 2;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.stoke-level-large {
    position: relative;
    z-index: 3;
    font-weight: 700;
    color: var(--dark-text);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stokenz-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stokenz-label {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 600;
}

.stokenz-value {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: var(--sunset-orange);
    font-weight: 700;
}

/* Challenge Highlights Section */
.challenge-highlights {
    background: var(--white);
    padding: 4rem 0;
}

.what-counts-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.count-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--sand);
    border-radius: 15px;
    border-left: 5px solid var(--seafoam);
    transition: transform 0.3s, box-shadow 0.3s;
}

.count-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.count-item.complete {
    background: linear-gradient(135deg, var(--seafoam) 0%, var(--sky-blue) 100%);
    border-left-color: var(--coral);
}

.count-item.bonus {
    background: linear-gradient(135deg, var(--sand) 0%, rgba(255, 155, 133, 0.2) 100%);
    border-left-color: var(--sunset-orange);
}

.count-check {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--coral);
}

.count-item.complete .count-check {
    background: var(--coral);
    color: var(--white);
}

.count-item.bonus .count-check {
    background: var(--sunset-orange);
    color: var(--white);
}

.count-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 1rem;
    flex-wrap: wrap;
}

.count-action {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
}

.count-points {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--coral);
    white-space: nowrap;
}

.count-item.complete .count-points {
    color: var(--dark-text);
}

.count-item.bonus .count-points {
    color: var(--sunset-orange);
}

/* Card Features Section */
.card-features {
    background: linear-gradient(135deg, var(--seafoam) 0%, var(--sky-blue) 100%);
    padding: 4rem 0;
}

.card-features .section-title {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-label {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    font-family: 'Baloo 2', cursive;
}

/* Card CTA Section */
.card-cta {
    background: linear-gradient(135deg, var(--coral) 0%, var(--sunset-orange) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.card-cta .cta-title {
    color: var(--white);
    margin-bottom: 2rem;
}

.card-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.social-share {
    max-width: 600px;
    margin: 0 auto;
}

.share-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.share-icon {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.share-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design for Card Detail */
@media (max-width: 768px) {
    .card-image-wrapper {
        min-height: 300px;
        max-height: 50vh;
    }
    
    .card-image-icon {
        font-size: 7rem;
    }
    
    .card-image-label {
        font-size: 1.2rem;
    }
    
    .card-hero-overlay {
        padding: 2rem 0 1.5rem;
    }
    
    .card-hero-title {
        font-size: 2.5rem;
    }
    
    .card-identifier {
        font-size: 0.9rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-text {
        font-size: 1.1rem;
    }
    
    .challenge-description {
        font-size: 1.2rem;
    }
    
    .stoke-meter-large {
        width: 150px;
        height: 150px;
    }
    
    .meter-needle-large {
        height: 60px;
    }
    
    .stokenz-value {
        font-size: 2rem;
    }
    
    .count-action {
        font-size: 1rem;
    }
    
    .count-points {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .card-cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .card-image-wrapper {
        min-height: 250px;
        max-height: 40vh;
        aspect-ratio: 16 / 9;
    }
    
    .card-image-icon {
        font-size: 5rem;
    }
    
    .card-image-label {
        font-size: 1rem;
    }
    
    .card-hero-overlay {
        padding: 1.5rem 0 1rem;
    }
    
    .card-hero-title {
        font-size: 2rem;
    }
    
    .card-identifier {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.85rem;
    }
    
    .card-separator {
        display: none;
    }
    
    .back-to-home-link {
        top: 1rem;
        left: 1rem;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .story-text-wrapper {
        padding: 1.5rem;
    }
    
    .stoke-meter-large {
        width: 120px;
        height: 120px;
    }
    
    .meter-needle-large {
        height: 45px;
    }
    
    .stoke-level-large {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }
    
    .count-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .share-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-icon {
        width: 100%;
        max-width: 250px;
    }
}

