:root {
    /* Night Blue Theme */
    --primary-color: #1a237e;
    --secondary-color: #283593;
    --background-dark: #0d1437;
    --background-light: #1a1f4d;
    --text-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.15);
    --hover-color: #3949ab;
    --shadow-color: rgba(13, 20, 55, 0.5);
    --accent-color: #00cf92;
    --card-bg: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, var(--background-dark), #2a2a2a);
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1000;
}

.btn-language {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--card-bg);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-language:hover {
    background: var(--accent-color);
    color: white;
}

.btn-language.active {
    background: var(--primary-color);
    color: white;
}

/* Theme Toggle */
.theme-toggle {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    background: var(--card-bg);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.theme-toggle:hover {
    background: var(--accent-color);
    color: white;
}

.theme-toggle i {
    color: white !important;
}

/* Survey Container */
.survey-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.form-control:focus, .form-select:focus {
    background: var(--background-light);
    border-color: var(--hover-color);
    box-shadow: 0 0 15px rgba(57, 73, 171, 0.25);
}

/* Transaction Options */
.transaction-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Range Slider Styles */
.range-slider-container {
    padding: 20px 10px;
    position: relative;
}

.range-slider {
    position: relative;
    height: 30px;
}

.range-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    width: 100%;
    height: 4px;
    background: none;
    pointer-events: none;
    outline: none;
    z-index: 2;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    margin-top: -8px;
    transition: all 0.2s ease;
    z-index: 3;
}

.range-slider input[type="range"].range-min::-webkit-slider-thumb {
    background: #ff4444;
    border: 2px solid #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.range-slider input[type="range"].range-max::-webkit-slider-thumb {
    background: #00C851;
    border: 2px solid #00C851;
    box-shadow: 0 0 10px rgba(0, 200, 81, 0.3);
}

.range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-track {
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    top: 13px;
    border-radius: 2px;
    overflow: hidden;
}

.range-track-left,
.range-track-right {
    position: absolute;
    height: 100%;
    top: 0;
    background: #ff4444;
    transition: width 0.1s ease;
}

.range-track-left {
    left: 0;
    background: #ff4444;
}

.range-track-right {
    right: 0;
    background: #00C851;
}

.range-track-center {
    position: absolute;
    height: 100%;
    background: #2196F3;
    transition: all 0.1s ease;
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.min-value, .max-value {
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.2s ease;
    font-weight: 600;
}

.min-value {
    color: #ff4444;
}

.max-value {
    color: #00C851;
}

.min-value.active, .max-value.active {
    transform: scale(1.1);
}

/* RTL Support for Range Slider */
[dir="rtl"] .range-values {
    flex-direction: row-reverse;
}

/* Result Container */
.result-container {
    margin-top: 2rem;
    text-align: center;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 8px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem auto;
}

.score-bar {
    margin: 1rem 0;
}

.progress {
    height: 8px;
    background-color: var(--border-color);
}

.progress-bar {
    background-color: var(--accent-color);
    transition: width 1s ease-in-out;
}

/* Contact Button */
.btn-telegram {
    background-color: #0088cc;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-telegram:hover {
    background-color: #0077b3;
    color: white;
}

/* Button group styles */
.btn-group {
    margin-top: 10px;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.btn-outline-primary:hover,
.btn-check:checked + .btn-outline-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-group .btn {
    margin: 5px;
    border-radius: 20px !important;
    flex: 1 1 auto;
    min-width: 100px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .btn-group {
        flex-direction: column !important;
    }
    .btn-group .btn {
        width: 100%;
        margin: 3px 0;
    }
}

/* Payment Methods and Verification Grid */
.payment-methods-grid, .verification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.payment-btn, .verification-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 100%;
    height: 100%;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

.payment-btn i, .verification-btn i {
    font-size: 24px;
    margin-bottom: 8px;
    color: white !important;
}

.btn-check:checked + .payment-btn,
.btn-check:checked + .verification-btn {
    background: var(--primary-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 112, 186, 0.4);
}

.payment-btn:hover, .verification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 112, 186, 0.4);
}

/* Gaming Select Style */
.game-select {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.game-select option {
    background-color: var(--background-dark);
    color: var(--text-color);
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 1rem auto;
    }

    .survey-container {
        padding: 1rem;
    }

    .language-selector {
        top: 0.5rem;
        right: 0.5rem;
    }

    .btn-language {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }

    .score-circle {
        width: 120px;
        height: 120px;
        font-size: 1.5rem;
    }

    .payment-methods-grid, .verification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .payment-methods-grid, .verification-grid {
        grid-template-columns: 1fr;
    }
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .language-selector {
    left: 1rem;
    right: auto;
}

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

.survey-container {
    animation: fadeIn 0.5s ease-out;
}

.score-display {
    animation: fadeIn 1s ease-out;
}

/* Question Card Styles */
.question-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.question-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 112, 186, 0.2);
}

