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

:root {
    /* Christmas Color Palette */
    --christmas-dark: #0a0e1a;
    --christmas-darker: #05070d;
    --christmas-red: #dc2626;
    --christmas-red-dark: #b91c1c;
    --christmas-gold: #fbbf24;
    --christmas-cream: #fef3c7;
    --christmas-card: rgba(26, 30, 40, 0.8);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--christmas-dark);
    color: var(--christmas-cream);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}


.page-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 639px) {
    .hero-section .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 374px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-section .container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Snow Canvas */
.snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    mix-blend-mode: normal;
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 14, 26, 0.3) 0%,
        rgba(10, 14, 26, 0.2) 50%,
        rgba(10, 14, 26, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;
    text-align: center;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero-text {
    max-width: 56rem;
    width: 100%;
    margin: 0 auto 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 10;
    padding: 0 0.5rem;
}

@media (min-width: 375px) {
    .hero-text {
        padding: 0;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    background: #fbbf24;
    border: 1px solid #d97706;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sparkle-icon {
    width: 1rem;
    height: 1rem;
    color: #1a1815;
    stroke-width: 2;
    flex-shrink: 0;
}

.badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1815;
    letter-spacing: 0.01em;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    word-wrap: break-word;
    hyphens: auto;
}

@media (min-width: 375px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.title-red {
    color: var(--christmas-red);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    margin-top: 0.25rem;
    padding: 0 0.5rem;
}

@media (min-width: 375px) {
    .hero-subtitle {
        font-size: 1.5rem;
        padding: 0;
    }
}

@media (min-width: 480px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

.hero-badge-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 0.5rem;
}

@media (min-width: 375px) {
    .hero-badge-container {
        padding: 0;
    }
}

.hero-badge-container .app-store-badge {
    height: 50px;
    width: auto;
}

@media (min-width: 640px) {
    .hero-badge-container .app-store-badge {
        height: 60px;
    }
}

@media (min-width: 768px) {
    .hero-badge-container .app-store-badge {
        height: 70px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    outline: none;
}

.btn-primary {
    background: var(--christmas-red);
    color: white;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.6), 0 0 30px rgba(220, 38, 38, 0.3);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--christmas-red-dark);
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid var(--christmas-gold);
    color: white;
    backdrop-filter: blur(4px);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    background: rgba(30, 30, 30, 0.95);
    border-color: rgba(251, 191, 36, 0.8);
    transform: scale(1.05);
}

.hero-emoji {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    z-index: 10;
}

.hero-icon {
    display: inline-block;
    color: var(--christmas-gold);
    opacity: 0.9;
}

.hero-icon-svg {
    width: 2.25rem;
    height: 2.25rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.hero-icon.bounce-1 {
    animation: bounce 2s ease-in-out infinite;
    color: var(--christmas-gold);
}

.hero-icon.bounce-2 {
    animation: bounce 2s ease-in-out infinite 0.1s;
    color: var(--christmas-red);
}

.hero-icon.bounce-3 {
    animation: bounce 2s ease-in-out infinite 0.2s;
    color: var(--christmas-gold);
}

.hero-icon.bounce-4 {
    animation: bounce 2s ease-in-out infinite 0.3s;
    color: var(--christmas-red);
}

.hero-icon.bounce-5 {
    animation: bounce 2s ease-in-out infinite 0.4s;
    color: var(--christmas-gold);
}

.hero-examples {
    margin-top: 1.5rem;
    padding-top: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (max-width: 639px) {
    .hero-examples {
        padding-left: 0;
        padding-right: 0;
    }
}

.examples-grid {
    column-count: 1;
    column-gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

@media (max-width: 639px) {
    .examples-grid {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
}

.example-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    break-inside: avoid;
    margin-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

@media (max-width: 639px) {
    .example-item {
        width: 95%;
        margin-bottom: 10px;
    }
}

.example-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
    z-index: 100;
}

.example-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0.5rem;
}

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

/* iPhone Frame Styles */
.example-item-iphone {
    padding: 0;
    background: transparent;
    border: none;
    overflow: visible;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 639px) {
    .example-item-iphone {
        width: 95%;
        max-width: 95%;
        margin-bottom: 10px;
    }
}

@media (max-width: 374px) {
    .example-item-iphone {
        max-width: 95%;
    }
}

.example-item-iphone:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: none;
    border-color: transparent;
}

.iphone-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: #DC2626;
    border-radius: 3rem;
    padding: 0.5rem;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: block;
    box-sizing: border-box;
    overflow: visible;
}

@media (max-width: 639px) {
    .iphone-frame {
        width: 95%;
        max-width: 95%;
    }
}

@media (max-width: 374px) {
    .iphone-frame {
        max-width: 95%;
        padding: 0.4rem;
    }
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    max-width: 120px;
    height: 1.5rem;
    background: #DC2626;
    border-radius: 0 0 1rem 1rem;
    z-index: 10;
    overflow: visible;
}

.notch-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 30%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    border-radius: 0 0 1rem 1rem;
    animation: cameraFlash 0.5s ease-in-out;
}

