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

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

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

@keyframes float-emoji {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes drift {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(30px);
    }
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #ffebee 50%, #e8f5e9 100%);
    color: #c41e3a;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.emoji-float {
    position: fixed;
    font-size: 2rem;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

.emoji-1 { left: 5%; animation: float-emoji 20s linear infinite; animation-delay: 0s; }
.emoji-2 { left: 15%; animation: float-emoji 25s linear infinite; animation-delay: 2s; }
.emoji-3 { left: 25%; animation: float-emoji 22s linear infinite; animation-delay: 4s; }
.emoji-4 { left: 35%; animation: float-emoji 28s linear infinite; animation-delay: 6s; }
.emoji-5 { left: 45%; animation: float-emoji 24s linear infinite; animation-delay: 8s; }
.emoji-6 { left: 55%; animation: float-emoji 26s linear infinite; animation-delay: 10s; }
.emoji-7 { left: 65%; animation: float-emoji 23s linear infinite; animation-delay: 12s; }
.emoji-8 { left: 75%; animation: float-emoji 27s linear infinite; animation-delay: 14s; }
.emoji-9 { left: 85%; animation: float-emoji 21s linear infinite; animation-delay: 16s; }
.emoji-10 { left: 95%; animation: float-emoji 29s linear infinite; animation-delay: 18s; }
.emoji-11 { left: 10%; animation: float-emoji 25s linear infinite; animation-delay: 3s; }
.emoji-12 { left: 20%; animation: float-emoji 22s linear infinite; animation-delay: 5s; }
.emoji-13 { left: 30%; animation: float-emoji 27s linear infinite; animation-delay: 7s; }
.emoji-14 { left: 40%; animation: float-emoji 24s linear infinite; animation-delay: 9s; }
.emoji-15 { left: 50%; animation: float-emoji 26s linear infinite; animation-delay: 11s; }
.emoji-16 { left: 60%; animation: float-emoji 23s linear infinite; animation-delay: 13s; }
.emoji-17 { left: 70%; animation: float-emoji 28s linear infinite; animation-delay: 15s; }
.emoji-18 { left: 80%; animation: float-emoji 21s linear infinite; animation-delay: 17s; }
.emoji-19 { left: 90%; animation: float-emoji 25s linear infinite; animation-delay: 19s; }
.emoji-20 { left: 12%; animation: float-emoji 24s linear infinite; animation-delay: 1s; }

.logo-container {
    text-align: center;
    padding: 40px 20px 20px;
    margin-bottom: 40px;
}

.logo {
    max-width: 1200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    object-fit: cover;
    object-position: center 45%;
    aspect-ratio: 3.3 / 1;
    animation: float 4s ease-in-out infinite;
    transform: scale(1.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 20px;
    margin-bottom: 40px;
    border: 2px solid rgba(196, 30, 58, 0.2);
}

.hero {
    margin-bottom: 30px;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 300;
    color: #c41e3a;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.x-btn {
    background: linear-gradient(135deg, #c41e3a 0%, #28a745 100%);
    color: #ffffff;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

.x-btn:hover {
    background: linear-gradient(135deg, #8b0000 0%, #1e7e34 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    animation: none;
}

.pump-btn {
    background: linear-gradient(135deg, #c41e3a 0%, #28a745 100%);
    color: #ffffff;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

.pump-btn:hover {
    background: linear-gradient(135deg, #8b0000 0%, #1e7e34 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    animation: none;
}

.description {
    background: rgba(196, 30, 58, 0.05);
    color: #c41e3a;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 2px solid rgba(196, 30, 58, 0.2);
}

.description h2 {
    color: #c41e3a;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.description p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: center;
}

.gallery {
    margin-bottom: 40px;
}

.gallery h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #c41e3a;
    animation: pulse 2s ease-in-out infinite;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 3px solid #c41e3a;
    animation: pulse 3s ease-in-out infinite;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 16px rgba(196, 30, 58, 0.6);
    animation: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(0.7);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196, 30, 58, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 20px;
    margin-top: 40px;
    border: 2px solid rgba(196, 30, 58, 0.2);
}

footer p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #c41e3a;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

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

    .description {
        padding: 25px;
    }

    .description h2,
    .gallery h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
    }

    .social-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 200px;
    }

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

    .description h2,
    .gallery h2 {
        font-size: 1.5rem;
    }
}

/* Token copy box styles */
.token-section {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.token-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.9);
    padding: 8px 10px;
    border-radius: 12px;
    border: 2px solid rgba(196,30,58,0.15);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    max-width: 90vw;
    overflow-x: auto;
}
.token-input {
    border: none;
    outline: none;
    background: transparent;
    color: #c41e3a;
    font-weight: 600;
    width: auto;
    white-space: nowrap;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, 'Roboto Mono', 'Segoe UI Mono', monospace;
    font-size: 0.95rem;
    min-width: max-content;
}
.copy-btn {
    background: linear-gradient(135deg, #c41e3a 0%, #ff7b7b 100%);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.copy-btn:active { transform: translateY(1px); }
.copy-btn:hover { box-shadow: 0 6px 12px rgba(196,30,58,0.25); }
.copy-feedback {
    margin-left: 8px;
    color: #0a0;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
    font-size: 0.9rem;
}
.copy-feedback.visible {
    opacity: 1;
    transform: translateY(0);
}
.sr-only { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
