/* Basic Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7f9; /* Light grey-blue for overall background */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 {
    color: #2c3e50; /* Dark Grey */
    margin-bottom: 15px;
}

h1 {
    font-size: 2.8em;
    font-weight: 700;
}

h2 {
    font-size: 2em;
    font-weight: 600;
}

h3 {
    font-size: 1.5em;
    font-weight: 500;
}

p {
    margin-bottom: 1em;
}

a {
    color: #2e8b57; /* Dark Green */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header .logo img {
    height: 40px;
}

.header .nav ul {
    list-style: none;
    display: flex;
}

.header .nav ul li {
    margin-left: 30px;
}

.header .nav ul li a {
    color: #555;
    font-weight: 500;
    font-size: 1.1em;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.header .nav ul li a:hover {
    color: #2e8b57; /* Dark Green for nav hover */
    text-decoration: none;
}

.header .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #555;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #2e8b57; /* Dark Green */
    color: #fff;
}

.btn-primary:hover {
    background-color: #226b41; /* Darker Green */
    color: #fff;
    text-decoration: none;
}

.btn-primary-large {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background-color: #2e8b57; /* Dark Green */
    color: #fff;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary-large:hover {
    background-color: #226b41; /* Darker Green */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #e0e0e0; /* Light grey */
    color: #34495e; /* Dark Grey */
    border: 1px solid #a0a0a0; /* Slightly darker grey */
    margin-right: 10px;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
    color: #34495e;
    text-decoration: none;
}

/* Main Content Sections */
.main-content {
    padding: 40px 0;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: #555;
    text-align: center;
}

.small-text {
    font-size: 0.9em;
    color: #777;
    margin-top: 10px;
}

/* Hero Sections */
.hero-skewed {
    background-color: #f5f7f9; /* Light grey-blue */
    padding: 80px 0;
    overflow: hidden; /* For skew effect */
    position: relative;
}

.hero-skewed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d4edda; /* Light Green for part of background */
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: 0;
}

.hero-skewed .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.hero-skewed .hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-skewed .hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero-skewed .hero-content p {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 30px;
}

.hero-skewed .hero-image {
    flex: 1;
    text-align: right;
}

.hero-skewed .hero-image img {
    max-height: 450px;
    width: auto;
    display: inline-block;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Section APK Info */
.section-apk-info {
    background-color: #ffffff;
    padding: 50px 0;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.apk-points {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 1.1em;
    color: #555;
}

.apk-points li {
    margin-bottom: 10px;
}

.apk-points li strong {
    color: #2e8b57; /* Dark Green */
}

.apk-badge-image {
    max-width: 150px;
    margin: 20px auto;
    display: block;
}

/* Section Installation Timeline */
.section-installation-timeline {
    background-color: #f5f7f9; /* Light grey-blue */
    padding: 60px 0;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0 auto;
    padding-left: 20px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background-color: #d4edda; /* Light Green */
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -18px; /* Half of width + half of border */
    width: 40px;
    height: 40px;
    background-color: #2e8b57; /* Dark Green */
    border: 4px solid #ffffff;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item .timeline-step {
    position: absolute;
    top: 5px;
    left: -18px;
    width: 40px;
    height: 40px;
    line-height: 36px; /* Adjust line-height for vertical centering */
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2em;
    z-index: 2;
}

.timeline-item .timeline-content h3 {
    color: #2c3e50; /* Dark Grey */
    margin-bottom: 10px;
    font-size: 1.5em;
}

.timeline-item .timeline-content p {
    color: #555;
    font-size: 1em;
    line-height: 1.7;
}

/* Section Permissions */
.section-permissions {
    background-color: #ffffff;
    padding: 50px 0;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.permission-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 1.1em;
    color: #555;
}

.permission-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232e8b57" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
}

.permission-list li strong {
    color: #2c3e50; /* Dark Grey */
}

/* Section System Requirements */
.section-system-requirements {
    background-color: #f5f7f9; /* Light grey-blue */
    padding: 60px 0;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.section-system-requirements p {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: #555;
}

.section-system-requirements table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.section-system-requirements th,
.section-system-requirements td {
    border: 1px solid #e0e0e0;
    padding: 15px;
    text-align: left;
    font-size: 1em;
}

.section-system-requirements th {
    background-color: #34495e; /* Dark Grey header */
    color: #ffffff;
    font-weight: 600;
}

.section-system-requirements tr:nth-child(even) {
    background-color: #f5f5f5;
}

.section-system-requirements tr:hover {
    background-color: #e8f5f5; /* Light grey-blue hover */
}

.system-req-image {
    max-width: 90%;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Section Troubleshooting */
.section-troubleshooting {
    background-color: #ffffff;
    padding: 60px 0;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

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

.troubleshoot-item {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-left: 5px solid #2e8b57; /* Dark Green accent */
}

.troubleshoot-item h3 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.troubleshoot-item p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
}

/* Section Update Guide */
.section-update-guide {
    background-color: #f5f7f9; /* Light grey-blue */
    padding: 50px 0;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.update-methods {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 1.1em;
    color: #555;
}

.update-methods li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232e8b57" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M12 8v4m0 4h.01"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
}

.update-methods li strong {
    color: #2c3e50; /* Dark Grey */
}


/* Section CTA Bottom (reusing class from Page 01, but with Dark Grey theme) */
.section-cta-bottom {
    background-color: #34495e; /* Dark Grey */
    color: #fff;
    text-align: center;
    padding: 60px 0;
    border-radius: 0;
    box-shadow: none;
}

.section-cta-bottom h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 2.5em;
}

.cta-small-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    margin-top: 15px;
}

/* Footer Multi-Column Dark */
.footer-multi-column-dark {
    background-color: #2c3e50; /* Dark Grey */
    color: #ecf0f1;
    padding: 40px 0;
    font-size: 0.95em;
}

.footer-multi-column-dark .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: flex-start;
    text-align: left;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #2e8b57; /* Dark Green hover */
    text-decoration: underline;
}

