.hero-image {
    display: block;
    width: 100%;
    height: auto;
     margin-top: 75px;
}

.page-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.12),
            rgba(0,0,0,0.42)
        );

    z-index: 2;

}

/* ---------------- WEBDESIGN HERO ---------------- */

.webdesign-hero {

    position: relative;

}

.webdesign-intro-text {

    width: 100%;

    padding: 28px 20px 10px 20px;

}

.webdesign-intro-container {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

}

.webdesign-intro-container p {

    color: var(--text-soft);

    font-size: 1.05rem;

    line-height: 1.8;

}

/* ---------------- EVENTS HERO ---------------- */

.events-hero {

    position: relative;

}


.events-intro-text {

    width: 100%;

    padding: 28px 20px 10px 20px;

}

.events-intro-container {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

}

.events-intro-container p {

    color: var(--text-soft);

    font-size: 1.05rem;

    line-height: 1.8;

}

/* ---------------- CONTENT SECTION ---------------- */

.content-section {

    width: 100%;

    padding: 50px 20px 80px 20px;

}

.content-container {

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    gap: 24px;

}

.content-card {

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 24px;

    padding: 32px;

    backdrop-filter: blur(12px);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border 0.4s ease;

}

.content-card:hover {

    transform: translateY(-4px);

    border-color: rgba(0,207,255,0.18);

    box-shadow: 0 0 35px rgba(0,207,255,0.12);

}

.content-card h2 {

    color: white;

    font-size: 1.6rem;

    margin-bottom: 18px;

}

.content-card p {

    color: var(--text-soft);

    line-height: 1.8;

    margin-bottom: 18px;

}

.custom-list {

    padding-left: 22px;

}

.custom-list li {

    color: var(--text-soft);

    margin-bottom: 12px;

    line-height: 1.6;

}

.tech-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));

    gap: 16px;

    margin-top: 10px;

}

.tech-box {

    background: rgba(0,207,255,0.08);

    border: 1px solid rgba(0,207,255,0.16);

    border-radius: 18px;

    padding: 22px;

    text-align: center;

    color: white;

    font-weight: bold;

}

.target-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 16px;

    margin-top: 10px;

}

.target-box {

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 18px;

    padding: 18px;

    text-align: center;

    color: white;

}

/* ---------------- MOBILE ---------------- */

@media (max-width: 768px) {

    .page-hero {

        min-height: auto;

    }

    .webdesign-intro-text,
    .events-intro-text {

        padding: 22px 16px 6px 16px;

    }

    .webdesign-intro-container p,
    .events-intro-container p {

        font-size: 0.92rem;

    }

    .content-section {

        padding: 30px 14px 50px 14px;

    }

    .content-card {

        padding: 22px;

    }

    .tech-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .target-grid {

        grid-template-columns: 1fr;

    }

}


/* ---------------- LOGIN PAGE ---------------- */

.login-page {

    width: 100%;

    min-height: 100vh;

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 140px 20px 80px 20px;

}

.login-container {

    width: 100%;

    max-width: 460px;

}

.login-box {

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 28px;

    padding: 40px;

    backdrop-filter: blur(18px);

    box-shadow:
        0 0 40px rgba(0,0,0,0.35),
        0 0 30px rgba(0,207,255,0.08);

}

.login-box h1 {

    text-align: center;

    font-size: 2rem;

    margin-bottom: 10px;

    color: white;

}

.login-subtitle {

    text-align: center;

    color: var(--text-soft);

    margin-bottom: 34px;

}

.login-field {

    display: flex;

    flex-direction: column;

    margin-bottom: 24px;

}

.login-field label {

    margin-bottom: 10px;

    color: var(--text-soft);

    font-size: 0.95rem;

}

.login-field input {

    width: 100%;

    padding: 16px 18px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.04);

    color: white;

    font-size: 1rem;

    outline: none;

    transition:
        border 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}

.login-field input:focus {

    border-color: rgba(0,207,255,0.55);

    box-shadow: 0 0 18px rgba(0,207,255,0.18);

    background: rgba(255,255,255,0.06);

}