.question-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 112, 186, 0.5);
    transition: all 0.3s ease;
}

.question-spotlight {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 112, 186, 0.1), rgba(0, 207, 146, 0.1));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.question-spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: spotlight 5s infinite linear;
}

@keyframes spotlight {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.glow-text {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 112, 186, 0.5),
                 0 0 20px rgba(0, 112, 186, 0.3),
                 0 0 30px rgba(0, 112, 186, 0.2);
}

.glow-input {
    border-color: rgba(0, 112, 186, 0.3) !important;
    box-shadow: 0 0 10px rgba(0, 112, 186, 0.1);
    transition: all 0.3s ease;
}

.glow-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(0, 112, 186, 0.3) !important;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-btn:hover::after {
    opacity: 1;
}

/* Gaming Select Style */
.game-select {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.game-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 112, 186, 0.3);
}

.game-select option {
    background-color: var(--background-dark);
    color: #ffffff;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .question-card {
        margin-bottom: 30px;
    }
    
    .question-number {
        width: 25px;
        height: 25px;
        font-size: 0.9em;
    }
}

/* Evaluation Modal Styles */
.modal-content {
    border: 1px solid var(--border-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    background: var(--background-light);
}

.modal-header {
    background: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    position: relative;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    padding-right: 40px;
    padding-left: 40px;
}

[dir="rtl"] .modal-title {
    padding-right: 40px;
    padding-left: 40px;
}

.modal-body {
    background: var(--background-light);
    padding: 2rem;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: bold;
    color: #00cf92;
    border: 3px solid #00cf92;
    box-shadow: 0 0 15px rgba(0, 207, 146, 0.3);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    margin: 1rem 0;
}

#sellRequestBtn {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 112, 186, 0.3);
    font-weight: 600;
    color: white !important;
}

#sellRequestBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 112, 186, 0.5);
}

.modal .progress {
    height: 10px;
    background-color: var(--background-dark);
    border-radius: 5px;
    overflow: hidden;
}

.modal .progress-bar {
    transition: width 0.6s ease;
    background: linear-gradient(90deg, #00cf92, var(--primary-color));
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.payment-method-option {
    width: 100%;
}

.payment-method-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    background: var(--background-light);
    font-weight: 600;
    color: white !important;
}

.payment-method-option label:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(0, 112, 186, 0.2);
}

.btn-check:checked + .btn-outline-primary {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(0, 112, 186, 0.3);
}

/* Custom Price Input */
.sell-price-section input {
    font-size: 1.5rem;
    height: auto;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.sell-price-section .input-group-text {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

/* Disable button styles */
#sellRequestBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Modal scrolling */
.modal-body {
    max-height: 80vh;
    overflow-y: auto;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .sell-price-section input,
    .sell-price-section .input-group-text {
        font-size: 1.2rem;
    }
}

/* Modal Close Button - Enhanced */
.modal-close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    z-index: 1000;
    font-weight: 600;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.modal-close-btn i {
    color: white !important;
    font-size: 1.2rem;
}

/* RTL Support for Close Button */
[dir="rtl"] .modal-close-btn {
    right: auto;
    left: 15px;
}

/* Price Input Enhancement */
.sell-price-section .input-group {
    box-shadow: 0 0 15px rgba(0, 112, 186, 0.1);
}

.sell-price-section input:focus {
    box-shadow: 0 0 20px rgba(0, 112, 186, 0.2);
    border-color: var(--primary-color);
}

/* Mobile Responsive Adjustments */
@media (max-width: 576px) {
    .modal-body {
        padding: 1rem;
    }
    
    .score-circle {
        width: 120px;
        height: 120px;
        font-size: 1.5rem;
    }
    
    .price-tag {
        font-size: 2rem;
    }
}

/* Transaction Amount Input Fields */
.transaction-range-inputs {
    padding: 10px 0;
}

.transaction-range-inputs .input-group {
    max-width: 300px;
    margin: 0 auto;
}

.transaction-range-inputs .input-group-text {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
}

.transaction-range-inputs input[type="number"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

.transaction-range-inputs input[type="number"]:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 112, 186, 0.3);
}

/* Transaction Amount Range Styling */
.transaction-label {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    text-align: center;
    display: block;
    font-weight: 600;
}

.transaction-range-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin: 0 auto;
}

.amount-input-container {
    flex: 1;
    max-width: 280px;
}