.footer-col .social-links a {
    display: inline-block;
    margin-right: 15px;
}

.footer-col .social-links a:last-child {
    margin-right: 0;
}

.footer-col .social-links img {
    height: 24px;
    filter: invert(100%) brightness(1.5); /* Make icons visible on dark background */
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #b0c4de;
    margin-bottom: 0;
}


/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        max-width: 1000px;
    }
    h1 { font-size: 2.5em; }
    h2 { font-size: 1.8em; }
    .hero-skewed .hero-content h1 {
        font-size: 3em;
    }
    .section-cta-bottom h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.6em; }
    .header .nav {
        display: none;
    }
    .header .menu-toggle {
        display: block;
    }
    .header .logo img {
        height: 35px;
    }
    .hero-skewed .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-skewed .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .hero-skewed .hero-image {
        text-align: center;
    }
    .timeline-wrapper {
        padding-left: 0;
        max-width: 500px;
    }
    .timeline-wrapper::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-item {
        padding-left: 0;
        text-align: center;
    }
    .timeline-item::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-item .timeline-step {
        left: 50%;
        transform: translateX(-50%);
    }
    .troubleshoot-grid {
        grid-template-columns: 1fr;
    }
    .troubleshoot-item {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-cta-bottom h2 {
        font-size: 2em;
    }
    .footer-multi-column-dark .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col {
        min-width: unset;
        width: 100%;
        margin: 15px 0;
    }
    .footer-col ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .footer-col ul li {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.4em; }
    h3 { font-size: 1.2em; }
    .header .logo img {
        height: 30px;
    }
    .btn-primary, .btn-secondary, .btn-primary-large {
        padding: 10px 20px;
        font-size: 1em;
    }
    .hero-skewed .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-skewed .hero-content p {
        font-size: 1.1em;
    }
    .hero-skewed .hero-image img {
        max-height: 350px;
    }
    .section-cta-bottom h2 {
        font-size: 1.8em;
    }
    .section-cta-bottom p {
        font-size: 0.95em;
    }
}

