:root{
    --bg:#061224;
    --bg-soft:#0b1733;
    --line:#17335d;
    --line-soft:#122848;
    --text:#f5f7ff;
    --muted:#c2d2ea;
    --accent:#1ea55a;
    --accent-hover:#26b463;
    --accent-2:#2d78ff;
    --max:1120px;
    --header-h:30px;
}
*,
*::before,
*::after{
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    margin:0;
    min-width:320px;
    background:var(--bg);
    color:var(--text);
    font-family:Roboto, Arial, sans-serif;
    font-size:17px;
    line-height:1.7;
}
img{
    display:block;
    max-width:100%;
    height:auto;
}
a{
    color:inherit;
    text-decoration:none;
}
.container{
    width:min(100% - 32px, var(--max));
    margin:0 auto;
}
.site-header{
    position:fixed;
    top:0;
    right:0;
    left:0;
    z-index:1000;
    background:#09152d;
    border-bottom:1px solid var(--line-soft);
}
.site-header__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    min-height:var(--header-h);
}
.site-brand{
    display:inline-flex;
    align-items:center;
    flex:0 0 auto;
    margin: 5px 0 8px;
}
.site-brand img{
    width:180px;
    height:auto;
}
.site-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    margin-left:auto;
}
.site-action{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:124px;
    min-height:44px;
    border:1px solid var(--line);
    background:transparent;
    color:var(--text);
    font-size:16px;
    font-weight:700;
    letter-spacing:.02em;
}
.site-action--primary{
    background:var(--accent);
    border-color:var(--accent);
}
.site-action--primary:hover,
.site-action--primary:focus-visible{
    background:var(--accent-hover);
    border-color:var(--accent-hover);
}
.site-action--ghost:hover,
.site-action--ghost:focus-visible{
    background:#0d1c39;
}
main{
    padding-top:calc(var(--header-h));
}
.breadcrumbs{
    border-bottom:1px solid var(--line-soft);
    padding:0 0 18px;
    margin: 2rem 0;
}
.breadcrumbs ol{
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0;
    padding:0;
    color:#9eb4d7;
    font-size:14px;
}
.breadcrumbs li:not(:last-child)::after{
    content:"/";
    margin-left:8px;
    color:#5874a0;
}
.hero{
    padding:28px 0 32px;
    border-bottom:1px solid var(--line-soft);
}
.hero h1{
    margin:0 0 18px;
    font-size:clamp(30px, 5vw, 60px);
    line-height:1.08;
    letter-spacing:-0.03em;
}
.lead{
    color:var(--muted);
}
.hero p{
    margin:0 0 18px;

}
.hero-media{
    margin:22px 0 22px;
    border-top:1px solid var(--line-soft);
    border-bottom:1px solid var(--line-soft);
    padding:16px 0;
}
section img{
     margin: 2rem auto;
}

.content-section{
    padding:34px 0 36px;
    border-bottom:1px solid var(--line-soft);
}
.content-section h2{
    margin:0 0 18px;
    font-size:clamp(30px, 4vw, 40px);
    line-height:1.12;
    letter-spacing:-0.02em;
}
.content-section h3{
    margin:28px 0 12px;
    font-size:clamp(24px, 3vw, 34px);
    line-height:1.2;
}
.content-section p{
    margin:0 0 18px;

}
.plain-list{
    margin:0 0 18px 24px;
    padding:0;
}
.plain-list li{
    margin:0 0 8px;
    line-height: 1.55;
}
.info-table{
    width:100%;
    border-collapse:collapse;
    margin:20px 0;
    font-size:17px;
}
.info-table th,
.info-table td{
    border:1px solid var(--line);
    padding:14px 16px;
    text-align:left;
    vertical-align:top;
}
.info-table th{
    background:#0d1d3d;
    font-weight:700;
}
.faq-list{
    border-top:1px solid var(--line);
}
.faq-item{
    padding:18px 0;
    border-bottom:1px solid var(--line);
}
.faq-item h3{
    margin:0 0 10px;
    font-size:24px;
}
.site-footer{
    padding:34px 0 36px;
}
.site-footer__inner{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
    padding-top:24px;
}
.site-footer img{
    width:180px;
}
.site-footer__note{
    max-width:420px;
    color:#9eb4d7;
    font-size:14px;
    line-height:1.6;
}
.site-footer__copy{
    margin-top:18px;
    color:#9eb4d7;
    font-size:14px;
}