.amount-input-container .input-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.amount-input-container .input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.15);
}

.amount-input-container .input-group-text {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.amount-input-container .input-group-text i {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white !important;
}

.amount-input-container .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 0.7rem 1rem;
    text-align: center;
    font-weight: 500;
    font-weight: 600;
}

.amount-input-container .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border: none;
}

.amount-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

.amount-separator i {
    font-size: 1rem;
    opacity: 0.7;
    color: white !important;
}

.amount-separator:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

/* Responsive design for transaction range */
@media (max-width: 768px) {
    .transaction-range-inputs {
        flex-direction: column;
        gap: 1rem;
    }

    .amount-input-container {
        width: 100%;
        max-width: 100%;
    }

    .amount-separator {
        transform: rotate(90deg);
    }
}

/* Contact Methods Styling */
.contact-methods-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
}

.contact-methods-section h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 600;
}

/* Contact Form Input Styling */
.contact-form .input-group {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form .input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.15);
}

.contact-form .input-group-text {
    background: var(--primary-color);
    border: none;
    color: white;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.contact-form .input-group-text i {
    font-size: 1.2rem;
    color: white !important;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-color);
    padding: 12px;
    font-weight: 600;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border: none;
}

.contact-form .form-select {
    cursor: pointer;
    min-width: 200px;
    font-weight: 600;
}

.contact-form .form-select option {
    background-color: var(--background-dark);
    color: var(--text-color);
    padding: 10px;
}

/* Remove old country code styles */
.country-code,
.country-code:focus,
.country-code option {
    all: unset;
}

/* Social Media Icon Colors */
.contact-form .fa-whatsapp,
.contact-form .fa-telegram,
.contact-form .fa-facebook,
.contact-form .fa-instagram,
.contact-form .fa-snapchat,
.contact-form .fa-phone {
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form .form-select {
        min-width: 150px;
    }
}

/* Phone Number Format Hint */
.number-format-hint {
    display: block;
    margin-top: -10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: start;
    padding-left: 60px;
    font-weight: 600;
}

[dir="rtl"] .number-format-hint {
    padding-left: 0;
    padding-right: 60px;
    text-align: end;
}

/* Country code input styling */
.country-input {
    max-width: 80px;
    text-align: center;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-weight: 600;
}

.country-input::placeholder {
    color: var(--text-color);
    opacity: 0.5;
}

[dir="rtl"] .country-input {
    border-right: none !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Ensure the country input maintains its width */
.input-group .country-input {
    flex: 0 0 80px;
}

/* Phone number format hint spacing */
.number-format-hint {
    display: block;
    margin-top: -10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: start;
    padding-left: 60px;
    font-weight: 600;
}

[dir="rtl"] .number-format-hint {
    padding-left: 0;
    padding-right: 60px;
    text-align: end;
}

.input-group-text i {
    color: white !important;
}

/* Button and Icon Colors */
.btn {
    color: white !important;
}

.btn i {
    color: white !important;
}

.btn-primary,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    color: white !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary {
    color: white !important;
    border-color: white !important;
}

/* Payment Method Buttons */
.payment-method-option label {
    color: white !important;
}

.payment-method-option i {
    color: white !important;
}

.btn-check:checked + .btn-outline-primary {
    color: white !important;
    background: var(--primary-color) !important;
}

/* Make all icons white */
.input-group-text i,
.btn i,
.modal i,
.payment-method-option i,
.verification-btn i,
.amount-separator i {
    color: white !important;
}

/* Social Media Icons in white */
.contact-form .fa-whatsapp,
.contact-form .fa-telegram,
.contact-form .fa-facebook,
.contact-form .fa-instagram,
.contact-form .fa-snapchat,
.contact-form .fa-phone {
    color: white !important;
}

/* Theme toggle button */
.theme-toggle i {
    color: white !important;
}

/* Language buttons */
.btn-language {
    color: white !important;
}

/* Sell Request Button */
#sellRequestBtn {
    color: white !important;
}

/* Modal close button */
.modal-close-btn i {
    color: white !important;
}

/* Title and Welcome Message Styling */
.question-spotlight h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.welcome-message {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-message p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/* Date Input Styling */
input[type="date"] {
    background-color: rgba(26, 35, 126, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    padding: 12px;
    width: 100%;
    font-size: 1rem;
}

input[type="date"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Hide default date picker icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.7;
    cursor: pointer;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: rgba(255, 255, 255, 0.7);
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: rgba(255, 255, 255, 0.7);
}

input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: rgba(255, 255, 255, 0.7);
}

input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(26, 35, 126, 0.3);
}
