.icorn-rocket {
    padding: 20px;
    margin: 15px 0;
    background: linear-gradient(45deg, #1d3844, #152932);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.icorn-rocket::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}


@keyframes twinkle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Star base styles */
.icorn-rocket .star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
    opacity: 0.5;
}

/* Individual star styles */
.icorn-rocket .star-1 { width: 2px; height: 2px; top: 10%; left: 15%; animation-delay: 0s; }
.icorn-rocket .star-2 { width: 3px; height: 3px; top: 25%; left: 85%; animation-delay: 0.2s; }
.icorn-rocket .star-3 { width: 2px; height: 2px; top: 45%; left: 35%; animation-delay: 0.4s; }
.icorn-rocket .star-4 { width: 4px; height: 4px; top: 65%; left: 75%; animation-delay: 0.6s; }
.icorn-rocket .star-5 { width: 2px; height: 2px; top: 85%; left: 25%; animation-delay: 0.8s; }
.icorn-rocket .star-6 { width: 3px; height: 3px; top: 15%; left: 55%; animation-delay: 1s; }
.icorn-rocket .star-7 { width: 2px; height: 2px; top: 35%; left: 90%; animation-delay: 1.2s; }
.icorn-rocket .star-8 { width: 3px; height: 3px; top: 75%; left: 10%; animation-delay: 1.4s; }
.icorn-rocket .star-9 { width: 2px; height: 2px; top: 5%; left: 40%; animation-delay: 1.6s; }
.icorn-rocket .star-10 { width: 4px; height: 4px; top: 55%; left: 60%; animation-delay: 1.8s; }
.icorn-rocket .star-11 { width: 2px; height: 2px; top: 90%; left: 80%; animation-delay: 2s; }
.icorn-rocket .star-12 { width: 3px; height: 3px; top: 30%; left: 20%; animation-delay: 2.2s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

@keyframes wobble {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes icorn-rocket-fly-circle {
    0%{
        transform: translate(0, 0);
        opacity: 1;
    }
    5%{
        transform: translate(-50px, 50px);
    }
    25% {
        transform: translate(600px, -600px);
        opacity: 1;
    }
    30% {
        transform: translate(600px, -600px);
        opacity: 0;
    }
    50% {
        transform: translate(-600px, 600px);
        opacity: 0;
    }
    55% {
        transform: translate(-600px, 600px);
        opacity: 1;
    }
    100%{
        transform: translate(0, 0);
    }
}




.icorn-rocket-svg {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    max-height: 300px;
    z-index: 2;
}

.icorn-rocket-svg img {
    display: block;
    height: 100%;
    animation: wobble 3s ease-in-out infinite;

}

.icorn-rocket-stars {
    pointer-events: none;
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 3;
    overflow: visible;
}

.icorn-rocket-star {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    border-radius: 50%;
    animation: icorn-star-move 2.5s linear infinite;
}

@keyframes icorn-star-move {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translate(-800px, 800px) scale(0.5);
        opacity: 0;
    }
} 