button {
    cursor: pointer;
    border-radius: 6px;
    padding: 16px;
    margin: 0 5px;
}

.center {
    text-align: center;
    margin: 1rem auto 2rem;
}


@media (max-width: 640px){
    main{
        padding-top: 2rem;
    }

    .hero h1 {
        font-size: clamp(30px, 5vw, 40px);
    }

    body{
        font-size:15px;
        line-height:1.75;
    }
    .container{
        width:min(100% - 24px, var(--max));
    }
    .hero{
        padding-top:18px;
    }
    .quick-links__list{
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .quick-links__list a{
        width:100%;
    }
    .info-table{
        font-size:15px;
    }
    .info-table th,
    .info-table td{
        padding:12px 10px;
    }
    .faq-item h3{
        font-size:22px;
    }

    .site-actions {
        display: none;
    }
}


/*******************/
.site-action,
.main-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Base shimmer layer */
.site-action::after,
.main-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    z-index: 1;
    width: 52%;
    height: 100%;
    pointer-events: none;
    transform: skewX(-20deg);
    will-change: transform, left, opacity;
    opacity: 0;
}

/* Gold button */
.site-action--ghost {
    color: #f4d27a;
    border: 1px solid #9f7422;
    background: linear-gradient(180deg, #2a210c 0%, #1b1609 100%);
    box-shadow:
            inset 0 0 0 1px rgba(255, 214, 102, 0.08),
            0 0 0 rgba(0, 0, 0, 0);
}

.site-action--ghost:hover,
.site-action--ghost:focus-visible {
    color: #fff3c4;
    border-color: #d4a63a;
    background: linear-gradient(180deg, #3a2c0f 0%, #241b08 100%);
    box-shadow:
            inset 0 0 0 1px rgba(255, 220, 120, 0.14),
            0 0 18px rgba(212, 166, 58, 0.16);
}

.site-action--ghost:active {
    color: #f4d27a;
    border-color: #8e6820;
    background: linear-gradient(180deg, #221a09 0%, #171205 100%);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.22);
}

.site-action--ghost::after {
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 214, 102, 0.00) 18%,
            rgba(255, 224, 145, 0.16) 38%,
            rgba(255, 244, 201, 0.46) 50%,
            rgba(255, 224, 145, 0.16) 62%,
            rgba(255, 214, 102, 0.00) 82%,
            rgba(255, 255, 255, 0) 100%
    );
    animation: button-shine-gold 4.9s ease-in-out infinite;
    animation-delay: 0.7s;
    opacity: 0.95;
}

/* Green button */
.site-action--primary,
.main-button {
    box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.04),
            0 0 0 rgba(0, 0, 0, 0);
}

.site-action--primary::after,
.main-button::after {
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(210, 255, 230, 0.00) 24%,
            rgba(220, 255, 235, 0.18) 40%,
            rgba(255, 255, 255, 0.42) 50%,
            rgba(220, 255, 235, 0.18) 60%,
            rgba(210, 255, 230, 0.00) 76%,
            rgba(255, 255, 255, 0) 100%
    );
    animation: button-shine-green 3.2s ease-in-out infinite;
    animation-delay: 2.1s;
    opacity: 0.9;
}

/* Optional extra hover response */
.site-action--primary:hover,
.site-action--primary:focus-visible,
.main-button:hover,
.main-button:focus-visible {
    box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.07),
            0 0 16px rgba(29, 185, 84, 0.18);
}

@keyframes button-shine-gold {
    0% {
        left: -145%;
        opacity: 0;
    }
    8% {
        opacity: 0.9;
    }
    30% {
        left: 145%;
        opacity: 0.9;
    }
    31% {
        left: 145%;
        opacity: 0;
    }
    100% {
        left: 145%;
        opacity: 0;
    }
}

