* { margin:0; padding:0; box-sizing:border-box; font-family: 'Arial', sans-serif; }

body {
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background: linear-gradient(135deg, #FFD700, #333333);
    color:#fff;
    overflow:hidden;
}

.coming-soon-wrapper {
    position: relative;
    text-align: center;
}

.content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 15px;
    animation: pop 1.5s ease-out infinite alternate;
}

p {
    font-size: 1.5rem;
    color: #fff;
}

.cards-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
}

/* Desktop cards */
.card {
    position: absolute;
    width: 140px;
    min-width: 120px;
    height: 80px;
    padding: 10px;
    background: rgba(255,255,255,0.95);
    color: #333;
    border: 2px solid #FFD700;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    top: 50%;
    left: 90%;
    transform-origin: -200px 0; 
    transform: rotate(var(--angle)) translateX(200px);
    animation: orbit 20s linear infinite;
    text-align: center;
    word-wrap: break-word;
}

/* Orbit animation */
@keyframes orbit {
    0% { transform: rotate(var(--angle)) translateX(200px); }
    100% { transform: rotate(calc(var(--angle) + 360deg)) translateX(200px); }
}

/* Pop animation for heading */
@keyframes pop {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* ======================
   Responsive adjustments
====================== */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    p { font-size: 1.2rem; }
    /* Hide cards on tablet */
    .card { display: none; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    p { font-size: 1rem; }
    /* Hide cards on mobile */
    .card { display: none; }
}
