/* LUXURY BLACK THEME WITH RAINBOW ANIMATIONS */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

/* Logo Styling */
.logo {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    animation: logoGlow 6s infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5)); }
    16% { filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5)); }
    33% { filter: drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5)); }
    66% { filter: drop-shadow(0 0 10px rgba(0, 0, 255, 0.5)); }
    83% { filter: drop-shadow(0 0 10px rgba(75, 0, 130, 0.5)); }
    100% { filter: drop-shadow(0 0 10px rgba(238, 130, 238, 0.5)); }
}

/* Main Image Styling */
.main-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: imageGlow 8s infinite alternate;
}

@keyframes imageGlow {
    0% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.3); }
    16% { box-shadow: 0 0 20px rgba(255, 165, 0, 0.3); }
    33% { box-shadow: 0 0 20px rgba(255, 255, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 0, 0.3); }
    66% { box-shadow: 0 0 20px rgba(0, 0, 255, 0.3); }
    83% { box-shadow: 0 0 20px rgba(75, 0, 130, 0.3); }
    100% { box-shadow: 0 0 20px rgba(238, 130, 238, 0.3); }
}

/* Progress Bar */
.progress-container {
    width: 100%;
    margin-bottom: 25px;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    height: 100%;
    width: var(--progress, 70%);
    background: linear-gradient(90deg, 
        #d4af37 0%, 
        #f9d423 50%, 
        #d4af37 100%);
    border-radius: 15px;
    position: relative;
    transition: width 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    animation: progressGlow 6s infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); }
    16% { box-shadow: 0 0 15px rgba(255, 165, 0, 0.5); }
    33% { box-shadow: 0 0 15px rgba(255, 255, 0, 0.5); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 0, 0.5); }
    66% { box-shadow: 0 0 15px rgba(0, 0, 255, 0.5); }
    83% { box-shadow: 0 0 15px rgba(75, 0, 130, 0.5); }
    100% { box-shadow: 0 0 15px rgba(238, 130, 238, 0.5); }
}

.progress-text {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 800;
    color: #000;
    text-align: center;
    pointer-events: none;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.luxury-button {
    display: block;
    padding: 14px;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    animation: buttonGlow 10s infinite alternate;
}

@keyframes buttonGlow {
    0% { box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4); }
    16% { box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4); }
    33% { box-shadow: 0 4px 15px rgba(255, 255, 0, 0.4); }
    50% { box-shadow: 0 4px 15px rgba(0, 255, 0, 0.4); }
    66% { box-shadow: 0 4px 15px rgba(0, 0, 255, 0.4); }
    83% { box-shadow: 0 4px 15px rgba(75, 0, 130, 0.4); }
    100% { box-shadow: 0 4px 15px rgba(238, 130, 238, 0.4); }
}

.luxury-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Specific Button Colors */
.luxury-button:not(.whatsapp):not(.livechat):not(.login) {
    background: linear-gradient(135deg, #333, #222);
}

.luxury-button.login {
    background: linear-gradient(135deg, #444, #333);
}

.luxury-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.luxury-button.livechat {
    background: linear-gradient(135deg, #5865F2, #3B49DF);
}

/* Footer */
.footer {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 500px) {
    .container {
        width: 95%;
        padding: 15px;
    }
    
    .logo {
        width: 100px;
    }
    
    .main-image {
        max-height: 150px;
    }
    
    .progress-bar {
        height: 25px;
    }
    
    .luxury-button {
        padding: 12px;
        font-size: 13px;
    }
}