
:root {
    --bg-color: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #3b82f6; 
    --card-bg: #1a1a1a;
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.case {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}


.case-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 6rem 0;
}

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.buttons a {
    text-decoration: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.buttons a:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--border);
}


.case-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

.case-section h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 2rem;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.split h2 { margin-bottom: 1rem; }


.workflow {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.workflow div {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    font-weight: 500;
    border: 1px solid var(--border);
    position: relative;
}


.images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.images img {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.images img:hover {
    filter: grayscale(0%);
}


@media (max-width: 900px) {
    .case-hero, .split, .images {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        order: 2;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }

    .buttons {
        justify-content: center;
    }

    .workflow {
        flex-direction: column;
    }
}


.nav-header {
    padding: 2rem 0;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--text-primary);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-5px);
}


.footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}


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

.tech-list {
    font-family: monospace;
    color: var(--accent);
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.footer {
    width: 100%;
    padding: 60px 0; 
    background-color: #0d0d0d; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    text-align: center;
    margin-top: 50px;
}

.footer p {
    color: #888888; 
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 400;
}

.footer p span, .footer b {
    color: #ffffff;
}


.technical-card {
    background: #151515;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.formula-box {
    background: #000;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

.formula-box code {
    color: var(--accent);
    font-family: 'Courier New', Courier, monospace;
}


.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags span {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}


.wf-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
}

.wf-item span {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.technical-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
}


.logic-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.points-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    flex: 1;
}

.point-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--border);
}

.point-item span {
    font-weight: bold;
    color: #4ade80; 
}

.point-item.negative span {
    color: #f87171; 
}

.formula-box {
    flex: 1;
    background: #000;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--accent);
}

.formula-box code {
    font-size: 1.1rem;
    color: var(--accent);
}

@media (max-width: 600px) {
    .logic-container {
        flex-direction: column;
    }
    .points-table {
        width: 100%;
    }
}



.badge {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.pipeline-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border);
    margin-top: 2rem;
}

.pipeline-step { text-align: center; }
.pipeline-step span { display: block; font-size: 0.7rem; color: var(--accent); text-transform: uppercase; margin-bottom: 5px; }
.pipeline-step p { font-size: 0.9rem; font-weight: 500; }
.arrow { color: var(--border); font-size: 1.5rem; }


.points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.point-pill {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.point-pill.plus span { color: #4ade80; }
.point-pill.minus span { color: #f87171; }


.feature-card {
    background: #151515;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.feature-card h3 { color: var(--accent); margin-bottom: 1rem; font-size: 1.2rem; }


.learnings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.learning-item h4 { margin-bottom: 10px; color: var(--text-primary); }

@media (max-width: 768px) {
    .pipeline-container { flex-direction: column; gap: 20px; }
    .arrow { transform: rotate(90deg); }
    .learnings-grid { grid-template-columns: 1fr; }
}


.pipeline-vertical {
    display: flex;
    flex-direction: column;
    gap: 0; /* Connected look */
    max-width: 800px;
    margin: 2rem auto;
}

.pipe-step {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    border-left: 2px solid var(--border); /* The connecting line */
    position: relative;
    transition: all 0.3s ease;
}


.pipe-step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 2.5rem;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.pipe-step:hover {
    background: rgba(255, 255, 255, 0.02);
    border-left-color: var(--accent);
}

.pipe-info {
    flex: 1;
    padding-right: 2rem;
}

.pipe-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 700;
}

.pipe-info h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

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

.pipe-tech {
    background: #1a1a1a;
    padding: 5px 12px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .pipe-step {
        flex-direction: column;
        gap: 1rem;
    }
}

.section-sub {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.screenshot-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-surface);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .img-caption {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}





.case-hero .badge {
    background: rgba(147, 51, 234, 0.2); 
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}


.learning-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border);
    text-align: center;
}

.learning-box h2 {
    color: var(--accent);
    margin-bottom: 1rem;
}


.isro-theme .pipe-step::before {
    background: #a855f7;
    box-shadow: 0 0 15px #a855f7;
}


.hero-image img {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}







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

.case-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}


.pipeline-vertical {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 2rem auto;
}

.pipe-step {
    display: flex;
    justify-content: space-between;
    padding: 2.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.pipe-step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 3rem;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}



.gaming-theme {
    background-color: #050505;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace; 
}


.gaming-theme .game-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0 8vw;
    gap: 4vw;
}

.gaming-theme .hero-text {
    flex: 1;
    text-align: center !important; 
    max-width: 600px;
}

.gaming-theme .hero-visual {
    flex: 1.5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaming-theme .hero-visual img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    border-left: 2px solid #ff0000;
    mask-image: linear-gradient(to left, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 80%, transparent 100%);
}


.glitch-text {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
}


.gaming-theme .buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 3rem !important;
}

.gaming-theme .buttons a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 260px !important;
    height: 55px !important;
    padding: 0 !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s ease;
}

.gaming-theme .btn-danger {
    background: #8b0000 !important;
    border: 1px solid #ff0000 !important;
    color: #fff !important;
    box-shadow: inset 0 0 15px rgba(255, 0, 0, 0.2);
}

