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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: Impact, 'Arial Black', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    line-height: 1.6;
    position: relative;
}


canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.stars-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.star:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; left: 70%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 50%; left: 85%; animation-delay: 1s; }
.star:nth-child(4) { top: 60%; left: 15%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 80%; left: 50%; animation-delay: 2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.container {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #c41e3a, #165b33);
    border: 4px dashed #d4af37;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    transform: rotate(-1.5deg);
}

.title {
    margin: 0;
    color: #ffffff;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    animation: bounce 0.8s infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

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

.subtitle {
    margin: 10px 0 0 0;
    color: #d4af37;
    font-size: 1.5rem;
    animation: pulse 1.5s infinite;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.hero {
    text-align: center;
    margin: 40px 0;
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

.santa-box {
    background: linear-gradient(45deg, #c41e3a, #165b33);
    border: 4px dashed #d4af37;
    padding: 30px;
    border-radius: 15px;
    transform: rotate(1.5deg);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.santa-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: float 3s ease-in-out infinite;
    border: 4px solid #d4af37;
}

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

.santa-text {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
    margin: 0 0 10px 0;
}

.sauce-tagline {
    font-size: 1.5rem;
    color: #d4af37;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
    margin: 0;
    animation: pulse 1.5s infinite;
}

.features {
    margin: 60px 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
    font-weight: 900;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #c41e3a, #a51e30);
    border: 3px solid #d4af37;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transform: skewY(-3deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: skewY(-3deg) translateY(-10px) rotate(2deg);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.4);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 10px;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 10px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 900;
    letter-spacing: 1px;
}

.feature-card p {
    color: #ffffff;
    font-size: 0.9rem;
}

.timeline {
    margin: 60px 0;
}

.schedule-toggle {
    width: 100%;
    background: linear-gradient(135deg, #c41e3a, #165b33);
    border: 3px solid #d4af37;
    border-radius: 15px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.schedule-toggle:hover {
    background: linear-gradient(135deg, #d4af37, #b8941e);
    transform: scale(1.02);
}

.schedule-toggle h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0;
    padding: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.schedule-toggle-icon {
    font-size: 2rem;
    transition: transform 0.3s;
    display: inline-block;
}

.schedule-toggle.active .schedule-toggle-icon {
    transform: rotate(45deg);
}

.timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
    font-weight: 900;
}

.schedule-list {
    background: rgba(196, 30, 58, 0.1);
    border: 3px double #d4af37;
    border-radius: 10px;
    padding: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.schedule-list.active {
    max-height: 2000px;
    transition: max-height 0.4s ease-in;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin: 10px 0;
    background: rgba(0, 0, 0, 0.2);
    border-left: 4px solid #165b33;
    border-radius: 5px;
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.time {
    color: #d4af37;
    font-size: 1.2rem;
    min-width: 60px;
}

.activity {
    color: #ffffff;
    font-size: 1rem;
    text-align: right;
    flex: 1;
    padding-left: 20px;
}

.gallery {
    margin: 60px 0;
    transform: rotate(-1.5deg);
}


.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
    font-weight: 900;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 4px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.gallery-caption {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonials {
    margin: 60px 0;
    transform: rotate(1.5deg);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
    font-weight: 900;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-btn {
    background: #c41e3a;
    color: #ffffff;
    border: 3px solid #d4af37;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-btn:hover {
    background: #d4af37;
    color: #000000;
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.testimonial-btn-prev {
    order: -1;
}

.testimonial-btn-next {
    order: 1;
}

.testimonial-container {
    position: relative;
    height: 180px;
    min-height: 180px;
    overflow: hidden;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    flex: 1;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    min-height: 140px;
    background: linear-gradient(135deg, #165b33, #0f3460);
    border: 3px solid #d4af37;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
    opacity: 1;
}

.testimonial-text {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #d4af37;
    font-size: 0.9rem;
    font-style: italic;
    text-align: right;
}

.texting-feed {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(45deg, #c41e3a, #165b33);
    border: 4px solid #d4af37;
    border-radius: 15px;
    transform: rotate(1.5deg);
}

.texting-feed h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: 900;
}

.text-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 2px solid #d4af37;
}

.text-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    animation: slideInUp 0.4s ease-out;
    max-width: 90%;
}

.text-message.sent {
    align-self: flex-end;
    background: linear-gradient(135deg, #165b33, #0f3460);
    color: #d4af37;
    border: 1px solid #d4af37;
    text-align: right;
}

.text-message.received {
    align-self: flex-start;
    background: rgba(196, 30, 58, 0.6);
    color: #ffffff;
    border: 1px solid #c41e3a;
}

.cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(45deg, #c41e3a, #165b33);
    border: 4px solid #d4af37;
    border-radius: 15px;
    animation: pulse 2s infinite;
    transform: rotate(1.5deg);
}

.cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: 900;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border: 3px solid #000;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background: #c41e3a;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
    background: #d4af37;
    color: #000000;
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: #165b33;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(22, 91, 51, 0.4);
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000000;
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.btn-tertiary {
    background: #0f3460;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(15, 52, 96, 0.4);
}

.btn-tertiary:hover {
    background: #d4af37;
    color: #000000;
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.countdown {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #c41e3a, #165b33);
    border: 4px solid #d4af37;
    border-radius: 15px;
    text-align: center;
    transform: rotate(-1.5deg);
}

.countdown h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: 900;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 3px solid #d4af37;
    min-width: 80px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-label {
    font-size: 0.9rem;
    color: #ffffff;
    margin-top: 5px;
}

.countdown-text {
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.donation-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(196, 30, 58, 0.1);
    border: 3px double #d4af37;
    border-radius: 15px;
    text-align: center;
    transform: rotate(1.5deg);
}

.donation-section h2 {
    font-size: 2.5rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 900;
}

.donation-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.donation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.donation-label {
    font-size: 1.1rem;
    color: #d4af37;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    font-weight: 900;
}

.donation-address-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.donation-address-input {
    flex: 1;
    min-width: 300px;
    padding: 15px;
    font-size: 1rem;
    border: 3px solid #d4af37;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    text-align: center;
    font-family: 'Courier New', monospace;
}

.spotify-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(22, 91, 51, 0.1);
    border: 3px double #d4af37;
    border-radius: 15px;
    text-align: center;
    transform: rotate(-1.5deg);
}

.spotify-section h2 {
    font-size: 2.5rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 900;
}

.spotify-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.spotify-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.music-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 0 20px;
}

.music-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 19px;
    border: 3px solid #d4af37;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-transform: uppercase;
}

.spotify-link {
    background: linear-gradient(135deg, #1db954, #1ed760);
    color: #000000;
    font-weight: 900;
}

.spotify-link:hover {
    background: linear-gradient(135deg, #d4af37, #b8941e);
    color: #000000;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.apple-music-link {
    background: linear-gradient(135deg, #fa243c, #fc3c4c);
    color: #ffffff;
    font-weight: 900;
}

.apple-music-link:hover {
    background: linear-gradient(135deg, #d4af37, #b8941e);
    color: #000000;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.token-section {
    margin: 25px auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    transform: rotate(-1.5deg);
}

.token-address-box {
    background: linear-gradient(135deg, #c41e3a, #165b33);
    padding: 19px 25px;
    border: 4px solid #d4af37;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.token-label {
    color: #d4af37;
    font-size: 0.85rem;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.token-address-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.token-address-input {
    flex: 1;
    padding: 11px 12px;
    font-size: 0.85rem;
    border: 2px solid #d4af37;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #d4af37;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    word-break: break-all;
}

.token-address-input::selection {
    background: rgba(212, 175, 55, 0.3);
}

.copy-btn {
    padding: 11px 19px;
    background: #c41e3a;
    color: #ffffff;
    border: 2px solid #d4af37;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-transform: uppercase;
}

.copy-btn:hover {
    background: #d4af37;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.copy-feedback {
    color: #d4af37;
    font-size: 0.8rem;
    margin: 5px 0 0 0;
    min-height: 16px;
    animation: fadeInOut 2s ease-in-out;
}

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

.token-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.token-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 19px;
    border: 3px solid #d4af37;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-transform: uppercase;
}

.pumpfun-link {
    background: linear-gradient(135deg, #165b33, #0f3460);
    color: #ffffff;
}

.pumpfun-link:hover {
    background: linear-gradient(135deg, #d4af37, #b8941e);
    color: #000000;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.twitter-link {
    background: linear-gradient(135deg, #0f3460, #165b33);
    color: #ffffff;
}

.twitter-link:hover {
    background: linear-gradient(135deg, #d4af37, #b8941e);
    color: #000000;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.link-emoji {
    font-size: 1.1rem;
}

.faq {
    margin: 60px 0;
    transform: rotate(-1.5deg);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: 900;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(196, 30, 58, 0.1);
    border: 3px solid #d4af37;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #c41e3a, #a51e30);
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-align: left;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.faq-question:hover {
    background: linear-gradient(135deg, #d4af37, #b8941e);
    color: #000000;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(90deg, #c41e3a, #165b33);
    border-top: 4px solid #d4af37;
    font-size: 0.9rem;
}

.footer p {
    margin: 5px 0;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .santa-art {
        font-size: 3rem;
    }

    .santa-text {
        font-size: 1.2rem;
    }

    .features h2,
    .timeline h2,
    .testimonials h2,
    .cta h2 {
        font-size: 1.8rem;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .token-address-wrapper {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
    }

    .token-links {
        flex-direction: column;
    }

    .token-link {
        width: 100%;
        justify-content: center;
    }
}
