/* ============================================================
   MERKUR OFFIZIELL — Design System
   Domain: merkur-offiziell.de
   Brand: Dark Navy #001A4D + Gold #FFD700
   ============================================================ */

/* ---------- 0. RESET ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* ---------- 1. TOKENS ---------- */
:root {
    --navy: #001A4D;
    --navy-dark: #000D2B;
    --navy-mid: #0D2466;
    --navy-light: #162F80;
    --gold: #FFD700;
    --gold-dark: #C9A227;
    --gold-light: #FFE55A;
    --red: #E63946;
    --white: #F0F4FF;
    --grey: #9EA8C0;
    --grey-dark: #57637A;

    --font-main: 'Inter', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 24px rgba(255, 215, 0, 0.25);
    --transition: 0.25s ease;
}

/* ---------- 2. BASE ---------- */
body {
    font-family: var(--font-main);
    background: var(--navy-dark);
    color: var(--white);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 80% 10%, rgba(255, 215, 0, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 90%, rgba(0, 26, 77, 0.8) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--navy);
}

/* ---------- 3. SKIP LINK ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-dark);
    padding: 8px 20px;
    border-radius: 0 0 var(--radius) var(--radius);
    font-weight: 700;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ---------- 4. HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 13, 43, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 0 20px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-svg {
    width: 44px;
    height: 44px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--grey);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Desktop nav */
.main-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.main-nav a {
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
}

/* CTA button in header */
.btn-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-weight: 800;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
}

.btn-cta-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 12px 20px 20px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.mobile-nav .btn-cta {
    margin-top: 16px;
    text-align: center;
    display: block;
}

/* ---------- 5. MOBILE STICKY BAR ---------- */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 14px 20px;
    text-align: center;
}

.mobile-sticky a {
    color: var(--navy-dark);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ---------- 6. HERO ---------- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: var(--navy);
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 13, 43, 0.92) 40%, rgba(0, 13, 43, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--gold);
}

.hero-text {
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* ---------- 7. SECTION HEADINGS ---------- */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
}

.section-title span {
    color: var(--gold);
}

.section-text {
    color: var(--grey);
    margin-top: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

/* ---------- 8. CARDS ---------- */
.cards-grid {
    display: grid;
    gap: 24px;
}

.cards-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cards-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: var(--navy-mid);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(255, 215, 0, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-text {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

.card-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ---------- 9. TABLES ---------- */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 215, 0, 0.15);
    margin: 30px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.data-table caption {
    padding: 16px;
    background: var(--navy-mid);
    font-weight: 700;
    color: var(--gold);
    text-align: left;
    font-size: 0.95rem;
}

.data-table th {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: rgba(255, 215, 0, 0.04);
}

.data-table .highlight {
    color: var(--gold);
    font-weight: 700;
}

.data-table .good {
    color: #4ade80;
}

.data-table .bad {
    color: var(--red);
}

/* ---------- 10. CHART WRAPPERS ---------- */
.chart-wrap {
    background: var(--navy-mid);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin: 30px 0;
    position: relative;
    width: 100%;
    /* Fixed height required when maintainAspectRatio:false is used */
    height: 340px;
    overflow: hidden;
}

.chart-wrap canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.chart-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

/* ---------- 11. STATS BAR ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat-item {
    background: var(--navy);
    padding: 28px 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--grey);
    margin-top: 6px;
}

/* ---------- 12. ACCORDION / FAQ ---------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--navy-mid);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--grey);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ---------- 13. BREADCRUMB ---------- */
.breadcrumb {
    padding: 14px 0;
}

.breadcrumb ol {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.breadcrumb li {
    color: var(--grey);
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
}

.breadcrumb a {
    color: var(--grey);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb li:last-child {
    color: var(--white);
}

/* ---------- 14. AUTHOR BOX ---------- */
.author-box {
    display: flex;
    gap: 24px;
    background: var(--navy-mid);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    margin-top: 40px;
    align-items: center;
}

.author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-role {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-bio {
    color: var(--grey);
    font-size: 0.9rem;
}

/* ---------- 15. SEO CONTENT SECTION ---------- */
.seo-content {
    padding: 70px 0;
}

.seo-article h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 40px 0 16px;
    color: var(--white);
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--gold);
}

.seo-article p {
    color: #BCC7E0;
    margin-bottom: 18px;
    line-height: 1.8;
}

.seo-article strong {
    color: var(--white);
}

.seo-article .text-link {
    color: var(--gold);
    border-bottom: 1px dashed rgba(255, 215, 0, 0.4);
    transition: var(--transition);
}

.seo-article .text-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

.seo-article ul,
.seo-article ol {
    margin: 12px 0 18px 22px;
    color: #BCC7E0;
}

.seo-article li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.seo-article ul li {
    list-style: disc;
}

.seo-article ol li {
    list-style: decimal;
}

/* ---------- 16. FOOTER ---------- */
.site-footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--grey);
    font-size: 0.9rem;
    margin-top: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--grey);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--grey);
}

.footer-bottom a {
    color: var(--grey);
}

.footer-bottom a:hover {
    color: var(--gold);
}

.gambling-warning {
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 0.82rem;
    color: #FCA5A5;
    text-align: center;
    margin-bottom: 30px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
    font-weight: 800;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- 17. PROGRESS BARS ---------- */
.progress-bar-wrap {
    margin: 14px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 6px;
}

.progress-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

/* ---------- 18. FEATURE LIST ---------- */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text span {
    color: var(--grey);
    font-size: 0.92rem;
}

/* ---------- 19. BONUS CARD ---------- */
.bonus-card {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.bonus-title {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 20px;
}

.bonus-terms {
    font-size: 0.78rem;
    color: var(--grey-dark);
    margin-top: 14px;
}

/* ---------- 20. NOTIFICATION / ALERT ---------- */
.alert {
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.9rem;
    margin: 20px 0;
}

.alert-info {
    background: rgba(0, 100, 200, 0.15);
    border-left: 4px solid #3B82F6;
    color: #93C5FD;
}

.alert-warn {
    background: rgba(234, 179, 8, 0.1);
    border-left: 4px solid #EAB308;
    color: #FDE68A;
}

.alert-danger {
    background: rgba(230, 57, 70, 0.1);
    border-left: 4px solid var(--red);
    color: #FCA5A5;
}

/* ---------- 21. FORM ELEMENTS ---------- */
.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--grey);
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.form-control::placeholder {
    color: var(--grey-dark);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--grey);
}

.form-check input {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

/* ---------- 22. TAGS ---------- */
.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.tag-gold {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
}

.tag-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #93C5FD;
}

.tag-red {
    background: rgba(230, 57, 70, 0.12);
    color: #FCA5A5;
}

.tag-green {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
}

/* ---------- 23. RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-sticky {
        display: block;
    }

    body {
        padding-bottom: 56px;
    }

    .hero {
        min-height: 380px;
    }

    .hero-content {
        padding: 50px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 50px 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a,
    .hero-actions button {
        text-align: center;
    }

    /* Charts on tablet/mobile */
    .chart-wrap {
        padding: 18px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        height: 60px;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Charts on small phones */
    .chart-wrap {
        padding: 12px;
        height: 200px;
    }

    .chart-title {
        font-size: 0.82rem;
    }

    /* Cards responsive padding */
    .card-body {
        padding: 14px;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .data-table th,
    .data-table td {
        padding: 10px 10px;
        font-size: 0.8rem;
    }
}