body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A14; /* Darker base for more contrast */
}
.hero-bg {
    background-color: #0C0C16;
    background-image:
        /* Fades in from the dark background at the top */
        linear-gradient(to bottom, #0A0A14, transparent 30%),

        /* Fades out to the dark background at the bottom */
        linear-gradient(to top, #0A0A14, transparent 30%),

        /* Original corner glows */
        radial-gradient(circle at top right, rgba(255, 71, 133, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(89, 66, 235, 0.1), transparent 50%);
}


.card {
    background-color: #1a1a2e;
    border: 1px solid #2a2a4e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.highlight-pink {
    color: #ff4785;
}
.btn-primary {
    background-color: #ff4785;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
    background-color: #f82a72;
    transform: scale(1.05);
}
.section-title {
    background: -webkit-linear-gradient(45deg, #ff4785, #8a63d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* New Styles for Profit Calculator Modal */
.modal-overlay {
    transition: opacity 0.3s ease;
}
.modal-container {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.form-input {
    background-color: #2a2a4e;
    border: 1px solid #4a4a6a;
    color: white;
}

/* --- TikTok Profit Calculator Style Overrides --- */

/* 1. Fixes white background and border on form inputs */
#profit-form .form-input {
    background-color: #2a2a4e !important;
    color: #ffffff !important;
    border: 1px solid #4a4a6a !important;
}

#profit-form .form-input::placeholder {
    color: #9ca3af !important;
}

/* 2. Fixes text color on payment plan selection */
#profit-form .payment-plan-label span {
    color: white !important;
}
#profit-form .payment-plan-label .text-gray-300 {
    color: #d1d5db !important;
}
#profit-form .payment-plan-label .text-gray-500 {
    color: #6b7280 !important;
}
#profit-form fieldset {
    border: none !important;
    padding: 0 !important;
}

/* 3. Fixes boxes and text color on sliders */
#sliders-section .slider-container {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}
#sliders-section .slider-container label,
#sliders-section .slider-container .font-medium {
    color: #cbd5e1 !important;
    background: none !important;
}
/* --- Final Fix for Slider Borders --- */
#sliders-section input[type=range] {
    border: none !important;
    box-shadow: none !important;
}