/* Premium Grand Opening Panel Styles */
.grand-opening-panel {
    width: 100%;
    max-width: none;
    margin: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

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

/* Glassmorphism Effect Overlay */
.grand-opening-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.panel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.premium-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 4px;
    margin-bottom: 24px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    animation: pulseTitle 2s ease-in-out infinite;
}

@keyframes pulseTitle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.98); }
}

.launch-date-text {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

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

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.timer-block span {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    min-width: 80px;
}

.timer-block label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 500;
}

/* Post-Countdown Revealed State */
.launch-message {
    padding: 20px;
    animation: fadeInReveal 1s ease-out forwards;
}

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

.reveal-title {
    font-size: 64px;
    font-weight: 950;
    background: linear-gradient(90deg, #ffd700, #fff, #ffd700, #fff, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: 4px;
    animation: revealShimmer 3s linear infinite, revealGlow 2s ease-in-out infinite alternate;
}

@keyframes revealShimmer {
    to { background-position: 200% center; }
}

@keyframes revealGlow {
    from { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    to { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8)); }
}

.reveal-subtitle {
    font-size: 20px;
    color: #ccc;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Responsive: Hide on Mobile as per rule */
@media (max-width: 768px) {
    .grand-opening-panel {
        display: none !important;
    }
}

/* Ensure desktop visibility */
@media (min-width: 769px) {
    .desktop-only {
        display: flex !important;
    }
}