.login-button {

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 16px;

    background: rgba(0,207,255,0.12);

    border: 1px solid rgba(0,207,255,0.28);

    color: white;

    font-size: 1rem;

    font-weight: bold;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}

.login-button:hover {

    transform: translateY(-2px);

    background: rgba(0,207,255,0.18);

    box-shadow: 0 0 24px rgba(0,207,255,0.22);

}

@media (max-width: 768px) {

    .login-page {

        padding: 120px 16px 60px 16px;

    }

    .login-box {

        padding: 28px;

    }

}


.login-error {

    width: 100%;

    margin-bottom: 24px;

    padding: 14px 18px;

    border-radius: 14px;

    background: rgba(255,59,59,0.12);

    border: 1px solid rgba(255,59,59,0.28);

    color: #ff8a8a;

    text-align: center;

    font-size: 0.95rem;

}


/* ---------------- ADMIN LAYOUT ---------------- */

.admin-layout {

    display: flex;

    min-height: 100vh;

    background: #0b1220;

}

/* ---------------- SIDEBAR ---------------- */

.admin-sidebar {

    width: 290px;

    background: rgba(255,255,255,0.03);

    border-right: 1px solid rgba(255,255,255,0.06);

    padding: 30px 22px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    backdrop-filter: blur(18px);

}

.admin-logo h2 {

    color: white;

    font-size: 1.6rem;

    margin-bottom: 40px;

}

/* ---------------- MENU ---------------- */

.admin-nav {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.admin-menu-group {

    display: flex;

    flex-direction: column;

}

.admin-menu-button {

    width: 100%;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 16px;

    padding: 16px 18px;

    color: white;

    font-size: 1rem;

    text-align: left;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border 0.3s ease,
        transform 0.3s ease;

}

.admin-menu-button:hover {

    background: rgba(0,207,255,0.08);

    border-color: rgba(0,207,255,0.18);

    transform: translateX(3px);

}

.admin-menu-button.active {

    background: rgba(0,207,255,0.12);

    border-color: rgba(0,207,255,0.24);

}

.admin-submenu {

    display: flex;

    flex-direction: column;

    gap: 8px;

    padding: 14px 0 0 16px;

}

.admin-submenu a {

    color: var(--text-soft);

    text-decoration: none;

    font-size: 0.95rem;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}

.admin-submenu a:hover {

    color: var(--blue);

    transform: translateX(4px);

}

/* ---------------- CONTENT ---------------- */

.admin-content {

    flex: 1;

    padding: 40px;

}

.admin-topbar {

    margin-bottom: 40px;

}

.admin-topbar h1 {

    color: white;

    font-size: 2.4rem;

    margin-bottom: 10px;

}

.admin-topbar p {

    color: var(--text-soft);

}

/* ---------------- DASHBOARD ---------------- */

.admin-dashboard-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 24px;

}

.admin-card {

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 24px;

    padding: 28px;

    transition:
        transform 0.35s ease,
        border 0.35s ease,
        box-shadow 0.35s ease;

}

.admin-card:hover {

    transform: translateY(-4px);

    border-color: rgba(0,207,255,0.18);

    box-shadow: 0 0 30px rgba(0,207,255,0.12);

}

.admin-card h2 {

    color: white;

    margin-bottom: 14px;

}

.admin-card p {

    color: var(--text-soft);

    line-height: 1.7;

}

/* ---------------- FOOTER ---------------- */

.admin-sidebar-footer {

    padding-top: 30px;

}

.admin-logout {

    display: inline-block;

    color: #ff8a8a;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}

.admin-logout:hover {

    color: #ff4d4d;

    transform: translateX(4px);

}

/* ---------------- MOBILE ---------------- */

@media (max-width: 900px) {

    .admin-layout {

        flex-direction: column;

    }

    .admin-sidebar {

        width: 100%;

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,0.06);

    }

    .admin-content {

        padding: 24px 18px;

    }

}


