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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

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

/* Background Decorations */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.floating-gift {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.3);
}

.gift-1 { top: 10%; left: 10%; animation-delay: 0s; }
.gift-2 { top: 20%; right: 15%; animation-delay: 1s; }
.gift-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.gift-4 { top: 60%; right: 10%; animation-delay: 3s; }
.gift-5 { bottom: 10%; right: 30%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Main Content */
.main-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    animation: slideUp 1s ease-out;
}

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

/* Logo Styles */
.logo-container {
    margin-bottom: 50px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-icon {
    position: relative;
}

/* Enhanced Gift Box Logo */
.gift-box {
    position: relative;
    width: 90px;
    height: 90px;
    animation: logoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) scale(1) rotate(0deg); 
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    }
    25% { 
        transform: translateY(-3px) scale(1.02) rotate(1deg); 
        filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
    }
    75% { 
        transform: translateY(3px) scale(0.98) rotate(-1deg); 
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
    }
}

.box-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 50px;
    background: linear-gradient(145deg, #ff6b6b 0%, #ee5a5a 50%, #d63031 100%);
    border-radius: 12px;
    box-shadow: 
        0 8px 25px rgba(238, 90, 90, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

.box-body::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 8px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    border-radius: 8px;
}

.box-top {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: linear-gradient(145deg, #4ecdc4 0%, #44a08d 50%, #00b894 100%);
    border-radius: 12px;
    box-shadow: 
        0 6px 20px rgba(68, 160, 141, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.box-top::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    right: 6px;
    height: 6px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 3px;
}

.ribbon-v {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 75px;
    background: linear-gradient(180deg, #ffd93d 0%, #ff9a3c 50%, #ff7675 100%);
    border-radius: 5px;
    box-shadow: 
        0 4px 15px rgba(255, 217, 61, 0.4),
        inset 2px 0 0 rgba(255, 255, 255, 0.3),
        inset -2px 0 0 rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.ribbon-h {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 10px;
    background: linear-gradient(90deg, #ffd93d 0%, #ff9a3c 50%, #ff7675 100%);
    border-radius: 5px;
    box-shadow: 
        0 4px 15px rgba(255, 217, 61, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.bow {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 18px;
    background: linear-gradient(145deg, #ff6b6b 0%, #ee5a5a 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        0 6px 15px rgba(255, 107, 107, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    z-index: 3;
    animation: bowPulse 3s ease-in-out infinite;
}

@keyframes bowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.bow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 14px;
    background: linear-gradient(180deg, #e55a5a 0%, #d63031 100%);
    border-radius: 3px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.bow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.logo-tagline {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Coming Soon Title */
.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.coming-soon-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
    border-radius: 2px;
}

/* Description */
.description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    padding: 30px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.footer p {
    margin-bottom: 10px;
}

.footer-note {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 25px;
        margin: 20px;
    }
    
    .logo {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-text h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 2.2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    .floating-gift {
        font-size: 1.5rem;
    }
    
    .gift-box {
        width: 70px;
        height: 70px;
    }
    
    .box-body {
        width: 50px;
        height: 40px;
    }
    
    .box-top {
        width: 55px;
        height: 18px;
        top: 14px;
    }
    
    .ribbon-v {
        height: 60px;
        width: 8px;
    }
    
    .ribbon-h {
        width: 60px;
        height: 8px;
        top: 26px;
    }
    
    .bow {
        width: 20px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 30px 20px;
    }
    
    .logo-text h1 {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
}
