﻿:root {
    --teal-dark: #0d3d45;
    --teal-mid: #0f5260;
    --teal-accent: #1a8a6e;
    --teal-light: #e6f4f1;
    --gold: #e8b44a;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg-page: #f7f9fc;
    --card-bg: #ffffff;
    --nav-h: 58px;
    --bottom-nav-h: 62px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ================================================
           TOP NAVBAR
        ================================================ */
.app-nav {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    gap: 12px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    flex-shrink: 0;
}

    .nav-brand .logo-icon {
        width: 28px;
        height: 28px;
        background: var(--white);
        clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
        flex-shrink: 0;
    }

    .nav-brand span {
        font-family: 'Syne', sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: #fff;
        text-transform: uppercase;
        white-space: nowrap;
    }

.nav-links {
    display: flex;
    gap: 0;
}

    .nav-links .nav-link-item {
        color: rgba(255,255,255,0.75);
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        padding: 0 16px;
        height: var(--nav-h);
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s, border-bottom 0.2s;
        border-bottom: 3px solid transparent;
        cursor: pointer;
        white-space: nowrap;
    }

        .nav-links .nav-link-item:hover,
        .nav-links .nav-link-item.active {
            color: #fff;
            border-bottom-color: var(--gold);
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-util-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

    .nav-util-link:hover {
        color: #fff;
    }

.user-btn {
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

    .user-btn:hover {
        color: #fff;
    }

.nav-avatar {
    width: 30px;
    height: 30px;
    background: var(--teal-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
}

/* ================================================
           MOBILE DRAWER
        ================================================ */
.mobile-drawer {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

    .mobile-drawer.open {
        display: block;
    }

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 275px;
    height: 100%;
    background: var(--teal-dark);
    padding: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
}

.mobile-drawer.open .drawer-panel {
    transform: translateX(0);
}

.drawer-user-section {
    padding: 1.25rem 1.25rem 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .drawer-user-section .nav-avatar {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

.drawer-user-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.drawer-user-email {
    color: rgba(255,255,255,0.55);
    font-size: 0.73rem;
}

.drawer-section-label {
    padding: 0.9rem 1.25rem 0.3rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0.8rem 1.25rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}

    .drawer-link:hover {
        background: rgba(255,255,255,0.07);
        color: #fff;
    }

    .drawer-link.active {
        background: rgba(255,255,255,0.1);
        color: #fff;
        border-left-color: var(--gold);
    }

    .drawer-link i {
        font-size: 1rem;
        width: 18px;
        text-align: center;
    }

    .drawer-link.danger {
        color: #f87171;
    }

        .drawer-link.danger:hover {
            background: rgba(248,113,113,0.08);
        }

.drawer-spacer {
    flex: 1;
}

.drawer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 0;
}

/* ================================================
           BOTTOM NAV (mobile)
        ================================================ */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottom-nav-h);
    background: #fff;
    border-top: 1.5px solid var(--border);
    z-index: 900;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.07);
}

.bottom-nav-inner {
    display: flex;
    height: 100%;
}

.bnav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.15s;
    position: relative;
}

    .bnav-btn i {
        font-size: 1.25rem;
    }

    .bnav-btn.active {
        color: var(--teal-accent);
    }

        .bnav-btn.active::after {
            content: '';
            position: absolute;
            top: 0;
            left: 25%;
            right: 25%;
            height: 2.5px;
            background: var(--teal-accent);
            border-radius: 0 0 3px 3px;
        }

.bnav-badge {
    position: absolute;
    top: 5px;
    right: calc(50% - 20px);
    background: var(--teal-accent);
    color: #fff;
    font-size: 0.52rem;
    font-weight: 700;
    min-width: 14px;
    height: 14px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* ================================================
           MAIN
        ================================================ */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-view {
    display: none;
    flex: 1;
    flex-direction: column;
}

    .page-view.active {
        display: flex;
    }

.page-header {
    padding: 0.5rem 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--teal-dark);
    letter-spacing: -0.02em;
    margin: 0;
}

.page-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--teal-accent) 0%, transparent 60%);
    margin: 1rem 2rem 0;
    border-radius: 2px;
}

/* ================================================
           PROJECTS
        ================================================ */
.toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.view-toggle {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.view-btn {
    background: none;
    border: none;
    padding: 7px 11px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.15s, color 0.15s;
}

    .view-btn.active, .view-btn:hover {
        background: var(--teal-dark);
        color: #fff;
    }

.filter-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 0.82rem;
    color: var(--text-main);
    background: #fff;
    cursor: pointer;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 110px;
}

    .search-box input {
        border: 1.5px solid var(--border);
        border-radius: 8px;
        padding: 7px 10px 7px 32px;
        font-size: 0.82rem;
        width: 100%;
        outline: none;
        background: #fff;
        transition: border-color 0.2s;
    }

        .search-box input:focus {
            border-color: var(--teal-accent);
        }