/* ---------------- ADMIN FORM ---------------- */

.admin-form-wrapper {

    max-width: 900px;

}

.admin-form {

    display: flex;

    flex-direction: column;

    gap: 26px;

}

.admin-form-group {

    display: flex;

    flex-direction: column;

}

.admin-form-group label {

    color: white;

    margin-bottom: 12px;

    font-size: 0.95rem;

}

.admin-form-group input,
.admin-form-group textarea {

    width: 100%;

    padding: 16px 18px;

    border-radius: 16px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.04);

    color: white;

    font-size: 1rem;

    outline: none;

    transition:
        border 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}

.admin-form-group textarea {

    resize: vertical;

    min-height: 180px;

}

.admin-form-group input:focus,
.admin-form-group textarea:focus {

    border-color: rgba(0,207,255,0.4);

    box-shadow: 0 0 20px rgba(0,207,255,0.12);

}

.admin-form-row {

    display: flex;

    gap: 24px;

    align-items: center;

}

.admin-checkbox-group {

    padding-top: 28px;

}

.checkbox-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

}

.admin-submit-button {

    width: fit-content;

    padding: 16px 28px;

    border-radius: 16px;

    border: 1px solid rgba(0,207,255,0.25);

    background: rgba(0,207,255,0.10);

    color: white;

    font-size: 1rem;

    font-weight: bold;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}

.admin-submit-button:hover {

    transform: translateY(-2px);

    background: rgba(0,207,255,0.16);

    box-shadow: 0 0 24px rgba(0,207,255,0.16);

}

@media (max-width: 768px) {

    .admin-form-row {

        flex-direction: column;

        align-items: flex-start;

    }

    .admin-checkbox-group {

        padding-top: 0;

    }

}



/* ---------------- FILE LIST ---------------- */

.file-list {

    margin-top: 16px;

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.file-item {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 12px 14px;

    border-radius: 14px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

}

.file-preview {

    width: 72px;

    height: 72px;

    object-fit: cover;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.08);

}

.file-name {

    flex: 1;

    color: var(--text-soft);

    font-size: 0.92rem;

    word-break: break-word;

}

.file-delete {

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 12px;

    background: rgba(255,59,59,0.12);

    color: #ff8a8a;

    cursor: pointer;

    font-size: 1rem;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}

.file-delete:hover {

    background: rgba(255,59,59,0.24);

    transform: scale(1.05);

}


/* ---------------- MMA HERO ---------------- */

.mma-hero {

    position: relative;

}


/* ---------------- MMA INTRO ---------------- */

.mma-intro-text {

    width: 100%;

    padding: 28px 20px 10px 20px;

}

.mma-intro-container {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

}

.mma-intro-container p {

    color: var(--text-soft);

    font-size: 1.05rem;

    line-height: 1.8;

}

/* ---------------- MOBILE ---------------- */

@media (max-width: 768px) {

    .mma-intro-text {

        padding: 22px 16px 6px 16px;

    }

    .mma-intro-container p {

        font-size: 0.92rem;

    }

}


/* ---------------- MMA PROJECT GRID ---------------- */

.mma-project-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 28px;

}

.mma-project-card {

    display: flex;

    flex-direction: column;

    text-decoration: none;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 24px;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border 0.4s ease,
        box-shadow 0.4s ease;

}

.mma-project-card:hover {

    transform: translateY(-6px);

    border-color: rgba(0,207,255,0.18);

    box-shadow: 0 0 35px rgba(0,207,255,0.12);

}

.mma-project-image-wrapper {

    position: relative;

    width: 100%;

    height: 320px;

    overflow: hidden;

    background: #0b1220;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 14px;

}

.mma-project-image {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: transform 0.5s ease;

    background: #0b1220;

}

.mma-project-card:hover .mma-project-image {

    transform: scale(1.05);

}

.mma-sale-badge {

    position: absolute;

    top: 16px;

    right: 16px;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(255,59,59,0.9);

    color: white;

    font-size: 0.78rem;

    font-weight: bold;

    letter-spacing: 1px;

}