@keyframes button-shine-green {
    0% {
        left: -145%;
        opacity: 0;
    }
    10% {
        opacity: 0.95;
    }
    36% {
        left: 145%;
        opacity: 0.95;
    }
    37% {
        left: 145%;
        opacity: 0;
    }
    100% {
        left: 145%;
        opacity: 0;
    }
}


.quick-links {
    margin: 32px 0 0;
    text-align: center;
}

.quick-links__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #a764ff 0%, #8d4cf3 100%);
    color: #ffffff;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-links__toggle:hover,
.quick-links__toggle:focus-visible {
    opacity: 0.94;
    transform: translateY(-1px);
}

.quick-links__toggle:focus-visible {
    outline: 2px solid rgba(196, 181, 253, 0.9);
    outline-offset: 2px;
}

.quick-links__dropdown {
    max-width: 680px;
    margin: 14px auto 0;
    padding: 26px 28px 24px;
    border: 1px solid #8c52ff;
    border-radius: 10px;
    background: #041632;
    text-align: left;
}

.quick-links__dropdown[hidden] {
    display: none;
}

.quick-links__list {
    margin: 0;
    padding-left: 28px;
}

.quick-links__list li {
    margin: 0 0 14px;
    color: white;
}

.quick-links__list li:last-child {
    margin-bottom: 0;
}

