.coming-soon-banner {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(to left, #2563eb, #1e40af);
    padding: 2rem 3rem;
}

.dark .coming-soon-banner {
    background: linear-gradient(to left, #1e40af, #1f2937);
}

/* Decorative Circles */
.coming-soon-circle {
    position: absolute;
    border-radius: 9999px;
    filter: blur(40px);
    pointer-events: none;
}

.circle-1 {
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(255, 255, 255, 0.1);
}

.circle-2 {
    bottom: -2.5rem;
    left: -2.5rem;
    width: 14rem;
    height: 14rem;
    background: rgba(255, 255, 255, 0.05);
}

.circle-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18rem;
    height: 18rem;
    background: rgba(147, 197, 253, 0.1);
}

/* Inner Layout */
.coming-soon-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media (min-width: 768px) {
    .coming-soon-inner {
        flex-direction: row;
    }
}

/* Text Section */
.coming-soon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .coming-soon-text {
        align-items: flex-start;
        text-align: right;
    }
}

/* Badge */
.coming-soon-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    width: fit-content;
}

.coming-soon-dot {
    width: 1rem;
    height: 1rem;
    animation: pulse 1.5s infinite;
}

/* Title */
.coming-soon-title {
    font-size: 1.5rem;
    color: white;
    line-height: 2.2;
}

.coming-soon-title span {
    color: #bfdbfe;
}

@media (min-width: 768px) {
    .coming-soon-title {
        font-size: 1.875rem;
    }
}

/* Description */
.coming-soon-desc {
    color: #bfdbfe;
    font-size: 0.9rem;
    max-width: 28rem;
    line-height: 2;
}

/* Dots */
.coming-soon-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coming-soon-dots span:nth-child(1) { background: rgba(255,255,255,0.8); }
.coming-soon-dots span:nth-child(2) { background: rgba(255,255,255,0.5); }
.coming-soon-dots span:nth-child(3) { background: rgba(255,255,255,0.3); }

.coming-soon-dots span {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
}

/* Icon Wrapper */
.coming-soon-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 9rem;
    height: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .coming-soon-icon-wrapper {
        width: 11rem;
        height: 11rem;
    }
}

/* Rotating Ring */
.coming-soon-ring {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    border: 4px dashed rgba(255, 255, 255, 0.3);
    animation: spin 10s linear infinite;
}

/* Icon Circle */
.coming-soon-icon-circle {
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .coming-soon-icon-circle {
        width: 8rem;
        height: 8rem;
    }
}

.coming-soon-icon-circle svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

@media (min-width: 768px) {
    .coming-soon-icon-circle svg {
        width: 4rem;
        height: 4rem;
    }
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