.mma-project-content {

    padding: 22px;

}

.mma-project-number {

    color: var(--blue);

    font-size: 0.85rem;

    margin-bottom: 10px;

}

.mma-project-content h2 {

    color: white;

    font-size: 1.35rem;

    margin-bottom: 14px;

}

.mma-project-price {

    color: var(--green);

    font-weight: bold;

    font-size: 1rem;

}

/* ---------------- MOBILE ---------------- */

@media (max-width: 768px) {

    .mma-project-grid {

        grid-template-columns: 1fr;

    }

    .mma-project-image-wrapper {

        height: 240px;

    }

}

/* ---------------- MMA DETAIL ---------------- */

.mma-detail-card {

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 28px;

    overflow: hidden;

    margin-bottom: 40px;

}

/* ---------------- SLIDER ---------------- */

.mma-slider-wrapper {

    padding:
        110px 24px 24px 24px;

}

.mma-main-image-wrapper {

    position: relative;

    width: 100%;

    height: 700px;

    background: #0b1220;

    border-radius: 24px;

    overflow: hidden;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;

}

.mma-main-image {

    width: 100%;

    height: 100%;

    object-fit: contain;

}

.mma-sale-badge-detail {

    position: absolute;

    top: 24px;

    right: 24px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255,59,59,0.92);

    color: white;

    font-size: 0.82rem;

    font-weight: bold;

    letter-spacing: 1px;

}

/* ---------------- THUMBNAILS ---------------- */

.mma-thumbnails {

    display: flex;

    gap: 16px;

    margin-top: 22px;

    overflow-x: auto;

    padding-bottom: 6px;

}

.mma-thumbnail-item {

    min-width: 110px;

    height: 110px;

    border-radius: 18px;

    overflow: hidden;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    cursor: pointer;

    transition:
        transform 0.35s ease,
        border 0.35s ease;

}

.mma-thumbnail-item:hover {

    transform: translateY(-3px);

    border-color: rgba(0,207,255,0.24);

}

.mma-thumbnail-image {

    width: 100%;

    height: 100%;

    object-fit: contain;

    background: #0b1220;

}

/* ---------------- CONTENT ---------------- */

.mma-detail-content {

    padding: 36px;

}

.mma-project-number-detail {

    color: var(--blue);

    font-size: 0.92rem;

    margin-bottom: 12px;

}

.mma-detail-content h1 {

    color: white;

    font-size: clamp(2rem, 5vw, 3rem);

    margin-bottom: 20px;

}

.mma-project-price-detail {

    color: var(--green);

    font-size: 1.2rem;

    font-weight: bold;

    margin-bottom: 28px;

}

.mma-description {

    color: var(--text-soft);

    line-height: 1.9;

    font-size: 1rem;

}

/* ---------------- MOBILE ---------------- */

@media (max-width: 768px) {

    .mma-slider-wrapper {

    padding:
        95px 14px 14px 14px;

}

    .mma-main-image-wrapper {

        height: 340px;

        padding: 10px;

    }

    .mma-thumbnail-item {

        min-width: 80px;

        height: 80px;

    }

    .mma-detail-content {

        padding: 24px;

    }

}

/* ---------------- GALLERY ---------------- */

.mma-gallery-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 24px;

}

.mma-gallery-item {

    overflow: hidden;

    border-radius: 22px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

}

.mma-gallery-image {

    width: 100%;

    height: 320px;

    object-fit: cover;

    transition: transform 0.45s ease;

}

.mma-gallery-image:hover {

    transform: scale(1.04);

}

/* ---------------- MOBILE ---------------- */

@media (max-width: 768px) {

    .mma-detail-content {

        padding: 24px;

    }

    .mma-gallery-grid {

        grid-template-columns: 1fr;

    }

    .mma-gallery-image {

        height: 240px;

    }

}

/* ---------------- MMA BUTTON ---------------- */

