:root {
    --primary-color: #6a0dad;
    /* Purple */
    --secondary-color: #ffd700;
    /* Gold */
    --bg-dark: #1a1a2e;
    --bg-card: #16213e;
    --text-light: #e94560;
    --text-white: #ffffff;
    --text-muted: #b0b0c0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    background-image: radial-gradient(circle at 50% 50%, #2a2a4e 0%, #1a1a2e 100%);
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

p,
li,
span,
div {
    color: var(--text-white);
}

.text-white-50 {
    color: var(--text-muted) !important;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-white);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
    border-color: var(--primary-color);
}

.card-title {
    color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #8a2be2;
    border-color: #8a2be2;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
    color: white;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

/* Form Styles - Critical for Visibility */
.form-label {
    color: var(--secondary-color);
    font-weight: 600;
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    /* Force white text */
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    color: white !important;
    box-shadow: 0 0 0 0.25rem rgba(106, 13, 173, 0.25);
}

/* Result Box */
.result-box {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.3) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--text-white);
}

/* SEO Content Section */
.seo-content {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.seo-content p {
    line-height: 1.7;
    color: #d0d0e0;
}

footer {
    background-color: #0f0f1a;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.category-title {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}