:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent: #f1bd81;
    --bg-dark: #0b1326;
    --card-bg: rgba(23, 31, 51, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #dae2fd;
    --text-muted: #94a3b8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Animations */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0b1326 100%);
    z-index: -3;
}

.bg-blob {
    position: fixed;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: -2;
    animation: move 20s infinite alternate;
}

.blob-1 { top: -100px; right: -100px; }
.blob-2 { bottom: -100px; left: -100px; background: var(--accent); }

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

/* Glass UI Elements */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 2rem;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    color: var(--primary);
}

/* Main Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.screen {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screen.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.glass-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.glass-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    letter-spacing: 0.5px;
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 24px;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    border-radius: 15px;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--card-bg);
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

textarea {
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
    resize: none;
    outline: none;
}

textarea:focus {
    border-color: var(--primary);
}

.drop-zone {
    height: 300px;
    border: 2px dashed var(--glass-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.drop-zone:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.drop-zone i { width: 64px; height: 64px; }

.audio-control {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.record-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.record-btn:hover {
    background: #ef4444;
    color: white;
}

.wave-sim {
    display: flex;
    gap: 4px;
    height: 40px;
    align-items: center;
}

.wave-sim span {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: wave 1s infinite alternate;
}

@keyframes wave {
    to { height: 40px; }
}

.wave-sim span:nth-child(2) { animation-delay: 0.2s; }
.wave-sim span:nth-child(3) { animation-delay: 0.4s; }
.wave-sim span:nth-child(4) { animation-delay: 0.6s; }
.wave-sim span:nth-child(5) { animation-delay: 0.8s; }

/* Results Styles */
.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.results-grid .glass-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.presentation-box {
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
}

.presentation-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.presentation-box p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-action {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1.25rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-action:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.export-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.export-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.export-btn.highlight {
    color: var(--primary);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.export-btn.highlight:hover {
    background: var(--primary);
    color: white;
}

/* Lawyers Screen Styles */
.lawyers-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 30px;
}

.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.select-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.select-group label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem;
    border-radius: 12px;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

select:focus {
    border-color: var(--primary);
}

.lawyers-results {
    min-height: 300px;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.1);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1.5rem;
    color: var(--text-muted);
}

.empty-state i { width: 48px; height: 48px; opacity: 0.5; }

.lawyer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    animation: fadeIn 0.4s ease forwards;
}

.lawyer-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
}

.lawyer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.lawyer-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.lawyer-contact {
    display: flex;
    gap: 1rem;
}

.contact-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

/* Complaint Screen Styles */
.complaint-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 30px;
}

.institution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.institution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    transition: var(--transition);
}

.institution-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.inst-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.institution-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.institution-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Contact Authorization Screen */
.contact-form-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 30px;
}

.lawyer-summary {
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    border-color: var(--primary);
}

.lawyer-summary strong {
    color: var(--primary);
    font-size: 1.2rem;
}

.legal-notice-box {
    padding: 2rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.legal-notice-box h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.legal-notice-box p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.auth-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
}

.auth-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.contact-info-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.input-group label {
    font-weight: 600;
    color: var(--text-muted);
}

.input-group input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem;
    border-radius: 12px;
    outline: none;
    font-size: 1.1rem;
}

.input-group input:focus {
    border-color: var(--primary);
}

.info-preview {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
}

.info-preview h4 {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.info-preview ul {
    list-style: none;
    padding-left: 0;
}

.info-preview li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.info-preview li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--primary);
    border-radius: 12px;
    transform: translateY(100px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateY(0);
}

/* Auth Screen Styles */
.auth-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    border-radius: 15px;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.auth-tab.active {
    background: var(--card-bg);
    color: var(--primary);
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeIn 0.4s ease;
}

.auth-form.active {
    display: flex;
}

.auth-form h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-form p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.w-full {
    width: 100%;
}

.social-auth {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.social-auth span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.social-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.social-btn {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.social-btn.google-btn:hover {
    border-color: #4285F4;
    background: rgba(66, 133, 244, 0.1);
}

.social-btn.facebook-btn:hover {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.btn-sm {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
}

#user-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#user-display-name {
    font-weight: 600;
    color: var(--primary);
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .action-buttons { flex-direction: column; }
    .btn-action { width: 100%; }
    .selection-grid { grid-template-columns: 1fr; }
    .auth-container { padding: 2rem; margin: 1rem; }
}

/* Lawyer Registration Portal */
.lawyer-reg-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 30px;
}

.reg-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 0 2rem;
    position: relative;
}

.reg-progress::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--glass-border);
    z-index: 1;
}

.progress-step {
    background: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.progress-step.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

.reg-step {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.reg-step.active {
    display: block;
}

.step-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.full-width {
    grid-column: span 2;
}

/* Checkout Styles */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    margin-top: 2rem;
}

.payment-card {
    height: 220px;
    width: 100%;
    max-width: 380px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(60px);
    opacity: 0.2;
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #f1bd81 0%, #d4a373 100%);
    border-radius: 6px;
}

.card-number {
    font-size: 1.4rem;
    letter-spacing: 3px;
    word-spacing: 10px;
}

.card-info {
    display: flex;
    justify-content: space-between;
}

.card-info span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.card-brand {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    opacity: 0.8;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.order-summary {
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i { width: 48px; height: 48px; }

.success-message h2 { font-size: 2rem; margin-bottom: 1rem; }
.success-message p { color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.highlight-btn {
    color: var(--accent) !important;
    border: 1px solid var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-left: 1rem;
}

.highlight-btn:hover {
    background: rgba(241, 189, 129, 0.1);
}

/* Specialty Checkbox Grid */
.specialty-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-item span {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* AI Loading Spinner */
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
}

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

/* Print Styles */
@media print {
    body, p, span, h1, h2, h3, h4, h5, h6, li, ul, ol, div, a {
        color: #000 !important;
        text-shadow: none !important;
    }
    body {
        background: white;
    }
    .bg-gradient, .bg-blob, nav, .presentation-box, .back-btn, button, .form-header p {
        display: none !important;
    }
    .screen.active {
        display: block !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    #ai-results-container, .glass-card {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: black !important;
    }
    #ai-results-container h3 {
        color: black !important;
    }
}
