/* OpenAgriSynapse "Eco-Intelligence" Theme */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --oas-primary: #1565C0;
    /* Material Blue */
    --oas-primary-hover: #e3f2ff;
    --oas-secondary: #2E7D32;
    /* Deep Forest Green */
    --oas-secondary-hover: #1B5E20;
    --oas-accent: #FFB300;
    /* Alert Amber */
    --oas-danger: #D32F2F;
    /* Signal Red */

    --oas-bg-light: #F8F9FA;
    /* Light Mode Background */
    --oas-bg-panel: #FFFFFF;
    /* Panel/Card Background */
    --oas-text-main: #1E293B;
    /* Slate 800 */
    --oas-text-muted: #64748B;
    /* Slate 500 */
    --oas-border: #E2E8F0;
    /* Slate 200 */

    /* Typography */
    --oas-font-sans: 'Pretendard', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;

    /* Bootstrap Overrides (simulated via vars or usage classes) */
    --bs-primary: var(--oas-primary);
    --bs-secondary: var(--oas-secondary);
    --bs-warning: var(--oas-accent);
    --bs-danger: var(--oas-danger);
    --bs-body-bg: var(--oas-bg-light);
    --bs-body-color: var(--oas-text-main);
    --bs-body-font-family: var(--oas-font-sans);
}

body {
    background-color: var(--oas-bg-light);
    font-family: var(--oas-font-sans);
    color: var(--oas-text-main);
    letter-spacing: -0.01em;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 700;
    color: #0F172A;
    /* Slate 900 */
    letter-spacing: -0.02em;
}

/* Card Styling - Clean & Minimal */
.card {
    background-color: var(--oas-bg-panel);
    border: 1px solid var(--oas-border);
    border-radius: 0.75rem;
    /* 12px */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}



.card-header {
    background-color: transparent;
    border-bottom: 1px solid var(--oas-border);
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--oas-text-main);
}

.card-footer {
    background-color: transparent;
    border-top: 1px solid var(--oas-border);
    padding: 1rem 1.5rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--oas-primary);
    border-color: var(--oas-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--oas-primary-hover);
    border-color: var(--oas-primary-hover);
}

.btn-outline-primary {
    color: var(--oas-primary);
    border-color: var(--oas-primary);
}

.btn-outline-primary:hover {
    background-color: var(--oas-primary);
    border-color: var(--oas-primary);
}

.btn-secondary {
    background-color: var(--oas-secondary);
    border-color: var(--oas-secondary);
}

.btn {
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Sidebar Styles (Researcher/Gov Layouts) */
.sidebar {
    background-color: var(--oas-bg-panel);
    border-right: 1px solid var(--oas-border);
    box-shadow: 4px 0 24px 0 rgba(0, 0, 0, 0.02);
}

.sidebar-header {
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--oas-primary);
    border-bottom: 1px solid var(--oas-border);
}

.sidebar .nav-link {
    color: var(--oas-text-muted);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.sidebar .nav-link:hover {
    color: var(--oas-primary);
    background-color: #F1F8E9;
    /* Very light green */
}

.sidebar .nav-link.active {
    color: var(--oas-primary);
    background-color: #E8F5E9;
    border-left-color: var(--oas-primary);
    font-weight: 700;
}

.sidebar .nav-link i {
    margin-right: 0.75rem;
    font-size: 1.1em;
}

/* Navbar (Top) */
.navbar {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.bg-dark {
    background-color: #1E293B !important;
    /* Override standard dark with Slate 800 */
}

/* Badges */
.badge {
    font-weight: 600;
    padding: 0.35em 0.65em;
    border-radius: 0.375rem;
}

/* Tables */
.table thead th {
    background-color: #F8FAFC;
    color: var(--oas-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--oas-border);
}

/* Forms */
.form-control,
.form-select {
    border-radius: 0.5rem;
    border-color: var(--oas-border);
    padding: 0.6rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--oas-secondary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

/* Custom Utilities */
.text-primary {
    color: #0D47A1 !important;
}

/* Darker blue for better contrast */
.text-primary-light {
    color: #FFFFFF !important;
}

/* White text for use on bg-primary */
.text-secondary {
    color: var(--oas-secondary) !important;
}

.bg-primary {
    background-color: var(--oas-primary-hover) !important;
    color: #FFFFFF;
}

/* White text by default on primary bg */
.bg-secondary {
    background-color: var(--oas-secondary) !important;
    color: #FFFFFF;
}

/* Dashboard Grid/Charts placeholders */

/* Mission Page Styles - Eco Theme */
.mission-hero {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 50%, #1B5E20 100%);
    color: white;
    padding: 5rem 0;
    margin: -3rem -15px 3rem -15px;
    position: relative;
    overflow: hidden;
}

.mission-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.mission-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.mission-hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.mission-hero .tagline {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(21, 101, 192, 0.1);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.section-number {
    display: inline-block;
    background: linear-gradient(135deg, #1565C0, #2E7D32);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #1565C0;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, rgba(21, 101, 192, 0.1), transparent);
    border-left: 4px solid #1565C0;
    display: inline-block;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #334155;
}

.threat-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-left: 5px solid #D32F2F;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.threat-card:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%);
    transform: translateX(10px);
}

.threat-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 0.75rem;
}

.threat-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 0.5rem;
}

.value-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #1565C0, #2E7D32);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleY(1);
}

.value-card:hover {
    border-color: #1565C0;
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.15);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}

