body{
    font-family: 'Inter', sans-serif;
    background-color: #0C1427;
    color: #fff;
}

.primary-color { color: #FFD700; }
.btn-primary-custom {
    background-color: rgba(255, 255, 0);
    color: #0C1427;
    border-color: rgba(255, 255, 0);
}
.btn-primary-custom:hover { background-color: rgba(230, 214, 50, 0.8); }
.btn-custom-halo {
    background-color: rgba(255, 255, 0, 0.1);
    color: #FFFF00;
    border-color: rgba(255, 255, 0);
}
.btn-custom-halo:hover{
    background-color: rgba(255, 255, 0, 0.5);
}
.custom-secondary-color{
    background-color: rgba(26, 30, 43, 0.5);
}
.custom-secondary-color:hover{
    border-color: rgba(255, 255, 0);
}
.bg-dark-custom { background-color: #111827; }
.text-emphasis{
    color: #f4d632;
}
.secondary-color { color: #00C28A; }
.bg-primary-custom { background-color: #FFD700 !important; }
.border-custom { border-color: #FFD700 !important; }
.feature-box, .payout-box { background-color: #111827; border: 1px solid #374151; border-radius: 1rem; padding: 1.5rem; text-align: center; }
.feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    background-color: rgba(255, 215, 0, 0.1);
    display: flex;
    color: #FFFF00;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}
.btn-google {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid #374151;
}

.otp-wrapper .otp-input {
    height: 55px;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}
.otp-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 .15rem rgba(13,110,253,.25);
}

.chat-container {
    width: 100%;
    max-height: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fefefe;
    font-family: Arial, sans-serif;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #151b28;
    color: #fefefe;
    font-weight: bold;
}

.back-btn {
    cursor: hand;
    margin-right: 10px;
    font-size: 18px;
}

.chat-box {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-message {
    max-width: 70%;
    margin:10px;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.chat-left {
    position:relative;
    align-self: flex-start;
    background: #e9ecef;
    color: #000;
}

.chat-left:after{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 9px solid transparent;
    border-right-color: #e9ecef;
    border-left: 0;
    border-top: 0;
    margin-top: -4.5px;
    margin-left: -9px;
}

.chat-right {
    position:relative;
    align-self: flex-end;
    background: #0d6efd;
    color: #fff;
}

.chat-right:after{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 9px solid transparent;
    border-left-color: #0e6efd;
    border-right: 0;
    border-top: 0;
    margin-top: -4.5px;
    margin-right: -9px;
}

.chat-time {
    font-size: 10px;
    opacity: 0.7;
    margin-top: 3px;
    text-align: right;
}

.margin-bottom-20{
    margin-bottom: 20px;
}

.margin-bottom-40{
    margin-bottom: 40px;
}

.loader-text {
    /* Text styling */
    font-family: sans-serif;
    font-size: 1.5rem;
    font-weight: bold;

    /* 1. Shimmer Setup */
    color: rgba(0, 0, 0, 0.2); /* Base faded color */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;

    /* 2. Combined Animation */
    /* shimmer: 2s duration, pulse: 3s duration */
    animation:
        shimmer 2s infinite linear,
        pulse 3s ease-in-out infinite;
}

/* Moving the gradient from left to right */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Subtle scaling and opacity shift */
@keyframes pulse {
    0%, 100% { transform: scale(0.98); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
}