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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    overflow: hidden;
    height: 100vh;
    background: #1a0a0a;
    color: #fff;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #3d1a1a 0%, #1a0a0a 70%);
    animation: pulse 4s ease-in-out infinite;
}

.background-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.2) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

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

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

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    animation: fadeIn 2s ease-in;
}

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

.rabbit-container {
    position: relative;
    width: 300px;
    height: 400px;
    animation: rabbitFloat 3s ease-in-out infinite;
}

@keyframes rabbitFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.rabbit-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 0.3; }
}

.rabbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.rabbit-head {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.ear {
    position: absolute;
    width: 40px;
    height: 120px;
    background: #0a0a0a;
    border-radius: 20px 20px 0 0;
    top: -60px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.ear-left {
    left: 30px;
    transform: rotate(-15deg);
    animation: earTwitchLeft 4s ease-in-out infinite;
}

.ear-right {
    right: 30px;
    transform: rotate(15deg);
    animation: earTwitchRight 4s ease-in-out infinite;
}

@keyframes earTwitchLeft {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(-20deg); }
}

@keyframes earTwitchRight {
    0%, 100% { transform: rotate(15deg); }
    50% { transform: rotate(20deg); }
}

.face {
    position: relative;
    width: 180px;
    height: 180px;
    background: #0a0a0a;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 
        0 0 30px rgba(139, 0, 0, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
}

.eye {
    position: absolute;
    width: 35px;
    height: 45px;
    background: #f5e6d3;
    border-radius: 50%;
    top: 50px;
    animation: blink 5s ease-in-out infinite;
}

.eye-left {
    left: 35px;
}

.eye-right {
    right: 35px;
}

@keyframes blink {
    0%, 90%, 100% { height: 45px; }
    95% { height: 5px; }
}

.pupil {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #4a148c;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: lookAround 8s ease-in-out infinite;
}

@keyframes lookAround {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-60%, -50%); }
    75% { transform: translate(-40%, -50%); }
}

.nose {
    position: absolute;
    width: 15px;
    height: 12px;
    background: #d4a574;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    animation: noseTwitch 3s ease-in-out infinite;
}

@keyframes noseTwitch {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.rabbit-body {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 200px;
}

.coat {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 50%, #1e3a5f 100%);
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: coatShimmer 4s ease-in-out infinite;
}

@keyframes coatShimmer {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 255, 255, 0.2); }
}

.collar {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    background: #f5f5dc;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.watch-hand {
    position: absolute;
    top: 60px;
    right: -40px;
    width: 80px;
    height: 80px;
    animation: watchSwing 2s ease-in-out infinite;
}

@keyframes watchSwing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.watch {
    width: 100%;
    height: 100%;
    position: relative;
}

.watch-face {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.6),
        inset 0 0 10px rgba(0, 0, 0, 0.2);
    border: 3px solid #b8941f;
}

.watch-face::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}

.watch-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 8px;
    font-weight: bold;
    color: #000;
}

.watch-numbers span {
    position: absolute;
}

.watch-numbers span:nth-child(1) { top: 5px; left: 50%; transform: translateX(-50%); }
.watch-numbers span:nth-child(2) { top: 50%; right: 5px; transform: translateY(-50%); }
.watch-numbers span:nth-child(3) { bottom: 5px; left: 50%; transform: translateX(-50%); }
.watch-numbers span:nth-child(4) { top: 50%; left: 5px; transform: translateY(-50%); }

.watch-hand-hour,
.watch-hand-minute,
.watch-hand-second {
    position: absolute;
    background: #000;
    transform-origin: bottom center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
}

.watch-hand-hour {
    width: 3px;
    height: 15px;
    animation: hourHand 43200s linear infinite;
}

.watch-hand-minute {
    width: 2px;
    height: 20px;
    animation: minuteHand 3600s linear infinite;
}

.watch-hand-second {
    width: 1px;
    height: 25px;
    background: #ff0000;
    animation: secondHand 60s linear infinite;
}

@keyframes hourHand {
    from { transform: translate(-50%, -100%) rotate(0deg); }
    to { transform: translate(-50%, -100%) rotate(360deg); }
}

@keyframes minuteHand {
    from { transform: translate(-50%, -100%) rotate(0deg); }
    to { transform: translate(-50%, -100%) rotate(360deg); }
}

@keyframes secondHand {
    from { transform: translate(-50%, -100%) rotate(0deg); }
    to { transform: translate(-50%, -100%) rotate(360deg); }
}

.text-content {
    text-align: center;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(139, 0, 0, 0.5); }
}

.title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 5px;
    animation: titleFloat 3s ease-in-out infinite;
}

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

.coming-soon {
    font-size: 2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-style: italic;
    animation: comingSoonPulse 2s ease-in-out infinite;
}

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

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

.link-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #2d5a8a 0%, #1e3a5f 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.link-btn:hover::before {
    width: 300px;
    height: 300px;
}

.link-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(45, 90, 138, 0.5);
}

.link-btn span {
    position: relative;
    z-index: 1;
}

.twitter-link {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.twitter-link:hover {
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.5);
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .rabbit-container {
        width: 250px;
        height: 350px;
    }
    
    .links {
        flex-direction: column;
        align-items: center;
    }
    
    .link-btn {
        width: 200px;
    }
}

