/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Commander brand colors */
    --brand-navy: #1a1a3e;
    --brand-navy-dark: #12122e;
    --brand-navy-light: #252554;

    /* macOS-inspired color palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-tertiary: #e8e8ed;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #86868b;
    --accent-blue: var(--brand-navy);
    --accent-blue-hover: var(--brand-navy-dark);
    --border-light: #d2d2d7;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.16);
    --border-radius: 12px;
    --window-bg: #fafafa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nowrap {
    white-space: nowrap;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--accent-blue);
}

.nav-links .btn-primary {
    color: white;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn-primary {
    background: var(--accent-blue);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-blue);
    padding: 0.625rem 1.5rem;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--accent-blue);
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-1px);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

/* Base Card */
.card {
    padding: 2.5rem;
    transition: background 0.2s ease;
}

.card:hover {
    background: var(--bg-tertiary);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-title {
    margin-bottom: 0;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-toolline {
    margin: -0.34rem 0 0.95rem;
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 650;
    color: var(--text-secondary);
}

.hero-tool-rotator {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-title-main {
    display: inline-block;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.08;
    max-width: 20ch;
    text-wrap: balance;
}

.rotating-title {
    display: inline-block;
    white-space: nowrap;
    will-change: opacity, transform;
    transition: opacity 450ms ease, transform 450ms ease;
}

.rotating-title.is-fading-out {
    opacity: 0;
    transform: translateY(-0.15em);
}

@media (prefers-reduced-motion: reduce) {
    .rotating-title {
        transition: none;
        transform: none;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin-top: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 980px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.18rem, 2.2vw, 1.36rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.45;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Steps */
.hero-steps {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-step {
    padding: 1.25rem 0;
    text-align: center;
}

.hero-step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.hero-step p {
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.95rem;
}

/* Screenshot Carousel */
.screenshot-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 4110 / 2520;
}

.screenshot {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.screenshot.screenshot-active {
    opacity: 1;
}

/* Social Proof */
.social-proof {
    padding: 3.25rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.social-proof-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 1.6rem;
}

.social-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.25rem;
    flex-wrap: wrap;
}

.company-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.company-name:hover {
    color: var(--text-primary);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    margin: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 1.75rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex: 0 0 auto;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.testimonial-author a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.testimonial-author a:hover {
    color: white;
    text-decoration: underline;
}

/* Demo Video Section */
.demo-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.video-container {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    position: relative;
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1284 / 864;
    background: #000;
}

/* Custom video controls styling for webkit browsers */
.demo-video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.demo-video::-webkit-media-controls-play-button,
.demo-video::-webkit-media-controls-timeline,
.demo-video::-webkit-media-controls-volume-slider {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
    text-wrap: balance;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.real-work {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.real-work-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.real-work-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1.25rem;
}

.real-work-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.real-work-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

.supported-agents-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 920px;
    margin: 0 auto;
}

.supported-agent-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--bg-secondary);
}

.supported-agent-name {
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.agent-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-light);
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow: var(--shadow-sm);
}

.agent-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.agent-icon--pi {
    background: #111827;
    border-color: #111827;
    padding: 0.3rem;
}

.agent-icon--pi .agent-icon-image {
    object-fit: contain;
}


/* Comparison Section */
.comparison {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card--highlight {
    background: var(--bg-tertiary);
}

.card ul {
    color: var(--text-secondary);
    line-height: 1.65;
    padding-left: 1.25rem;
}

.card li {
    margin-bottom: 0.75rem;
}

/* Workflow Section */
.workflow {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.workflow-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem 2rem;
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    grid-row: 1 / -1;
}

.workflow-step h3 {
    font-size: 1.75rem;
    font-weight: 600;
    align-self: end;
}

.workflow-step p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Trust Section */
.trust {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
}

.faq-item h3 {
    font-size: 1.375rem;
}

.faq-item p {
    font-size: 1.0625rem;
}

.faq-item a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-item a:hover {
    color: #764ba2;
}

/* Control Strip */
.control-strip {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.control-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.control-strip-item {
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--bg-primary);
    padding: 1.25rem;
}

.control-strip-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    letter-spacing: -0.01em;
}

.control-strip-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-brew {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
}

.cta-brew code {
    font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--brand-navy);
}

.cta-buttons .btn-primary:hover {
    background: var(--bg-secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-tertiary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    color: currentColor;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: left;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
    opacity: 1;
}

.footer-legal {
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 900px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .window-mockup {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .social-proof {
        padding: 2.5rem 0;
    }

    .social-proof-logos {
        gap: 1.4rem;
    }

    .company-name {
        font-size: 1.05rem;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .demo-section {
        padding: 4rem 0;
    }

    .video-container {
        border-radius: 12px;
        margin: 0 -0.5rem;
    }

    .hero-toolline {
        margin: -0.2rem 0 0.62rem;
        font-size: clamp(1rem, 4.5vw, 1.2rem);
    }

    .hero-title-main {
        font-size: clamp(1.9rem, 10vw, 3rem);
        max-width: 15ch;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        max-width: 36ch;
        line-height: 1.45;
    }

    .hero-steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
        max-width: 34ch;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .real-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .supported-agents-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .control-strip-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.25rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .window-body {
        height: 300px;
    }

    .sidebar {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta a {
        width: 100%;
        text-align: center;
    }

    .supported-agents-grid {
        grid-template-columns: 1fr;
    }

    .real-work-grid {
        grid-template-columns: 1fr;
    }

    .social-proof {
        padding: 2rem 0;
    }

    .social-proof-title {
        font-size: 0.72rem;
        margin-bottom: 1.1rem;
    }

    .social-proof-logos {
        gap: 0.9rem;
    }

    .company-name {
        font-size: 0.95rem;
    }

    .testimonials {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-card blockquote {
        font-size: 1rem;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide nav links by default on mobile */
    .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid var(--border-light);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    /* Show nav links when menu is active */
    .nav-links.active {
        max-height: 520px;
        padding: 1rem 0;
    }

    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links .btn-primary {
        border-radius: 0;
        background: var(--accent-blue);
        color: white;
    }
}