.quick-links__list a {
    text-decoration: none;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 90%;
    font-weight: 400;
    line-height: 1.45;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.quick-links__list a:hover,
.quick-links__list a:focus-visible {
    color: #ffffff;
    opacity: 1;
}

.quick-links__list a:focus-visible {
    outline: none;
}

@media (max-width: 767px) {
    .quick-links {
        margin-top: 24px;
    }

    .quick-links__toggle {
        min-height: 40px;
        padding: 0 16px;
        font-size: 14px;
    }

    .quick-links__dropdown {
        margin-top: 12px;
        padding: 18px 16px;
        border-radius: 8px;
    }

    .quick-links__list {
        padding-left: 20px;
    }

    .quick-links__list li {
        margin-bottom: 10px;
    }

    .quick-links__list a {
        font-size: 16px;
        line-height: 1.4;
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.faq-item {
    border: 1px solid #17345f;
    background: #061a37;
}

.faq-item summary {
    position: relative;
    display: block;
    padding: 10px 52px 18px 18px;
    cursor: pointer;
    list-style: none;
    color: #f2f5fb;
    font: 700 17px/1.35 "Roboto", Arial, sans-serif;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #27a7ff;
    font: 400 28px/1 "Roboto", Arial, sans-serif;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 18px 18px;
}

.faq-answer p {
    margin: 0;
    color: #cfd9ea;
    font: 400 15px/1.65 "Roboto", Arial, sans-serif;
}

@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    margin-top: 56px;
    padding: 40px 0;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
    gap: 32px 48px;
    align-items: start;
}

.site-footer__brand img {
    display: block;
    width: auto;
    max-width: 180px;
    height: auto;
    margin-bottom: 18px;
}

.site-footer__copy {
    margin-bottom: 14px;
    color: #f2f5fb;
    font: 700 16px/1.4 "Roboto", Arial, sans-serif;
}

.site-footer__note {
    margin: 0;
    max-width: 560px;
    color: #c7d3e6;
    font: 400 15px/1.65 "Roboto", Arial, sans-serif;
}

.site-footer__nav {
    justify-self: end;
    width: 100%;
    max-width: 420px;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links li {
    margin: 0;
    line-height: 1;
}

.site-footer__links a {
    color: #d9e4f5;
    text-decoration: none;
    font: 400 15px/1.5 "Roboto", Arial, sans-serif;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: #ffffff;
    opacity: 1;
}

.site-footer__links a:focus-visible {
    outline: none;
}

@media (max-width: 991px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .site-footer__nav {
        justify-self: start;
        max-width: none;
    }
}


.mbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: none;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(6, 29, 48, 0) 0%, rgba(6, 29, 48, 0.78) 40%, rgba(6, 29, 48, 0.92) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(140, 197, 255, 0.12);
}




@media (max-width: 575px) {

    .mbar {
     display: block;
     text-align: center;
    }

    .mbar button{

    }

    .site-footer {
        margin-top: 0px;
        padding: 2px 0;
        margin-bottom: 85px;
    }

    .site-footer__links {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .site-footer__brand img {
        max-width: 160px;
        margin-bottom: 16px;
        display: none;
    }

    .site-footer__copy {
        margin-bottom: 0px;
        font-size: 15px;
    }

    .site-footer__note,
    .site-footer__links a {
        font-size: 15px;
    }

    .faq-item summary {
        position: relative;
        display: block;
        padding: 5px 52px 5px 18px;
        cursor: pointer;
        list-style: none;
        color: #f2f5fb;
        font: 700 15px/1.35 "Roboto", Arial, sans-serif;
    }
    .site-footer__inner {
       padding-top: 0;
    }

}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    color: #dbe6ff;
    text-decoration: none;
    font: 700 18px/1.4 "Roboto", Arial, sans-serif;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #ffffff;
}

.site-actions {
    display: flex;
    gap: 12px;
    margin-left: 16px;
}


.site-nav a {
    position: relative;
    display: inline-block;
    color: #dbe6ff;
    text-decoration: none;
    font: 700 19px/1.4 "Roboto", Arial, sans-serif;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a::before {
    content: "";
    position: absolute;
    left: -18%;
    top: 0;
    width: 42%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: skewX(-18deg);
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 220, 120, 0.00) 20%,
            rgba(255, 228, 150, 0.22) 45%,
            rgba(255, 244, 205, 0.68) 50%,
            rgba(255, 228, 150, 0.22) 55%,
            rgba(255, 220, 120, 0.00) 80%,
            rgba(255, 255, 255, 0) 100%
    );
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: linear-gradient(
            90deg,
            rgba(212, 166, 58, 0) 0%,
            rgba(212, 166, 58, 0.9) 50%,
            rgba(212, 166, 58, 0) 100%
    );
    transform: scaleX(0.35);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff3c4;
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
    animation: nav-link-gold-shine 0.85s ease;
    opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-nav a:focus-visible {
    outline: none;
}

@keyframes nav-link-gold-shine {
    0% {
        left: -22%;
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    100% {
        left: 118%;
        opacity: 0;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #081a36;
    border-bottom: 1px solid #17345f;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 82px;
}

.site-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.site-brand img {
    display: block;
    width: auto;
    height: auto;
    max-width: 156px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid #17345f;
    background: #0b2246;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: #f2f5fb;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
    display: none;
    border-top: 1px solid #17345f;
    background: #081a36;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 12px 20px 20px;
}

.mobile-menu__nav a {
    padding: 12px 0;
    color: #dbe6ff;
    text-decoration: none;
    font: 500 16px/1.45 "Roboto", Arial, sans-serif;
    border-bottom: 1px solid rgba(23, 52, 95, 0.8);
}

.mobile-menu__nav a:last-child {
    border-bottom: 0;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 991px) {
    .site-header__inner {
        min-height: 72px;
    }

    .site-nav,
    .site-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-brand img {
        max-width: 140px;
        height: auto;
    }
}

.notice {
    position: relative;
    margin: 32px 0 12px;
    padding: 20px 22px 20px 24px;
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 16px;
    background:
            linear-gradient(180deg, rgba(124, 58, 237, 0.16) 0%, rgba(30, 41, 59, 0.22) 100%);
    box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.notice::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 4px;
    border-radius: 0 6px 6px 0;
    background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
}

.notice__title {
    margin: 0 0 10px;
    padding-left: 10px;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.notice__text {
    margin: 0;
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.75;
}

@media (max-width: 767px) {
    .notice {
        margin: 24px 0 8px;
        padding: 18px 16px 18px 18px;
        border-radius: 14px;
    }

    .notice__title {
        font-size: 1rem;
    }

    .notice__text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}
