/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #800020;
    --secondary-color: #e6cba8;
    --accent-color: #0a1a2f;
    --text-light: #ffffff;
    --text-dark: #333333;
    --luxury-gold: #d4af37;
    --platinum: #e5e4e2;
    --deep-burgundy: #722f37;
    --champagne: #f7e7ce;
    --gradient-primary: linear-gradient(135deg, #800020 0%, #722f37 50%, #a00030 100%);
    --gradient-luxury: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #e6cba8 100%);
    --gradient-burgundy: linear-gradient(135deg, #800020 0%, #a00030 50%, #722f37 100%);
    --gradient-platinum: linear-gradient(135deg, #e5e4e2 0%, #f8f8f8 50%, #ffffff 100%);
    --gradient-accent: linear-gradient(135deg, #0a1a2f 0%, #1a2a3f 50%, #2a3a4f 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --luxury-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    --gold-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --burgundy-glow: 0 0 25px rgba(128, 0, 32, 0.4);
    --premium-border: 1px solid rgba(212, 175, 55, 0.2);
    --burgundy-border: 1px solid rgba(128, 0, 32, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(128, 0, 32, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(128, 0, 32, 0.05) 0%, transparent 70%),
        var(--gradient-accent);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    backdrop-filter: blur(15px);
    letter-spacing: 0.5px;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Particle System */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-secondary);
    opacity: 0.12;
    animation: float 25s infinite linear;
    filter: blur(0.5px);
    box-shadow: 0 0 20px rgba(230, 203, 168, 0.3);
}

/* Moon shapes */
.moon-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 203, 168, 0.8) 0%, rgba(230, 203, 168, 0.3) 100%);
    opacity: 0.15;
    animation: moonFloat 30s infinite linear;
    box-shadow: 
        0 0 30px rgba(230, 203, 168, 0.4),
        inset -20px 0 0 rgba(0, 0, 0, 0.1);
}

.moon-shape::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 30%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 20%;
    animation-delay: -8s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 25%;
    animation-delay: -16s;
}

.moon-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 15%;
    animation-delay: -4s;
}

.moon-2 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    right: 30%;
    animation-delay: -12s;
}

.moon-3 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 10%;
    animation-delay: -20s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes moonFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

/* Main Content */
.main-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    z-index: 2;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%),
        var(--glass-bg);
    backdrop-filter: blur(30px);
    border: var(--premium-border);
    border-radius: 35px;
    padding: 80px 50px;
    box-shadow: 
        var(--luxury-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-burgundy);
    opacity: 0.9;
    border-radius: 35px 35px 0 0;
    box-shadow: var(--burgundy-glow);
}

.main-content::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    pointer-events: none;
}

/* Luxury Header */
.luxury-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.luxury-line {
    width: 60px;
    height: 1px;
    background: var(--gradient-luxury);
    opacity: 0.6;
}

.luxury-diamond {
    width: 8px;
    height: 8px;
    background: var(--gradient-burgundy);
    transform: rotate(45deg);
    margin: 0 20px;
    box-shadow: var(--burgundy-glow);
    animation: diamondPulse 3s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%, 100% {
        box-shadow: var(--burgundy-glow);
        transform: rotate(45deg) scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(128, 0, 32, 0.6);
        transform: rotate(45deg) scale(1.1);
    }
}


/* Logo Section */
.logo-section {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes logoGlowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo-accent {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-burgundy);
    border-radius: 1px;
    opacity: 0.8;
    animation: accentGlow 3s ease-in-out infinite;
    box-shadow: var(--burgundy-glow);
}

@keyframes accentGlow {
    0%, 100% {
        opacity: 0.8;
        box-shadow: var(--burgundy-glow);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(128, 0, 32, 0.7);
    }
}

.luxury-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.divider-line {
    width: 40px;
    height: 1px;
    background: var(--gradient-luxury);
    opacity: 0.5;
}

.divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--gradient-burgundy);
    transform: rotate(45deg);
    margin: 0 15px;
    opacity: 0.8;
    box-shadow: 0 0 8px rgba(128, 0, 32, 0.4);
}

.logo {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 12px;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: var(--gold-glow);
    position: relative;
    animation: luxuryGlow 4s ease-in-out infinite alternate;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.logo:hover {
    transform: scale(1.02) translateY(-2px);
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
    letter-spacing: 14px;
}

@keyframes luxuryGlow {
    0% {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.7));
    }
}

.logo-subtitle {
    font-size: 1.1rem;
    font-weight: 200;
    letter-spacing: 6px;
    color: var(--platinum);
    opacity: 0.9;
    text-transform: uppercase;
    margin-top: 40px;
    position: relative;
}

.logo-subtitle::before,
.logo-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gradient-luxury);
    opacity: 0.6;
}

.logo-subtitle::before {
    left: -50px;
}

.logo-subtitle::after {
    right: -50px;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.section-line {
    width: 50px;
    height: 1px;
    background: var(--gradient-luxury);
    opacity: 0.4;
}

.luxury-text-container {
    position: relative;
    display: inline-block;
}

.text-accent {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--gradient-burgundy);
    opacity: 0.7;
    animation: textAccentGlow 3s ease-in-out infinite;
    box-shadow: 0 0 5px rgba(128, 0, 32, 0.3);
}

@keyframes textAccentGlow {
    0%, 100% {
        opacity: 0.7;
        box-shadow: 0 0 5px rgba(128, 0, 32, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(128, 0, 32, 0.5);
    }
}

.coming-soon-title {
    font-size: 2.8rem;
    font-weight: 200;
    margin-bottom: 30px;
    color: var(--platinum);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.coming-soon-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-burgundy);
    border-radius: 1px;
    box-shadow: var(--burgundy-glow);
}