.flash-ring {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: ringPulse 0.5s ease-out;
    z-index: 5;
    filter: blur(3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.ring-1 {
    animation-delay: 0s;
}

.ring-2 {
    animation-delay: 0.1s;
}

.ring-3 {
    animation-delay: 0.2s;
}

@keyframes ringPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.9;
        transform: translateX(-50%) scale(0.5);
        filter: blur(3px);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    20% {
        opacity: 0.8;
        filter: blur(4px);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
    40% {
        opacity: 0.5;
        filter: blur(8px);
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
        transform: translateX(-50%) scale(15);
        filter: blur(20px);
        box-shadow: 0 0 100px rgba(255, 255, 255, 0.1);
    }
}

@keyframes cameraFlash {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    40% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    60% {
        opacity: 0;
        transform: scale(1);
    }
}

.iphone-screen {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 2.5rem;
    overflow: hidden;
    aspect-ratio: 9 / 19.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-item-iphone .example-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.5rem;
}

.example-item-iphone:hover .example-image {
    transform: none;
}

@media (min-width: 640px) {
    .examples-grid {
        column-count: 2;
        column-gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .example-item {
        margin-bottom: 1rem;
    }
    
    .hero-examples {
        margin-top: 2rem;
        padding-top: 1rem;
    }
}

@media (min-width: 768px) {
    .examples-grid {
        column-count: 2;
        column-gap: 1.25rem;
        padding: 0 2rem;
    }
    
    .example-item {
        margin-bottom: 1.25rem;
    }
    
    .hero-examples {
        margin-top: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .examples-grid {
        column-count: 3;
        column-gap: 1.25rem;
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .example-item {
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1280px) {
    .examples-grid {
        column-count: 3;
        max-width: 1800px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(251, 191, 36, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.75rem;
    background: var(--christmas-gold);
    border-radius: 9999px;
    animation: scroll 2s ease-in-out infinite;
}

/* Showcase Section */
.showcase-section {
    position: relative;
    padding: 6rem 0 8rem;
    background: #1a1815;
    overflow: hidden;
}

.decorative-emojis {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.decorative-emojis .emoji-large {
    position: absolute;
    font-size: 9rem;
}

.decorative-emojis .emoji-large:nth-child(1) {
    top: 5rem;
    left: 2.5rem;
}

.decorative-emojis .emoji-large:nth-child(2) {
    top: 10rem;
    right: 5rem;
}

.decorative-emojis .emoji-large:nth-child(3) {
    bottom: 5rem;
    left: 25%;
}

.decorative-emojis .emoji-large:nth-child(4) {
    bottom: 10rem;
    right: 33%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.text-gold {
    color: var(--christmas-gold);
}

.section-subtitle {
    font-size: 1.25rem;
    color: white;
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 300;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.screenshots-container {
    position: relative;
    max-width: 75rem;
    margin: 0 auto 10rem;
    z-index: 5;
}

.screenshots {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    perspective: 1000px;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .screenshots {
        gap: 2rem;
        padding-bottom: 4rem;
    }
}

.screenshot-item {
    position: relative;
    transition: all 0.7s ease;
    cursor: pointer;
}

.screenshot-left {
    transform: translateX(20px) rotateY(-15deg) scale(0.9);
    opacity: 0.8;
    z-index: 20;
}

.screenshot-center {
    transform: translateX(0) rotateY(0deg) scale(1.1);
    opacity: 1;
    z-index: 30;
}

.screenshot-right {
    transform: translateX(-20px) rotateY(15deg) scale(0.9);
    opacity: 0.8;
    z-index: 20;
}

.screenshot-glow {
    position: absolute;
    inset: -10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3rem;
    filter: blur(1.5rem);
    transition: all 0.3s ease;
    z-index: -1;
}

.screenshot-item:hover .screenshot-glow {
    background: rgba(255, 255, 255, 0.15);
}

.screenshot-image {
    position: relative;
    width: 12rem;
    height: auto;
    filter: drop-shadow(0 25px 50px -12px rgba(0, 0, 0, 0.4));
    border-radius: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    background: white;
}

@media (min-width: 768px) {
    .screenshot-image {
        width: 16rem;
    }
}

.screenshot-info {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    animation: fadeIn 0.8s ease-out;
}

.screenshot-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--christmas-gold);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .screenshot-title {
        font-size: 1.875rem;
    }
}

.screenshot-description {
    font-size: 1.125rem;
    color: var(--christmas-cream);
}

.screenshot-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    border: none;
    background: rgba(251, 191, 36, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(251, 191, 36, 0.5);
}

.dot-active {
    background: var(--christmas-gold);
    width: 2rem;
}

.features-card-wrapper {
    position: relative;
    max-width: 80rem;
    margin: -10rem auto 0;
    z-index: 10;
}

@media (min-width: 768px) {
    .features-card-wrapper {
        margin: -12rem auto 0;
    }
}

.features-card {
    background: rgba(64, 150, 170, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: 0 1rem;
}

.features-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.features-card-divider {
    width: 60px;
    height: 3px;
    background: rgba(76, 175, 80, 0.8);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-card {
        padding: 3rem 4rem;
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: #1a1815;
    overflow: hidden;
}

.cta-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.cta-emoji {
    position: absolute;
    font-size: 6rem;
    animation: float 3s ease-in-out infinite;
}

.cta-emoji.float-1 {
    top: 2.5rem;
    left: 25%;
}

.cta-emoji.float-2 {
    bottom: 5rem;
    right: 25%;
    animation-delay: 0.2s;
}

.cta-emoji.float-3 {
    top: 50%;
    left: 2.5rem;
    font-size: 4rem;
    animation-delay: 0.4s;
}

.cta-emoji.float-4 {
    top: 33%;
    right: 2.5rem;
    font-size: 4rem;
    animation-delay: 0.6s;
}

.cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3);
    backdrop-filter: blur(4px);
}

.bell-icon {
    width: 1rem;
    height: 1rem;
    color: var(--christmas-red);
    animation: wiggle 2s ease-in-out infinite;
}

.cta-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--christmas-red);
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.75rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--christmas-cream);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-subtitle {
        font-size: 1.5rem;
    }
}

.cta-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.app-store-badge-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.app-store-badge-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.app-store-badge {
    height: 60px;
    width: auto;
    display: block;
}

@media (min-width: 768px) {
    .app-store-badge {
        height: 80px;
    }
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(254, 243, 199, 0.7);
}

.cta-features {
    padding-top: 3rem;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: rgba(254, 243, 199, 0.8);
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature-emoji {
    font-size: 1.875rem;
}

.cta-feature-item span:last-child {
    font-size: 0.875rem;
}

/* Footer */
.footer {
    position: relative;
    background: #1a1815;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    text-align: center;
}

.footer-logo {
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 9999px;
    filter: blur(1.5rem);
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-glow {
    background: rgba(251, 191, 36, 0.3);
}

.logo-text {
    position: relative;
    font-size: 4rem;
    line-height: 1;
    transition: transform 0.3s ease;
    display: block;
}

.footer-logo:hover .logo-text {
    transform: scale(1.1);
}

.footer-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    color: rgba(254, 243, 199, 0.7);
    font-size: 0.875rem;
}

.footer-divider {
    width: 100%;
    max-width: 28rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(251, 191, 36, 0.3), transparent);
}

.footer-copyright {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright-text {
    color: rgba(254, 243, 199, 0.6);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.heart-icon {
    width: 1rem;
    height: 1rem;
    color: var(--christmas-red);
    fill: var(--christmas-red);
    animation: pulse 2s ease-in-out infinite;
}

.footer-link {
    color: var(--christmas-gold);
    text-decoration: underline;
    text-decoration-style: dotted;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(251, 191, 36, 0.8);
}

.footer-note {
    color: rgba(254, 243, 199, 0.4);
    font-size: 0.75rem;
}

.footer-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    opacity: 0.5;
}

.footer-icon {
    display: inline-block;
}

.icon-svg {
    width: 2rem;
    height: 2rem;
}

.bounce-1 {
    animation: bounce 2s ease-in-out infinite;
}

.bounce-2 {
    animation: bounce 2s ease-in-out infinite 0.1s;
}

.bounce-3 {
    animation: bounce 2s ease-in-out infinite 0.2s;
}

.bounce-4 {
    animation: bounce 2s ease-in-out infinite 0.3s;
}

.bounce-5 {
    animation: bounce 2s ease-in-out infinite 0.4s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