.tech-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1565C0, #2E7D32);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    margin: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
}

.closing-statement {
    background: linear-gradient(135deg, #1565C0 0%, #2E7D32 100%);
    color: white;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 4rem;
    box-shadow: 0 15px 50px rgba(21, 101, 192, 0.3);
    position: relative;
    overflow: hidden;
}

.closing-statement::before {
    content: '🌾';
    position: absolute;
    font-size: 10rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.closing-statement p {
    position: relative;
    z-index: 1;
    margin: 0;
    line-height: 1.8;
}

.emoji-icon {
    font-size: 2.5rem;
    display: inline-block;
    margin-right: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.highlight-box {
    background: linear-gradient(to right, rgba(21, 101, 192, 0.05), rgba(46, 125, 50, 0.05));
    border-left: 4px solid #FFB300;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #1E293B;
}

@media (max-width: 768px) {
    .mission-hero h1 {
        font-size: 2.5rem;
    }

    .mission-hero .subtitle {
        font-size: 1.2rem;
    }

    .mission-hero .section-card {
        padding: 2rem;
    }
}

/* Products Page Styles - Eco Theme */
.fixednav {
    position: sticky;
    top: 0;
    z-index: 100;
    font-size: 24px;
    background-color: var(--bs-primary-bg-subtle, #cfe2ff) !important;
    /* Bootstrap primary-subtle fallback */
}

.fixednav a {
    text-decoration: none;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.product-image {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}


/* Project Page Styles - Eco Theme */
.project-hero {
    background: linear-gradient(135deg, #2E7D32 0%, #1565C0 50%, #0D47A1 100%);
    color: white;
    padding: 5rem 0;
    margin: -3rem -15px 3rem -15px;
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.project-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.project-hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.project-hero .tagline {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.project-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(21, 101, 192, 0.1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #1565C0, #2E7D32);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.project-number {
    display: inline-block;
    background: linear-gradient(135deg, #1565C0, #2E7D32);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.project-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}

.project-status {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.status-completed {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.status-ongoing {
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    color: white;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.status-prototype {
    background: linear-gradient(135deg, #FFB300, #FF8F00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.project-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(to right, rgba(21, 101, 192, 0.03), transparent);
    border-left: 4px solid #1565C0;
    border-radius: 0.5rem;
}

.section-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1565C0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #1565C0, #2E7D32);
    margin-right: 0.75rem;
    border-radius: 2px;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #2E7D32;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.tech-list li:hover {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.15);
}

.tech-name {
    font-weight: 700;
    color: #0F172A;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.tech-desc {
    color: #64748B;
    font-size: 0.95rem;
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 3.5rem;
}

.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1565C0, #2E7D32);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.achievement-list li:hover {
    border-color: #1565C0;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.15);
    transform: translateX(5px);
}

.achievement-title {
    font-weight: 700;
    color: #0F172A;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.5rem;
}

.achievement-desc {
    color: #64748B;
    font-size: 0.95rem;
}

.goal-box {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.05), rgba(46, 125, 50, 0.05));
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px dashed #1565C0;
    margin-bottom: 2rem;
}

.goal-label {
    font-weight: 700;
    color: #1565C0;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: block;
}

.goal-text {
    color: #1E293B;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.scope-box {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.scope-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.scope-box li {
    margin-bottom: 0.75rem;
    color: #334155;
    line-height: 1.7;
}

.scope-box li strong {
    color: #0F172A;
}

.trl-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFB300, #FF8F00);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
    box-shadow: 0 2px 10px rgba(255, 179, 0, 0.3);
}

@media (max-width: 768px) {
    .project-hero h1 {
        font-size: 2.5rem;
    }

    .project-hero .subtitle {
        font-size: 1.2rem;
    }

    .project-card {
        padding: 2rem;
    }
}

/* Company Intro Page Styles - Eco Theme */
.hero-section {
    position: relative;
    height: 600px;
    background-image: url('/images/company_intro_hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    line-height: 1.3;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.section-padding {
    padding: 5rem 0;
}

.bg-light-premium {
    background-color: #f8f9fa;
}

.feature-icon-box {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 3rem;
    color: #198754;
    margin-bottom: 1.5rem;
}

.vision-card {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(25, 135, 84, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.term-explanation {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 5px;
}/* Careers & Inquiry Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #2E7D32 0%, #1565C0 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.inquiry-hero {
    background: linear-gradient(135deg, #455A64 0%, #37474F 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.form-section {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