.coming-soon-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--champagne);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* Progress Section */
.progress-section {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-label {
    font-size: 0.85rem;
    color: var(--platinum);
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 300px;
    opacity: 0.8;
}

.progress-percentage {
    font-size: 0.9rem;
    color: var(--luxury-gold);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

.progress-container {
    position: relative;
}

.progress-bar {
    width: 100%;
    max-width: 450px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-burgundy);
    border-radius: 2px;
    width: 0%;
    transition: width 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: var(--burgundy-glow);
}

.progress-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: luxuryShimmer 3s infinite;
    border-radius: 2px;
}

@keyframes luxuryShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    font-size: 0.85rem;
    color: var(--platinum);
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}


/* Contact Section */
.contact-section {
    animation: fadeInUp 1s ease-out 0.9s both;
    margin-bottom: 20px;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.contact-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlowPulse 3s ease-in-out infinite;
}

@keyframes iconGlowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.contact-info {
    text-align: left;
}

.contact-text {
    font-size: 1rem;
    color: var(--champagne);
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-subtitle {
    font-size: 0.8rem;
    color: var(--platinum);
    font-weight: 200;
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Luxury Footer */
.luxury-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.footer-line {
    width: 60px;
    height: 1px;
    background: var(--gradient-luxury);
    opacity: 0.4;
}

.footer-diamond {
    width: 6px;
    height: 6px;
    background: var(--gradient-burgundy);
    transform: rotate(45deg);
    margin: 0 20px;
    opacity: 0.7;
    animation: footerDiamondPulse 4s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(128, 0, 32, 0.4);
}

@keyframes footerDiamondPulse {
    0%, 100% {
        opacity: 0.7;
        transform: rotate(45deg) scale(1);
        box-shadow: 0 0 8px rgba(128, 0, 32, 0.4);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.1);
        box-shadow: 0 0 15px rgba(128, 0, 32, 0.6);
    }
}

/* Notification Bell */
.notification-bell {
    position: fixed !important;
    top: 50px !important;
    right: 50px !important;
    width: 60px;
    height: 60px;
    background: var(--gradient-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--platinum);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: 
        var(--luxury-shadow),
        var(--burgundy-glow);
    backdrop-filter: blur(15px);
    border: var(--burgundy-border);
    animation: luxuryBellPulse 4s ease-in-out infinite;
    transform-origin: center;
    overflow: visible;
}

.notification-bell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
}

.notification-bell:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 
        var(--luxury-shadow),
        0 0 40px rgba(128, 0, 32, 0.6);
}

.notification-bell:active {
    transform: scale(1.05) rotate(4deg);
}

@keyframes luxuryBellPulse {
    0%, 100% {
        box-shadow: 
            var(--luxury-shadow),
            var(--burgundy-glow);
    }
    50% {
        box-shadow: 
            var(--luxury-shadow),
            0 0 35px rgba(128, 0, 32, 0.5);
    }
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-luxury);
    color: var(--accent-color);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    box-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(212, 175, 55, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 1001;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 3px 10px rgba(0, 0, 0, 0.4),
            0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.5),
            0 0 15px rgba(212, 175, 55, 0.5);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(128, 0, 32, 0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 60px 30px;
        max-width: 95%;
    }
    
    /* Progress header: stack and center on tablet */
    .progress-header {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .progress-label {
        margin-left: 0;
        text-align: center;
    }
    .progress-percentage {
        margin-top: 0;
    }
    
    .logo {
        font-size: 3rem;
        letter-spacing: 8px;
    }
    
    .logo-subtitle {
        font-size: 0.95rem;
        letter-spacing: 4px;
    }
    
    .logo-subtitle::before,
    .logo-subtitle::after {
        width: 20px;
    }
    
    .logo-subtitle::before {
        left: -30px;
    }
    
    .logo-subtitle::after {
        right: -30px;
    }
    
    .coming-soon-title {
        font-size: 2.2rem;
    }
    
    .coming-soon-text {
        font-size: 1.1rem;
    }
    
    .notification-bell {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        top: 30px !important;
        right: 30px !important;
        position: fixed !important;
        transform-origin: center !important;
    }
    
    .notification-bell:hover {
        transform: scale(1.08) rotate(5deg) !important;
    }
    
    .notification-bell:active {
        transform: scale(1.03) rotate(2deg) !important;
    }
    
    .notification-badge {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .luxury-header,
    .luxury-footer {
        margin: 30px 0;
    }
    
    .luxury-line,
    .footer-line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .main-content {
        padding: 40px 25px;
        max-width: 100%;
    }
    
    /* Progress header: tighter spacing on mobile */
    .progress-header {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .progress-label {
        margin-left: 0;
        text-align: center;
    }
    .progress-percentage {
        margin-top: 0;
    }
    
    .logo {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }
    
    .logo-subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    
    .logo-subtitle::before,
    .logo-subtitle::after {
        width: 15px;
    }
    
    .logo-subtitle::before {
        left: -25px;
    }
    
    .logo-subtitle::after {
        right: -25px;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
    
    .notification-bell {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: 25px !important;
        right: 25px !important;
        position: fixed !important;
        transform-origin: center !important;
    }
    
    .notification-bell:hover {
        transform: scale(1.06) rotate(3deg) !important;
    }
    
    .notification-bell:active {
        transform: scale(1.02) rotate(1deg) !important;
    }
    
    .notification-badge {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
        top: -5px;
        right: -5px;
    }
    
    .contact-container {
        padding: 15px;
        gap: 12px;
    }
    
    .luxury-header,
    .luxury-footer {
        margin: 20px 0;
    }
    
    .luxury-line,
    .footer-line {
        width: 30px;
    }
    
    .luxury-diamond,
    .footer-diamond {
        margin: 0 15px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