.gaming-theme .btn-danger:hover {
    background: #ff0000 !important;
    color: #000 !important;
    box-shadow: 0 0 25px #ff0000 !important;
    transform: scale(1.05);
}

.gaming-theme .btn-outline {
    background: #111114 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #94a3b8 !important;
}

.gaming-theme .btn-outline:hover {
    background: #ffffff !important;
    color: #000 !important;
}


.status-badge {
    color: #ff0000;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.timer-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff0000;
    color: #000;
    padding: 5px 15px;
    font-weight: 900;
    z-index: 10;
}

.tech-spec-card {
    background: #111;
    padding: 2rem;
    border-left: 3px solid #ff0000;
}

.spec-list { list-style: none; }
.spec-list span { color: #ff0000; font-weight: bold; margin-right: 10px; }



@media screen and (max-width: 992px) {
    .gaming-theme .game-hero {
        flex-direction: column;
        padding-top: 10vh;
    }

    .gaming-theme .hero-text { order: 2; }
    .gaming-theme .hero-visual { order: 1; width: 100%; }

    .gaming-theme .hero-visual img {
        height: 40vh;
        border-left: none;
        border-bottom: 2px solid #ff0000;
        mask-image: none;
    }

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


.badge {
    display: inline-block;        
    width: fit-content;          
    white-space: nowrap;          
    padding: 8px 20px;            
    background: rgba(147, 51, 234, 0.15); 
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;          
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;        
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}


@media (max-width: 480px) {
    .badge {
        white-space: normal;      
        border-radius: 12px;      
        line-height: 1.4;
        text-align: center;
    }
}




.election-theme .badge {
    background: rgba(16, 185, 129, 0.15); 
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.election-theme .case-section h2 {
    color: #10b981;
}

/* Election Pipeline Dot */
.election-pipe .pipe-step::before {
    background: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.election-pipe .pipe-step:hover {
    border-left-color: #10b981;
}


.brief-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.brief-box:hover {
    background: rgba(16, 185, 129, 0.02);
    border-color: rgba(16, 185, 129, 0.3);
}

.election-theme .tech-tags span {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}



.academic-theme {
    --accent: #2563eb; 
    --accent-soft: rgba(37, 99, 235, 0.1);
    --bg-surface: #0f172a; 
}


.academic-theme .badge {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(37, 99, 235, 0.3);
   
    display: inline-block;
    width: fit-content;
    white-space: nowrap;
}

.academic-theme .btn-primary {
    background: var(--accent);
    color: #ffffff;
    border: 1px solid var(--accent);
}

.academic-theme .btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}


.academic-theme .brief-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.academic-theme .brief-box:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.academic-theme .brief-box h2 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.academic-theme .brief-box p {
    color: #cbd5e1; 
    line-height: 1.7;
}


.academic-theme .pipeline-vertical {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.academic-theme .pipe-step::before {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    left: -6px; /* Centers the dot on the 2px line */
}

.academic-theme .pipe-label {
    color: var(--accent);
    font-weight: 700;
}

.academic-theme .pipe-info h3 {
    color: #ffffff;
}

.academic-theme .pipe-info p {
    color: #94a3b8;
}


.academic-theme .tech-spec-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.academic-theme .tech-spec-card h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.academic-theme .spec-list li span {
    color: var(--accent);
    font-weight: bold;
    margin-right: 8px;
}

.academic-theme .spec-list li {
    list-style: none;
    margin-bottom: 12px;
    color: #e2e8f0;
}


@media screen and (max-width: 900px) {
    .academic-theme .case-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .academic-theme .hero-text {
        order: 2;
    }

    .academic-theme .hero-image {
        order: 1;
    }

    .academic-theme .split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}




.section-sub {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.screenshot-gallery {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #111827;
}

.gallery-item.large {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.02);
    filter: brightness(1);
}


.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .img-caption {
    opacity: 1;
}


@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}



/* --- Bridgo 2.0 Marketplace Theme --- */

.marketplace-theme {
    --accent: #f59e0b; /* Marketplace Gold/Amber */
    --accent-soft: rgba(245, 158, 11, 0.15);
    --bg-surface: #0a0f0e; /* Very dark teal tint */
}

.marketplace-theme .badge {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.marketplace-theme .case-section h2 {
    color: var(--accent);
}

/* Bridgo Pipeline Customization */
.bridgo-pipe .pipe-step::before {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.bridgo-pipe .pipe-step:hover {
    border-left-color: var(--accent);
    background: rgba(245, 158, 11, 0.03);
}

.marketplace-theme .tech-tags span {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--accent);
}

.marketplace-theme .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    font-weight: 700;
}

.marketplace-theme .btn-primary:hover {
    background: #d97706;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}



/* Bento Gallery Styling for Bridgo */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
    margin-top: 2rem;
}

.bento-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(245, 158, 11, 0.1);
    cursor: pointer;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; }

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay span {
    color: #f59e0b; /* Bridgo Accent */
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Lightbox Styling */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}