:root {
    --primary-gradient: linear-gradient(135deg, #ff6b9d 0%, #ffd700 100%);
    --dark-bg: #000000;
    --card-bg: #1a1a1a;
    --border: #333333;
    --text: #ffffff;
    --muted: #cccccc;
}

html, body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text);
}

.main-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.content-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 60px 40px; max-width: 640px; width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.5); text-align:center; }
.app-name {font-size: 2rem;font-weight: 800;background: var(--primary-gradient);-webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;/* margin-bottom: 20px; */width: fit-content;text-align: center;margin: 0 auto;margin-top: -10px;font-size: 24px;font-weight: 500;margin-bottom: 10px;}
.bali-exclusive-badge {background: var(--primary-gradient);color: #000;padding: 8px 20px;border-radius: 25px;font-weight: 800;font-size: 0.7rem;display:inline-block;box-shadow: 0 4px 15px rgba(255,107,157,0.3);margin-bottom: 24px;/* margin-top: -10px; */text-transform: uppercase;font-weight: 700;letter-spacing: 0.5px;}
.exclusive-notice {background: linear-gradient(45deg, #ff6b6b, #e74c3c);color:#fff;padding: 10px 18px;border-radius: 20px;display:inline-block;margin-bottom: 28px;font-size: 13px;text-transform: capitalize;}
.description { color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
.footer {margin-top: 28px;padding-top: 20px;border-top: 1px solid var(--border);color: #aaa;font-size: 10px;}
.footer a { color: #ffd700; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* Privacy page */
.privacy-shell { min-height: 100vh; background: var(--dark-bg); }
.privacy-card { background: var(--card-bg); border:1px solid var(--border); border-radius: 20px; padding: 32px; margin: 40px auto; max-width: 900px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.privacy-card h1 { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }
.privacy-card h2 { color: var(--text); margin-top: 28px; margin-bottom: 12px; font-weight: 700; }
.privacy-card h3 { color: var(--text); margin-top: 18px; margin-bottom: 10px; font-weight: 600; }
.privacy-card p, .privacy-card li { color: var(--muted); }
.privacy-meta { color: #888; margin-bottom: 24px; }
.tag { background: var(--primary-gradient); color:#000; padding: 6px 12px; border-radius: 16px; font-weight: 700; display:inline-block; }
.btn-primary-store { background: var(--primary-gradient); color:#000; border:none; border-radius: 12px; padding: 12px 18px; font-weight: 800; }

/* Authentication Pages */
.auth-card { max-width: 480px; padding: 40px 30px; }

.auth-title { 
    font-size: 2rem; 
    font-weight: 700; 
    background: var(--primary-gradient); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    margin-bottom: 12px; 
}

.auth-description { 
    color: var(--muted); 
    margin-bottom: 32px; 
    line-height: 1.6; 
}

.auth-form { text-align: left; }

.form-group { margin-bottom: 20px; }

.form-group label { 
    display: block; 
    color: var(--text); 
    font-weight: 600; 
    margin-bottom: 8px; 
    font-size: 0.9rem; 
}

.form-input { 
    width: 100%; 
    padding: 14px 16px; 
    background: rgba(255,255,255,0.05); 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    color: var(--text); 
    font-size: 1rem; 
    transition: all 0.3s ease; 
    box-sizing: border-box; 
}

.form-input:focus { 
    outline: none; 
    border-color: #ffac3e; 
    box-shadow: 0 0 0 3px rgba(255,107,157,0.2); 
    background: rgba(255,255,255,0.08); 
}

.form-input::placeholder { color: #888; }

.btn-primary { 
    background: var(--primary-gradient); 
    color: #000; 
    border: none; 
    padding: 14px 24px; 
    border-radius: 12px; 
    font-size: 1rem; 
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    width: 100%; 
    box-shadow: 0 4px 15px rgba(255,107,157,0.3); 
}

.btn-primary:hover:not(:disabled) { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(255,107,157,0.4); 
}

.btn-primary:disabled { 
    opacity: 0.6; 
    cursor: not-allowed; 
    transform: none; 
}

.btn-secondary { 
    background: transparent; 
    color: var(--text); 
    border: 1px solid var(--border); 
    padding: 12px 24px; 
    border-radius: 12px; 
    font-size: 1rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    width: 100%; 
    text-decoration: none; 
    display: inline-block; 
    text-align: center; 
}

.btn-secondary:hover { 
    background: rgba(255,255,255,0.05); 
    border-color: #ffac3e; 
    color: #ffac3e; 
}

.full-width { width: 100%; }

.auth-links { 
    margin-top: 24px; 
    text-align: center; 
}

.auth-links .link { 
    color: #ffd700; 
    text-decoration: none; 
    font-weight: 500; 
}

.auth-links .link:hover { 
    text-decoration: underline; 
}

/* Alert Messages */
.alert { 
    padding: 16px; 
    border-radius: 12px; 
    margin-bottom: 24px; 
    font-weight: 500; 
}

.alert-error { 
    background: rgba(231,76,60,0.1); 
    border: 1px solid #e74c3c; 
    color: #e74c3c; 
}

.alert-success { 
    background: rgba(46,204,113,0.1); 
    border: 1px solid #2ecc71; 
    color: #2ecc71; 
}

/* Success/Error States */
.success-container, .error-container, .loading-container { text-align: center; }

.success-icon, .error-icon { 
    font-size: 4rem; 
    margin-bottom: 20px; 
}

.success-text { 
    color: var(--muted); 
    margin-bottom: 32px; 
    line-height: 1.6; 
}

.error-actions { margin-top: 32px; }

.loading-spinner { 
    width: 40px; 
    height: 40px; 
    border: 4px solid var(--border); 
    border-top: 4px solid #ffac3e; 
    border-radius: 50%; 
    animation: spin 1s linear infinite; 
    margin: 0 auto 20px; 
}

@keyframes spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}

/* App Notice */
.app-notice { 
    margin-top: 32px; 
    padding-top: 24px; 
    border-top: 1px solid var(--border); 
}

.app-notice p { 
    color: var(--muted); 
    margin-bottom: 16px; 
    font-size: 0.9rem; 
}

.app-stores { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    align-items: center; 
}

.store-button img { 
    height: 50px; 
    transition: transform 0.3s ease; 
}

.store-button img:hover { 
    transform: scale(1.05); 
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-card { 
        padding: 40px 20px; 
        margin: 20px; 
    }
    
    .auth-card { 
        padding: 30px 20px; 
    }
    
    .auth-title { 
        font-size: 1.8rem; 
    }
    
    .form-input { 
        padding: 12px 14px; 
        font-size: 0.9rem; 
    }
    
    .btn-primary, .btn-secondary { 
        padding: 12px 20px; 
        font-size: 0.9rem; 
    }
}



h5.mb-3.gold-text {
    margin-bottom: 0;
    font-size: 1.2em;
}