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

:root {
    --christmas-red: #C41E3A;
    --christmas-green: #165B33;
    --snow-white: #FFFFFF;
    --cream: #FFF8F0;
    --gold: #FFD700;
    --dark: #1a1a1a;
    --gray: #666;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

/* Snow/Confetti Effect */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1.5em;
    animation: fall linear infinite;
    opacity: 0.7;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* Announcement Banner */
.announcement-banner {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--christmas-red), #d4234a, var(--christmas-red));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    padding: 0.75rem 2rem;
    z-index: 1001;
    text-align: center;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.separator {
    opacity: 0.6;
}

.goal-text {
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 3px solid var(--christmas-red);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Mountains of Christmas', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--christmas-red);
}



.play-link {
    color: var(--christmas-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.play-link:hover {
    color: var(--christmas-red);
}

.cta-button {
    background: var(--christmas-red);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.cta-button:hover {
    background: #a01828;
    transform: translateY(-2px);
}

/* ATH Badge */
.ath-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), #ffa500);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6); }
}

.badge-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.badge-value {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--christmas-red);
    font-family: 'Mountains of Christmas', serif;
}

.badge-arrow {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    padding: 200px 2rem 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
}

.hero-content h1 {
    font-family: 'Mountains of Christmas', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--christmas-red);
    margin-bottom: 1rem;
    line-height: 1;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--christmas-green);
    font-weight: 600;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--christmas-red);
    color: white;
}

.btn-primary:hover {
    background: #a01828;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--christmas-green);
    color: var(--christmas-green);
}

.btn-secondary:hover {
    background: var(--christmas-green);
    color: white;
}

.contract-address {
    margin-top: 2rem;
}

.ca-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.ca-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #eee;
}

.ca-box span {
    font-family: monospace;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
}

.copy-btn {
    background: var(--christmas-green);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #0f4223;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.santa-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 50% 40% 60% 50% / 45% 55% 45% 55%;
    opacity: 0.95;
    filter: saturate(0.9);
    border: 8px solid var(--christmas-green);
    box-shadow: 
        0 0 0 4px var(--cream),
        0 0 0 12px rgba(22, 91, 51, 0.3),
        0 20px 40px rgba(22, 91, 51, 0.2);
    transition: all 0.3s ease;
}

.santa-image:hover {
    border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
    transform: scale(1.02);
    box-shadow: 
        0 0 0 4px var(--cream),
        0 0 0 12px rgba(22, 91, 51, 0.4),
        0 25px 50px rgba(22, 91, 51, 0.25);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(22, 91, 51, 0.05));
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    border-radius: 16px;
    border: 2px solid rgba(196, 30, 58, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.2);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--christmas-red);
    margin-bottom: 0.5rem;
    font-family: 'Mountains of Christmas', serif;
}

.stat-label {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

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

.section-title {
    font-family: 'Mountains of Christmas', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--christmas-red);
}

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

/* Why Buy Now Section */
.why-buy-section {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(22, 91, 51, 0.08));
    padding: 5rem 2rem;
}

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

.why-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--christmas-red);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.2);
}

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

.why-card h3 {
    font-size: 1.3rem;
    color: var(--christmas-green);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.why-highlight {
    font-weight: 700;
    color: var(--christmas-red) !important;
    font-size: 1.1rem !important;
}

/* Roadmap Section */
.roadmap-section {
    background: white;
    padding: 5rem 2rem;
}

.progress-to-goal {
    max-width: 800px;
    margin: 3rem auto 4rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(22, 91, 51, 0.05));
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--christmas-red);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.progress-bar-container {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--christmas-red), var(--gold));
    border-radius: 50px;
    transition: width 1s ease-out;
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
    position: relative;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(196, 30, 58, 0.5); }
    50% { box-shadow: 0 0 30px rgba(196, 30, 58, 0.8); }
}

.progress-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.progress-footer strong {
    color: var(--christmas-red);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--christmas-red), var(--christmas-green));
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 0;
}

.roadmap-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.roadmap-item.completed .roadmap-marker {
    border-color: var(--christmas-green);
    background: var(--christmas-green);
}

.roadmap-item.active .roadmap-marker {
    border-color: var(--christmas-red);
    background: var(--christmas-red);
    animation: bounce 1s ease-in-out infinite;
}

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

.roadmap-item.goal .roadmap-marker {
    border-color: var(--gold);
    background: var(--gold);
    animation: shimmer 2s ease-in-out infinite;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.roadmap-item.future .roadmap-marker {
    border-color: #ddd;
    background: white;
}

.roadmap-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-grow: 1;
    border: 2px solid #eee;
}

.roadmap-item.active .roadmap-content {
    border-color: var(--christmas-red);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
}

.roadmap-item.goal .roadmap-content {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.roadmap-content h3 {
    font-size: 1.5rem;
    color: var(--christmas-red);
    margin-bottom: 0.5rem;
    font-family: 'Mountains of Christmas', serif;
}

.roadmap-content p {
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.roadmap-item.goal .roadmap-content p strong {
    font-size: 1.1rem;
    color: var(--christmas-red);
}

/* Community/Comeback Section */
.community-section {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(22, 91, 51, 0.05));
    padding: 5rem 2rem;
}

.comeback-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 2rem;
    flex-wrap: wrap;
}

.comeback-card {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 3px solid #eee;
    min-width: 150px;
    transition: all 0.3s;
}

.comeback-card:hover {
    transform: scale(1.05);
}

.comeback-card.highlight {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), white);
}

.comeback-card.active {
    border-color: var(--christmas-red);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.comeback-card.goal {
    border-color: var(--christmas-green);
    box-shadow: 0 8px 30px rgba(22, 91, 51, 0.2);
}

.comeback-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.comeback-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--christmas-red);
    font-family: 'Mountains of Christmas', serif;
}

.comeback-badge {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--christmas-green);
}

.comeback-arrow {
    font-size: 2rem;
    color: var(--christmas-red);
    font-weight: 700;
}

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

.cta-subtext {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    background: white;
}

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

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Tokenomics */
.tokenomics-section {
    background: var(--cream);
}

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

.tokenomics-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

.percentage {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--christmas-red);
    margin-bottom: 0.5rem;
}

.tokenomics-card .label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* How to Buy */
.buy-section {
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--christmas-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--christmas-green);
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: var(--christmas-green);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Mountains of Christmas', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--christmas-green);
}

.cta-section .btn-primary:hover {
    background: var(--cream);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--christmas-green);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 3rem 2rem;
    color: white;
}

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

.socials {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .announcement-content {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .why-buy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .comeback-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .comeback-arrow {
        transform: rotate(90deg);
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 170px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .santa-image {
        max-width: 400px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .socials {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .announcement-content {
        font-size: 0.7rem;
        padding: 0.5rem;
    }

    .why-buy-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-item {
        gap: 1rem;
    }

    .comeback-card {
        min-width: 120px;
        padding: 1.5rem 1.5rem;
    }

    .comeback-value {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .progress-to-goal {
        padding: 1.5rem;
    }

    .progress-header {
        font-size: 0.9rem;
    }

    .progress-footer {
        font-size: 0.8rem;
    }
}