.search-icon {
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.82rem;
    pointer-events: none;
}

.projects-grid {
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.projects-list {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.project-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1.35rem 1.1rem;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

    .project-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal-accent), var(--gold));
        opacity: 0;
        transition: opacity 0.2s;
    }

    .project-card:hover {
        box-shadow: 0 8px 28px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

        .project-card:hover::before {
            opacity: 1;
        }

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.project-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1.35;
    margin: 0;
}

.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gold);
    font-size: 1.15rem;
    padding: 2px;
    line-height: 1;
    transition: transform 0.15s;
    flex-shrink: 0;
}

    .star-btn:hover {
        transform: scale(1.25);
    }

    .star-btn.off {
        color: var(--border);
    }

.project-code {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal-accent);
    letter-spacing: 0.04em;
    margin-bottom: 0.9rem;
}

.open-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: gap 0.2s, color 0.2s;
}

    .open-btn:hover {
        gap: 9px;
        color: var(--teal-accent);
    }

.project-row {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.2s;
    cursor: pointer;
}

    .project-row:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }

    .project-row .left {
        display: flex;
        align-items: center;
        gap: 0.85rem;
    }

.proj-icon {
    width: 38px;
    height: 38px;
    background: var(--teal-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.empty-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-muted);
    text-align: center;
}

    .empty-state i {
        font-size: 2.8rem;
        margin-bottom: 0.75rem;
        opacity: 0.3;
    }

/* ================================================
           NEWS
        ================================================ */
.news-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    flex: 1;
    margin: 0.25rem 1rem 0.5rem;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--card-bg);
    min-height: 420px;
}

.news-sidebar {
    border-right: 1.5px solid var(--border);
    overflow: hidden;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

#news-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.news-sidebar-header {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-page);
    flex-shrink: 0;
    text-align:center
}

.mark-read-btn {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

    .mark-read-btn:hover {
        color: var(--teal-accent);
    }

.news-item {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
    position: relative;
}

    .news-item:hover {
        background: var(--teal-light);
    }

    .news-item.active {
        background: #e8f7f3;
        border-left: 3px solid var(--teal-accent);
    }

    .news-item .news-date {
        font-size: 0.7rem;
        color: var(--text-muted);
        margin-bottom: 0.12rem;
    }

    .news-item .news-item-title {
        font-size: 0.87rem;
        font-weight: 600;
        color: var(--teal-dark);
        margin-bottom: 0.12rem;
        line-height: 1.3;
    }

    .news-item.unread .news-item-title {
        color: var(--teal-accent);
        font-weight: 700;
    }

    .news-item .news-item-sub {
        font-size: 0.75rem;
        color: var(--text-muted);
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.unread-dot {
    width: 7px;
    height: 7px;
    background: var(--teal-accent);
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.news-content {
    padding: 1.75rem 2rem;
    min-height: 0;
}

/* Blog page only: pin the shell to the viewport so the news list scrolls
   inside its own pane instead of stretching (and scrolling) the whole page. */
body.news-page-active {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

    body.news-page-active .main-content,
    body.news-page-active .page-view.active {
        min-height: 0;
    }

    body.news-page-active .news-layout {
        min-height: 0;
        grid-template-rows: minmax(0, 1fr);
    }

.news-back-btn {
    display: none;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--teal-accent);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0 0 1.1rem 0;
    margin-bottom: 0.25rem;
}

.nc-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.news-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 0.75rem;
}

.news-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #374151;
}

.news-content .benefits {
    font-weight: 700;
    margin-top: 1rem;
}

.news-content ul {
    list-style: none;
    padding: 0;
    margin: 0.4rem 0 0.9rem;
}

    .news-content ul li {
        padding: 0.28rem 0 0.28rem 1.4rem;
        position: relative;
        font-size: 0.9rem;
    }

        .news-content ul li::before {
            content: '>';
            position: absolute;
            left: 0;
            color: var(--teal-accent);
            font-weight: 700;
        }

.news-content .highlight {
    background: #fff7e6;
    border-left: 3px solid var(--gold);
    padding: 0.7rem 0.9rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.86rem;
    margin: 0.9rem 0;
}

/* ================================================
           DOWNLOADS
        ================================================ */
.dl-section {
    margin: 1.5rem 2rem 0;
}

.dl-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.dl-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
}

    .dl-item:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        border-color: var(--teal-accent);
        color: inherit;
    }