@media (max-width: 390px) {
    h1 { font-size: 1.6em; }
    h2 { font-size: 1.3em; }
    .hero-skewed .hero-content h1 {
        font-size: 2em;
    }
    .section-cta-bottom h2 {
        font-size: 1.6em;
    }
}
/* AAPoker visual safety patch: CTA sizing, image containment, icon consistency */
html {
    box-sizing: border-box;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.header .logo img,
.topbar img,
.quality-top img,
.mobile-head img,
img[src*="aapoker-logo-primary"],
img[src*="aapoker-logo-icon"] {
    width: auto;
    height: 38px;
    max-height: 42px;
    max-width: 180px;
    object-fit: contain;
    flex: 0 0 auto;
}

.hero,
.quality-hero,
.section,
.section.media,
.section.compact,
.app,
.pc,
.reinstall,
.note-left,
.entry,
.phone-hero,
.login-hero,
[class*="grid"] {
    min-width: 0;
}

.visual-panel,
.quality-card,
.mini-card,
.card,
article,
figure {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.visual-panel img,
.quality-card img,
.content-image,
.phone-strip img,
.final-image img,
.hero img,
.quality-hero img,
.section img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}

.cta-row,
.quality-cta,
.download-buttons,
.hero-buttons,
.hero-actions,
.final-cta,
.seo-final-cta,
.quality-hero-cta,
.mid-cta {
    align-items: center;
    align-content: center;
    min-height: 0;
}

.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-primary-hero,
.btn-primary-final-cta,
.btn-tertiary,
.quality-btn,
.module-cta,
.topbar a,
.mobile-head a,
.cta-row a,
.quality-cta a,
.download-buttons a,
.hero-buttons a,
.hero-actions a,
.final-cta a,
.seo-final-cta a,
.quality-hero-cta a,
.mid-cta a,
button[class*="btn"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 0;
    align-self: center;
    flex: 0 0 auto;
    white-space: normal;
}

@media (max-width: 900px) {
    .cta-row,
    .quality-cta,
    .download-buttons,
    .hero-buttons,
    .hero-actions,
    .seo-final-cta,
    .quality-hero-cta,
    .mid-cta {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-primary-large,
    .btn-primary-hero,
    .btn-primary-final-cta,
    .btn-tertiary,
    .quality-btn,
    .module-cta,
    .topbar a,
    .mobile-head a,
    .cta-row a,
    .quality-cta a,
    .download-buttons a,
    .hero-buttons a,
    .hero-actions a,
    .final-cta a,
    .seo-final-cta a,
    .quality-hero-cta a,
    .mid-cta a {
        width: auto;
        max-width: 100%;
        min-height: 0;
        height: auto;
        flex: 0 1 auto;
    }

    .hero,
    .quality-hero,
    .section,
    .section.media,
    .section.compact,
    .app,
    .pc,
    .reinstall,
    .note-left,
    .entry,
    .phone-hero,
    .login-hero {
        max-width: 100%;
        overflow-x: hidden;
    }

    h1, h2, h3, p, li, a {
        overflow-wrap: anywhere;
    }
}
/* AAPoker visual safety patch v2: prevent CTA vertical text and icon oversize */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-primary-hero,
.btn-primary-final-cta,
.btn-tertiary,
.quality-btn,
.module-cta,
.topbar a,
.mobile-head a,
.cta-row a,
.quality-cta a,
.download-buttons a,
.hero-buttons a,
.hero-actions a,
.final-cta a,
.seo-final-cta a,
.quality-hero-cta a,
.mid-cta a,
a[href="/go/aapoker"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: calc(100vw - 48px) !important;
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.25 !important;
    align-self: center !important;
    flex: 0 1 auto !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-align: center !important;
}

.header .logo img,
.topbar img,
.quality-top img,
.mobile-head img,
img[src*="aapoker-logo-primary"],
img[src*="aapoker-logo-icon"] {
    width: auto !important;
    height: auto !important;
    max-height: 42px !important;
    max-width: 180px !important;
    object-fit: contain !important;
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .btn-primary-large,
    .btn-primary-hero,
    .btn-primary-final-cta,
    .btn-tertiary,
    .quality-btn,
    .module-cta,
    .topbar a,
    .mobile-head a,
    .cta-row a,
    .quality-cta a,
    .download-buttons a,
    .hero-buttons a,
    .hero-actions a,
    .final-cta a,
    .seo-final-cta a,
    .quality-hero-cta a,
    .mid-cta a,
    a[href="/go/aapoker"] {
        padding-top: 11px !important;
        padding-bottom: 11px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        font-size: 15px !important;
    }
}
/* AAPoker visual safety patch v3: mobile tables and route-card CTA blocks */
table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}

th,
td {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.table-download-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.25 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
}

.route-card,
a.route-card,
.entry-card,
a.entry-card {
    height: auto !important;
    min-height: 0 !important;
    align-items: center !important;
    align-self: center !important;
    line-height: 1.25 !important;
}

.route-card strong,
.route-card small,
.entry-card strong,
.entry-card small {
    line-height: 1.25 !important;
}

@media (max-width: 480px) {
    table {
        font-size: 13px;
    }

    th,
    td {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .route-card,
    a.route-card,
    .entry-card,
    a.entry-card {
        padding: 10px 12px !important;
        gap: 10px !important;
    }
}
/* AAPoker visual safety patch v4: compact route cards and narrow table CTAs */
.route-card,
a.route-card {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    gap: 4px 14px !important;
    padding: 14px 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.route-card span {
    width: 42px !important;
    height: 42px !important;
    grid-row: span 2 !important;
    flex: 0 0 auto !important;
}

.route-card strong,
.route-card small {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

.table-download-link {
    max-width: 100% !important;
    padding: 4px 6px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-break: keep-all !important;
}

.info-col-item {
    max-width: 100% !important;
    padding: 22px !important;
}

@media (max-width: 480px) {
    .route-card,
    a.route-card {
        grid-template-columns: 42px minmax(0, 1fr) !important;
        padding: 10px 12px !important;
    }

    .route-card strong {
        font-size: 18px !important;
    }

    .route-card small {
        font-size: 13px !important;
    }

    .info-col-item {
        padding: 18px !important;
    }
}