@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600&display=swap');

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffd1dc, #e0f0ff);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
}

.emoji {
    position: absolute;
    font-size: 2.5rem;
    user-select: none;
    animation: fall linear infinite;
    z-index: 0;
    top: -50px;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 1;
    }
}

.content {
    position: relative;
    text-align: center;
    padding-top: 10vh;
    z-index: 1;
}

h1 {
    font-size: 3rem;
    color: #444;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.buy-button {
    padding: 16px 32px;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.1),
        0 8px 16px rgba(0,122,255,0.2),
        inset 0 1px 1px rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    -webkit-tap-highlight-color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1),
                   0 8px 16px rgba(255,165,0,0.2),
                   inset 0 1px 1px rgba(255,255,255,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15),
                   0 12px 24px rgba(255,165,0,0.3),
                   inset 0 1px 1px rgba(255,255,255,0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1),
                   0 8px 16px rgba(255,165,0,0.2),
                   inset 0 1px 1px rgba(255,255,255,0.2);
    }
}

.arrow {
    position: absolute;
    font-size: 3rem;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(255, 165, 0, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    top: 50%;
    transform: translateY(-50%);
    animation: bounceArrow 0.6s infinite;
}

.arrow-left {
    left: -120px;
}

.arrow-right {
    right: -120px;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(8px);
    }
}

.arrow-text {
    position: absolute;
    font-size: 1.8rem;
    font-weight: 900;
    animation: rgbText 2s infinite;
    text-shadow: 
        2px 2px 0 #FFD700,
        -2px -2px 0 #FFD700,
        2px -2px 0 #FFD700,
        -2px 2px 0 #FFD700;
    padding: 5px 15px;
    border-radius: 8px;
}

@keyframes rgbText {
    0% { color: #ff0000; }
    33% { color: #00ff00; }
    66% { color: #0000ff; }
    100% { color: #ff0000; }
}

@keyframes blink {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1.15); 
    }
    50% { 
        opacity: 0.9; 
        transform: scale(1.05); 
    }
}

.button-container {
    position: relative;
    display: inline-block;
}

.arrow-text-left {
    left: -160px;
    top: -20px;
    transform: rotate(-15deg);
}

.arrow-text-right {
    right: -160px;
    top: -20px;
    transform: rotate(15deg);
}

.container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.video-box {
    margin-top: 0.1rem;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    overflow: hidden;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wallet-address {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.25));
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    user-select: all;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 4px 20px rgba(255, 215, 0, 0.2),
        0 0 30px rgba(255, 165, 0, 0.15),
        inset 0 1px 1px rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    margin: 15px 0;
    animation: glow 2s infinite;
}

.wallet-address::before {
    content: "COPY ADDRESS 📋";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #000;
    background: rgba(255, 215, 0, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    animation: bounce 1s infinite;
}

.wallet-address:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 165, 0, 0.35));
    transform: scale(1.02);
    box-shadow: 
        0 6px 25px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 165, 0, 0.2),
        inset 0 1px 1px rgba(255,255,255,0.4);
}

.wallet-address:active {
    transform: scale(0.98);
}

@keyframes glow {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(255, 215, 0, 0.2),
            0 0 30px rgba(255, 165, 0, 0.15),
            inset 0 1px 1px rgba(255,255,255,0.4);
    }
    50% {
        box-shadow: 
            0 4px 25px rgba(255, 215, 0, 0.4),
            0 0 40px rgba(255, 165, 0, 0.3),
            inset 0 1px 1px rgba(255,255,255,0.4);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.assets-gif {
    width: 120px;
    height: auto;
    margin-bottom: 5px;
    animation: float 3s ease-in-out infinite;
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    opacity: 0.95;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.habbo-arrow {
    width: 80px;
    height: auto;
    position: absolute;
    animation: float 3s ease-in-out infinite;
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    opacity: 0.95;
}

.habbo-left {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.habbo-right {
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.floating-video {
    position: fixed;
    width: 200px;
    height: 350px;
    right: 20px;
    top: -350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    animation: floatDown 8s linear infinite;
    z-index: 2;
    background: transparent;
}

.floating-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
}

@keyframes floatDown {
    0% {
        top: -350px;
    }
    100% {
        top: 100vh;
    }
}

.floating-video-up {
    position: fixed;
    width: 200px;
    height: 350px;
    left: 20px;
    bottom: -350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    animation: floatUp 8s linear infinite;
    z-index: 2;
    background: transparent;
}

.floating-video-up img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
}

@keyframes floatUp {
    0% {
        bottom: -350px;
    }
    100% {
        bottom: 100vh;
    }
}

.floating-video-middle {
    position: fixed;
    width: 200px;
    height: 350px;
    right: 20px;
    top: -350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    animation: floatDown 8s linear infinite;
    animation-delay: 4s;
    z-index: 2;
    background: transparent;
}

.floating-video-middle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
}

.floating-video-left-middle {
    position: fixed;
    width: 200px;
    height: 350px;
    left: 20px;
    bottom: -350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    animation: floatUp 8s linear infinite;
    animation-delay: 4s;
    z-index: 2;
    background: transparent;
}

.floating-video-left-middle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
}
