/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #02000a; /* Very deep dark base */
    font-family: 'Playfair Display', serif;
    /* Critical for centering everything */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* === Canvas Positioning === */
/* Both canvases sit absolutely behind the text */
canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#fluid-waves {
    z-index: 1;
    /* Enhances the glowing effect */
    filter: blur(20px) contrast(1.5);
}

#star-particles {
    z-index: 2;
}

/* === Main Centered Container === */
.center-container {
    z-index: 10; /* Ensures text is above animations */
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

/* A subtle glass-morphism card effect to make text readable */
.content-card {
    background: rgba(10, 5, 30, 0.4);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold border */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: fadeInCard 1.5s ease-out;
}

/* === Logo Styling === */
.rsa-logo-block {
    margin-bottom: 2.5rem;
}

.rsa-letters {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 7rem;
    line-height: 1;
    display: inline-flex;
    gap: 0.2rem;
    /* Drop shadow to lift logo off background */
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Text gradients matching the logo image */
.r-letter { 
    background: linear-gradient(135deg, #ff3e3e, #c70000); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.s-letter { 
    background: linear-gradient(135deg, #ff9d00, #ff6a00); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.a-letter { 
    background: linear-gradient(135deg, #fdd835, #d4a000); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.rsa-subtitle {
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #cfd8dc;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.dot { color: #ff9d00; font-size: 1.2rem; }

/* === Coming Soon Content Styling === */
.main-headline {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 2px;
}

.luxury-divider {
    height: 3px;
    width: 80px;
    /* Gold gradient divider */
    background: linear-gradient(90deg, transparent, #fdd835, #ff9d00, transparent);
    margin: 1.5rem auto;
}

.coming-soon-text {
    font-size: 2rem;
    color: #fdd835; /* Gold */
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.notify-text {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Entrance Animation */
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .rsa-letters { font-size: 4rem; }
    .rsa-subtitle { font-size: 0.7rem; letter-spacing: 2px; }
    .main-headline { font-size: 1.8rem; }
    .coming-soon-text { font-size: 1.5rem; }
}