.mma-project-button {

    display: inline-block;

    margin-top: 20px;

    padding: 16px 28px;

    border-radius: 16px;

    background: rgba(0,207,255,0.10);

    border: 1px solid rgba(0,207,255,0.24);

    color: white;

    text-decoration: none;

    font-weight: bold;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;

}

.mma-project-button:hover {

    transform: translateY(-3px);

    background: rgba(0,207,255,0.18);

    box-shadow: 0 0 28px rgba(0,207,255,0.16);

}

/* ---------------- BACK LINK ---------------- */

.mma-back-link {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--blue);

    text-decoration: none;

    font-size: 0.95rem;

    font-weight: 500;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}

.mma-back-link:hover {

    color: white;

    transform: translateX(-3px);

}


/* ---------------- IMAGE BACK BUTTON ---------------- */

.mma-image-back-button {

    position: absolute;

    top: 20px;

    left: 20px;

    z-index: 20;

    padding: 12px 18px;

    border-radius: 14px;

    background: rgba(0,0,0,0.55);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.12);

    color: white;

    text-decoration: none;

    font-size: 0.95rem;

    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;

}

.mma-image-back-button:hover {

    background: rgba(0,0,0,0.75);

    border-color: rgba(0,207,255,0.35);

    transform: translateY(-2px);

}

@media (max-width: 768px) {

    .mma-image-back-button {

        top: 12px;

        left: 12px;

        padding: 10px 14px;

        font-size: 0.85rem;

    }

}


/* ---------------- MMA CTA ---------------- */

.mma-cta-section {

    display: flex;

    justify-content: center;

    padding: 10px 20px 35px 20px;

}

.mma-cta-button {

    display: inline-block;

    padding: 18px 40px;

    border-radius: 18px;

    text-decoration: none;

    color: white;

    font-weight: bold;

    letter-spacing: 1px;

    background: rgba(0,207,255,0.08);

    border: 2px solid rgba(0,207,255,0.8);

    box-shadow:
        0 0 12px rgba(0,207,255,0.7),
        0 0 28px rgba(0,207,255,0.35);

    transition: all 0.3s ease;

}

.mma-cta-button:hover {

    transform: translateY(-3px) scale(1.03);

    box-shadow:
        0 0 18px rgba(0,207,255,0.9),
        0 0 40px rgba(0,207,255,0.5);

}

@media (max-width: 768px) {

    .mma-cta-button {

        width: 100%;

        max-width: 320px;

        text-align: center;

    }

}


@media (max-width: 768px) {

    .page-hero {
        margin-top: 85px;
    }

}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-button {
    display: inline-block;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(0,207,255,0.10);
    border: 1px solid rgba(0,207,255,0.24);
    color: var(--text);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.contact-button:hover {
    color: #ffffff;
    background: rgba(0,207,255,0.18);
    box-shadow: 0 0 20px rgba(0,207,255,0.15);
}

@media (max-width: 768px) {

    .contact-row {
        grid-template-columns: 1fr;
    }

}

.contact-error {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 60, 60, 0.15);
    color: #ff8a8a;
    margin-bottom: 20px;
}

.captcha-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.captcha-image {
    width: 120px;
    height: 40px;
    border-radius: 8px;
}

.remote-downloads{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-top:20px;
}
.remote-downloads .mma-cta-button{
display:block;
text-align:center;
width:100%;
box-sizing:border-box;
}


/* PC SUPPORT BUTTON */

.support-button{
display:inline-block;
margin-top:20px;
padding:18px 40px;
border-radius:18px;
text-decoration:none;
color:#fff;
font-weight:bold;
letter-spacing:1px;
background:rgba(0,207,255,0.08);
border:2px solid rgba(0,207,255,0.8);
box-shadow:0 0 12px rgba(0,207,255,0.7),0 0 28px rgba(0,207,255,0.35);
transition:all .3s ease;
}

.support-button:hover{
transform:translateY(-3px) scale(1.03);
box-shadow:0 0 18px rgba(0,207,255,0.9),0 0 40px rgba(0,207,255,0.5);
}

