/* CSS Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #0f172a;
    --text-color: #334155;
    --text-light: #64748b;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --transition: all 0.2s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--secondary-color);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
}

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 1.5rem auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--background-alt);
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.mission-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Experiment Section */
.experiment-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.experiment-details {
    display: grid;
    gap: 2rem;
}

.experiment-item {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.experiment-item h3 {
    color: var(--primary-color);
}

.experiment-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* Page Header (for inner pages) */
.page-header {
    padding: 140px 24px 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Bills Page */
.bills-intro {
    margin-bottom: 3rem;
}

.intro-card {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: var(--radius);
}

.intro-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.process-step strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.process-step p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.bills-filter {
    margin-bottom: 2rem;
}

.bills-filter h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-alt);
    border-radius: var(--radius);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.875rem;
}

.filter-group select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--text-color);
    font-size: 0.875rem;
    cursor: pointer;
}

.bills-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bill-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.bill-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.bill-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bill-id {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bill-number {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.bill-session {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--background-alt);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.review-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-reviewed {
    background: #d1fae5;
    color: #065f46;
}

.bill-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.bill-author {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.bill-summary {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bill-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.ai-position {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.position-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.position-value {
    font-weight: 600;
    font-size: 0.875rem;
}

.position-value.support {
    color: #059669;
}

.position-value.oppose {
    color: #dc2626;
}

.position-value.neutral {
    color: #6b7280;
}

.bill-topics {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.topic-tag {
    font-size: 0.75rem;
    background: var(--background-alt);
    color: var(--text-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.bill-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition);
}

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

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

.btn-secondary {
    background: var(--background);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.coming-soon-card {
    background: var(--background-alt);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coming-soon-card h3 {
    margin-bottom: 0.5rem;
}

.coming-soon-card p {
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.pilot-info {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.pilot-info h3 {
    margin-bottom: 0.75rem;
}

.pilot-info > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.domain-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.domain-tag {
    background: var(--background-alt);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.pilot-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Transparency Section */
.transparency-section h2 {
    margin-bottom: 2rem;
}

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

.transparency-item {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.transparency-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.transparency-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Volunteer Section */
.volunteer-content {
    max-width: 900px;
    margin: 0 auto;
}

.volunteer-content .lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.flagship-program {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.program-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.program-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.program-header h3 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin: 0;
}

.program-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.program-how-it-works h4,
.volunteer-roles h4 {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-alt);
    border-radius: var(--radius);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

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

.role-card {
    background: var(--background-alt);
    padding: 1.25rem;
    border-radius: var(--radius);
    text-align: center;
}

.role-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.role-card strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.role-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.program-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.cta-note {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.ai-safety-connection h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.connection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.connection-item {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 3px solid var(--primary-color);
}

.connection-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.connection-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .flagship-program {
        padding: 1.5rem;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .connection-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 120px 24px 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .bill-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bill-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .domain-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .transparency-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Secondary CTA Button */
.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Experiment Section */
.experiment-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experiment-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.experiment-item ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.experiment-transparency {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--background-alt);
    border-radius: var(--radius);
    text-align: center;
}

.experiment-transparency h3 {
    margin-bottom: 1rem;
}

.experiment-transparency p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Verify Section */
.verify-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.verify-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.verify-card:hover {
    box-shadow: var(--shadow);
}

.verify-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.verify-details {
    margin-bottom: 1rem;
}

.verify-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.verify-details strong {
    color: var(--text-color);
}

.verify-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
}

.verify-link:hover {
    text-decoration: underline;
}

/* Mission Section - Quote Style */
.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-quote {
    background: var(--background);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 0 0 2rem 0;
    text-align: left;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.mission-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mission-quote cite {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
}

.mission-details {
    text-align: center;
}

.mission-details p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Footer EIN */
.footer-ein {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .verify-grid {
        grid-template-columns: 1fr;
    }
}

/* Review Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.modal-content {
    background: white;
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    position: relative;
    margin: 2rem auto;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.5rem;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Review Form */
.form-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.required {
    color: #dc2626;
}

.rating-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.rating-group label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: normal;
    cursor: pointer;
}

.rating-group input[type="radio"] {
    cursor: pointer;
}

.form-group textarea,
.form-group input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group textarea:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.review-message {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.review-message.success {
    background: #dcfce7;
    color: #166534;
}

.review-message.error {
    background: #fee2e2;
    color: #991b1b;
}

/* Button as primary (for bill cards) */
button.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

button.btn-primary:hover {
    background: var(--primary-dark);
}

button.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

button.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .rating-group {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
}