.dl-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    margin-right: 0.9rem;
    flex-shrink: 0;
}

    .dl-icon.pdf {
        background: #fee2e2;
        color: #dc2626;
    }

    .dl-icon.lnk {
        background: var(--teal-light);
        color: var(--teal-accent);
    }

.dl-label {
    font-size: 0.88rem;
    font-weight: 600;
    flex: 1;
}

.dl-arrow {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ================================================
           FOOTER
        ================================================ */
footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

    footer a {
        color: var(--text-muted);
        text-decoration: none;
    }

        footer a:hover {
            color: var(--teal-accent);
        }

.footer-links {
    display: flex;
    gap: 1.25rem;
}

/* ================================================
           MODAL
        ================================================ */
.project-modal .modal-header {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
    color: #fff;
    border: none;
    padding: 1.1rem 1.4rem;
}

.project-modal .modal-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.project-modal .btn-close {
    filter: invert(1);
}

.project-modal .modal-body {
    padding: 1.4rem;
}

.info-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-accent);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.project-enter-btn {
    background: linear-gradient(135deg, var(--teal-accent), var(--teal-dark));
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 8px;
}

    .project-enter-btn:hover {
        opacity: 0.9;
        color: #fff;
    }

/* ================================================
           ANIMATIONS
        ================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.3s ease both;
}

.delay-1 {
    animation-delay: 0.05s;
}

.delay-2 {
    animation-delay: 0.10s;
}

.delay-3 {
    animation-delay: 0.15s;
}

/* ================================================
           RESPONSIVE: TABLET (max 900px)
        ================================================ */
@media (max-width: 900px) {
    .nav-util-link {
        display: none;
    }

    .page-header {
        padding: 1.5rem 1.5rem 0;
    }

    .page-divider {
        margin: 0.9rem 1.5rem 0;
    }

    .projects-grid {
        padding: 1.25rem 1.5rem;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .projects-list {
        padding: 1.25rem 1.5rem;
    }

    .news-layout {
        margin: 1rem 1.5rem 1.25rem;
        grid-template-columns: 260px 1fr;
    }

    .dl-section {
        margin: 1.25rem 1.5rem 0;
    }

    footer {
        padding: 0.75rem 1.5rem;
    }
}

/* ================================================
           RESPONSIVE: MOBILE (max 640px)
        ================================================ */
@media (max-width: 640px) {
    body {
        /*padding-bottom: var(--bottom-nav-h);*/
    }

    .nav-links {
        display: none;
    }

    .user-name, .user-chevron {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .bottom-nav {
        display: flex;
    }

    .page-header {
        padding: 1.1rem 1rem 0;
        gap: 0.6rem;
    }

    .page-title {
        font-size: 1.45rem;
    }

    .page-divider {
        margin: 0.65rem 1rem 0;
    }

    .toolbar {
        width: 100%;
    }

    .projects-grid {
        padding: 1rem;
        grid-template-columns: 1fr;
    }

    .projects-list {
        padding: 1rem;
    }

    .news-layout {
        grid-template-columns: 1fr;
        margin: 0.75rem 1rem 1rem;
        min-height: 0;
        flex: 1;
    }

    .news-sidebar {
        border-right: none;
        max-height: 100%;
    }

    .news-content {
        padding: 1rem;
    }

    .news-back-btn {
        display: flex;
    }

    .news-layout.show-content .news-sidebar {
        display: none;
    }

    .news-layout:not(.show-content) .news-content {
        display: none;
    }

    .dl-section {
        margin: 0.9rem 1rem 0;
    }

    footer {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        gap: 0.9rem;
    }
}

@media (max-width: 360px) {
    .nav-brand span {
        font-size: 0.78rem;
        letter-spacing: 0.05em;
    }
}


/* latin-ext */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(icons/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(icons/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(icons/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(icons/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(icons/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(icons/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(icons/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(icons/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(icons/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(icons/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* greek */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(icons/8vIH7w4qzmVxm2NL9Hz_.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(icons/8vIH7w4qzmVxm25L9Hz_.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(icons/8vIH7w4qzmVxm2BL9A.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* greek */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(icons/8vIH7w4qzmVxm2NL9Hz_.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(icons/8vIH7w4qzmVxm25L9Hz_.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(icons/8vIH7w4qzmVxm2BL9A.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* greek */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(icons/8vIH7w4qzmVxm2NL9Hz_.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(icons/8vIH7w4qzmVxm25L9Hz_.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(icons/8vIH7w4qzmVxm2BL9A.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Floating button, bottom-right */
#toggleBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #0d3d45;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10000; 
}

    #toggleBtn:hover {
        background: #fff;
        color: #0d3d45;
    }

/* Class we toggle on the iframe */
.iframe-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: none;
    z-index: 9999;
}