* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #a8d8ea 0%, #d4eaf7 50%, #c0e3f0 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: #333;
}

/* Animated background stars */
.stars, .stars2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.3"/><circle cx="30" cy="25" r="1" fill="%23ffffff" opacity="0.4"/><circle cx="60" cy="15" r="1.5" fill="%23ffffff" opacity="0.3"/><circle cx="85" cy="40" r="1" fill="%23ffffff" opacity="0.5"/><circle cx="45" cy="60" r="1" fill="%23ffffff" opacity="0.4"/><circle cx="70" cy="80" r="1.2" fill="%23ffffff" opacity="0.3"/></svg>') repeat;
    animation: twinkle 3s ease-in-out infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="50" r="1" fill="%23ffd700" opacity="0.4"/><circle cx="50" cy="30" r="1.2" fill="%23ffd700" opacity="0.3"/><circle cx="80" cy="70" r="1" fill="%23ffd700" opacity="0.5"/></svg>') repeat;
    animation: twinkle 4s ease-in-out infinite reverse;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2c3e50;
    text-shadow: 3px 3px 0px rgba(255, 215, 0, 0.3);
    letter-spacing: -1px;
}

.emoji {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

.tagline {
    background: linear-gradient(135deg, #d8a7ca, #b892d0);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(216, 167, 202, 0.4);
}

/* Main claim card */
.claim-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
    transition: transform 0.3s ease;
}

.claim-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.claim-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 215, 0, 0.1), transparent 50%);
    pointer-events: none;
    transition: opacity 0.3s;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Token info */
.token-info {
    margin-bottom: 30px;
}

.token-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #fff5e6, #ffe5b4);
    padding: 20px;
    border-radius: 20px;
    border: 3px solid #ffd700;
}

.token-icon {
    font-size: 3rem;
    animation: wiggle 3s ease-in-out infinite;
}

.token-badge h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.token-badge p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Allocation box */
.allocation-box {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.allocation-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.allocation-label {
    font-size: 0.9rem;
    color: #8b6914;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.allocation-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.amount-wave {
    font-size: 3rem;
    font-weight: 900;
    color: #2c3e50;
    animation: wave 2s ease-in-out infinite;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2c3e50;
}

.token-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.token-symbol-small {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    opacity: 0.8;
}

.token-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.allocation-value {
    font-size: 1.1rem;
    color: #8b6914;
    font-weight: 600;
    margin-bottom: 8px;
}

.allocation-note {
    font-size: 0.85rem;
    color: #8b6914;
    font-style: italic;
    opacity: 0.8;
}

/* Claim form */
.claim-form {
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.claim-button {
    width: 100%;
    padding: 25px;
    background: linear-gradient(135deg, #e94b9e, #d8a7ca, #b892d0, #a67fc9);
    background-size: 300% 300%;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(216, 167, 202, 0.6),
                0 0 40px rgba(233, 75, 158, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: gradientShift 3s ease infinite, buttonPulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.claim-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.claim-button:hover::before {
    opacity: 1;
}

.claim-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(216, 167, 202, 0.8),
                0 0 60px rgba(233, 75, 158, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

.claim-button:active {
    transform: translateY(-1px) scale(1);
}

.claim-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(216, 167, 202, 0.6),
                    0 0 40px rgba(233, 75, 158, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(216, 167, 202, 0.8),
                    0 0 60px rgba(233, 75, 158, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.button-icon {
    font-size: 1.8rem;
    animation: iconBounce 1.5s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shineMove 3s ease-in-out infinite;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.info-box {
    background: linear-gradient(135deg, #e8f5ff, #d4eaf7);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-top: 15px;
    border-left: 4px solid #b892d0;
}

.info-box p {
    color: #2c3e50;
    font-weight: 500;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.stat {
    background: linear-gradient(135deg, #f8fbfd, #e8f5ff);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #d4eaf7;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Mascot */
.mascot {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.bunny {
    font-size: 5rem;
    display: inline-block;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.gear {
    font-size: 3rem;
    position: absolute;
    right: 30%;
    top: 50%;
    animation: rotate 10s linear infinite;
    opacity: 0.7;
}

/* Bottom buttons */
.bottom-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.secondary-button {
    padding: 18px 25px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    color: white;
}

.secondary-button.yellow {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.secondary-button.purple {
    background: linear-gradient(135deg, #d8a7ca, #b892d0);
    box-shadow: 0 5px 20px rgba(216, 167, 202, 0.3);
}

.secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Proof section */
.proof-section {
    text-align: center;
}

.proof-button {
    background: linear-gradient(135deg, #b892d0, #a87fc7);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(184, 146, 208, 0.3);
}

.proof-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(184, 146, 208, 0.5);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px 20px;
    color: #2c3e50;
}

footer p {
    margin-bottom: 10px;
    font-weight: 500;
}

footer .small {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Floating emojis */
.floating-emojis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.emoji-float {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    
    .claim-card {
        padding: 25px;
    }
    
    .card-header h2 {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .bottom-buttons {
        grid-template-columns: 1fr;
    }
    
    .bunny {
        font-size: 3.5rem;
    }
}