/* Scrollport Landing Page Styles */
:root {
    --primary-color: #9370DB;
    --primary-dark: #7B68EE;
    --primary-light: #E6E6FA;
    --secondary-color: #333;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-secondary: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

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

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

/* Header & Navigation */
header {
    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;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
}

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

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

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

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

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.browser-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.browser-header {
    background: #f8f9fa;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28ca42;
}

.browser-url {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.browser-content {
    display: flex;
    height: 350px;
    position: relative;
}

.sidebar-mockup {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    background: #0a0a0a;
    color: white;
    padding: 16px;
    border-left: 1px solid #333;
    z-index: 2;
}

.sidebar-header {
    margin-bottom: 16px;
}

.search-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 6px 8px;
    background: #222;
    border: 1px solid #444;
    border-radius: 4px;
    color: white;
    font-size: 11px;
    outline: none;
}

.search-input::placeholder {
    color: #888;
}

.clear-btn {
    background: #e53e3e;
    border: 1px solid #fc8181;
    color: white;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition);
}

.clear-btn:hover {
    background: #c53030;
    transform: scale(1.05);
}

.bookmark-item {
    padding: 12px;
    margin-bottom: 8px;
    border-radius: var(--radius);
    background: #222;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bookmark-item.active {
    background: rgba(147, 112, 219, 0.2);
    border: 1px solid var(--primary-color);
}

.bookmark-item:hover {
    background: #333;
}

.bookmark-content {
    flex: 1;
}

.bookmark-title {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.4;
}

.bookmark-meta {
    font-size: 10px;
    color: var(--primary-color);
    opacity: 0.8;
}

.color-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.color-dot.active {
    background-color: red;
}

.color-dot.yellow {
    background-color: yellow;
}

.color-dot.green {
    background-color: green;
}

.main-content {
    flex: 1;
    padding: 24px;
    background: var(--bg-color);
    position: relative;
}

.main-content h2 {
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.main-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.highlight-box {
    background: var(--primary-light);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 20px;
}

.highlight-box p {
    margin: 0;
    color: var(--primary-dark);
    font-weight: 500;
}

.floating-add-btn {
    position: absolute;
    top: 120px;
    right: 250px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(147, 112, 219, 0.3);
    z-index: 10;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-color);
}

.features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.feature-card.highlight {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(147, 112, 219, 0.1);
}

.feature-card.highlight:hover {
    box-shadow: 0 0 0 2px rgba(147, 112, 219, 0.2), var(--shadow-lg);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

/* Demo Section */
.demo {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.demo h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.demo-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Download Section */
.download {
    padding: 80px 0;
    background: var(--bg-color);
}

.download h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.download-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.download-info h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.download-features {
    list-style: none;
    margin-bottom: 32px;
}

.download-features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 16px;
}

.download-buttons {
    display: flex;
    gap: 16px;
}

.download-visual {
    display: flex;
    justify-content: center;
}

.extension-mockup {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    max-width: 300px;
}

.extension-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.extension-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* Donate Section */
.donate {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.donate h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.donate-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.donate-text {
    color: var(--text-color);
}

.donate-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.donate-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.donate-text li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.donate-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.donate-buttons .btn-primary,
.donate-buttons .btn-secondary {
    justify-content: center;
    gap: 10px;
}

.paypal-btn {
}

.paypal-btn:hover {
}

.extension-rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stars {
    font-size: 20px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-tagline {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.footer-nav h4,
.footer-social h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links,
.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover,
.social-links a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    color: #999;
    font-size: 12px;
    margin-top: 20px;
    line-height: 1.4;
}

/* Support and Privacy Pages */
.support-hero, .privacy-hero {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.support-hero h1, .privacy-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.support-hero p, .privacy-hero p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-info {
    padding: 80px 0;
    background: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

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

.faq {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.troubleshooting {
    padding: 80px 0;
    background: var(--bg-color);
}

.troubleshooting h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.troubleshoot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.troubleshoot-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.troubleshoot-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.troubleshoot-item ul {
    color: var(--text-light);
    line-height: 1.6;
}

.troubleshoot-item li {
    margin-bottom: 8px;
}

.privacy-content {
    padding: 80px 0;
    background: var(--bg-color);
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: var(--secondary-color);
}

.privacy-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: var(--secondary-color);
}

.privacy-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.privacy-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-text li {
    margin-bottom: 10px;
    color: var(--text-light);
}

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

.privacy-text a:hover {
    text-decoration: underline;
}

.privacy-text em {
    font-style: italic;
    color: var(--text-light);
}

.privacy-text strong {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .nav-links {
        margin-top: 20px;
        gap: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .download-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .download-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-copyright {
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .feature-card h3 {
        font-size: 20px;
    }
}
/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-color);
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.how-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.step {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}
/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-color);
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.how-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.step {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero, .features, .benefits, .how-it-works, .demo {
        padding: 60px 0;
    }
    
    .hero h1, .features h2, .benefits h2, .how-it-works h2, .demo h2 {
        font-size: 28px;
    }
    
    .step, .benefit, .feature {
        padding: 20px;
    }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-visual {
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.features h2, .benefits h2, .how-it-works h2, .demo h2 {
    animation: fadeInUp 0.8s ease-out;
}

.features-grid, .benefits-grid, .steps-grid {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Subtle pulse animation for CTA buttons */
.btn-primary {
    animation: fadeIn 1s ease-out 0.5s both;
}

.btn-primary:hover {
    animation: none;
}

/* Floating animation for the add button */
.floating-add-btn {
    animation: fadeIn 1s ease-out 1s both;
}

.floating-add-btn:hover {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
/* Mobile Responsiveness Updates */
@media (max-width: 768px) {
    }




