@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
*,
*::before,
*::after {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

:root {
    --blue: #1d4ed8;
    --blue-dark: #1e40af;
    --blue-hover: #002488;
    --bg: #18181B;
    --card-bg: rgba(39, 39, 42, 0.8);
    --card-hover: #323232;
    --note-bg: rgba(24, 24, 27, 0.90);
    --text: #fff;
    --muted: #ccc;
    --accent: #00acee;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

abbr {
    text-decoration: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    draggable: false;
}

.non-selectable-text {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-touch-callout: none;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

.cookie-toggle {
    display: none;
}

.cookie-banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(30px);
    z-index: 9000;
}

#cookie-close:checked~.cookie-banner-container {
    display: none;
}

.cookie-banner {
    background: rgba(35, 35, 35, 0.85);
    color: var(--text);
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    width: min(400px, 90vw);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-text {
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.accept-cookie,
.decline-cookie {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    margin: 0.25rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.accept-cookie {
    background: #4CAF50;
    color: #fff;
}

.decline-cookie {
    background: #f44336;
    color: #fff;
}

.accept-cookie:hover,
.decline-cookie:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    cursor: pointer;
}

.cookie-links {
    margin-top: 1rem;
}

.datenschutz {
    color: var(--blue);
    font-size: 0.9rem;
}

.datenschutz:hover {
    color: var(--blue-hover);
    cursor: pointer;
}

.nav-toggle-cb {
    display: none;
}

.nav-hamburger {
    display: none;
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
}

.nav-logo {
    width: 90px;
    flex-shrink: 0;
}

.nav-logo img {
    pointer-events: auto;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.link a {
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.link a::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background: var(--blue);
    transition: width 0.3s ease;
}

.link a:hover {
    color: var(--muted);
    cursor: pointer;
}

.link a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.6rem 1.4rem !important;
    font-size: 0.9rem !important;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    background: var(--blue);
    border-radius: 8px;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
    cursor: pointer;
}

.btn:active {
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 1.5rem;
}

.blur {
    position: absolute;
    box-shadow: 0 0 1000px 150px var(--blue);
    z-index: -100;
    pointer-events: none;
}

header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

header .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

header .content h4 {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 600;
}

header .content h1 {
    text-align: left;
    margin-bottom: 0.6rem;
}

header .content p {
    margin-bottom: 2rem;
    color: var(--muted);
}

header .image {
    position: relative;
    pointer-events: none;
    user-select: none;
}

header::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(29, 78, 216, 0.22) 0%, transparent 70%);
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: -1;
    animation: heroGlow 9s ease-in-out infinite;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-55%) scale(1.15);
    }
    100% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }
}

header .image {
    display: flex;
    justify-content: flex-end;
}

header .image img {
    max-width: 400px;
    max-height: 500px;
    transform: translateX(3rem);
}

.to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 42px;
    height: 42px;
    background: var(--blue);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 800;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.4);
    opacity: 0;
    pointer-events: none;
}

.to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.to-top:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.55);
}

.header {
    margin-bottom: 1rem;
    color: var(--text);
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
}

.text-hydra {
    color: var(--text);
    font-weight: 800;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 0.75rem;
    display: block;
    text-align: center;
}

.text-hydra2 {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.5px var(--text);
}

.hero-badge {
    display: inline-block;
    background: rgba(29, 78, 216, 0.15);
    border: 1px solid rgba(29, 78, 216, 0.4);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.hero-desc {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 340px;
}

.sub-header {
    max-width: 600px;
    margin: 0.5rem auto 1rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.pricing-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-header h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
}

.features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.features .card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.features .card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-dark);
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--text);
    border-radius: 8px;
    flex-shrink: 0;
}

.features .card h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
}

.features .card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.custom-ctx-menu {
    position: fixed;
    background: rgba(20, 20, 23, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.3rem 0 0.4rem;
    min-width: 200px;
    z-index: 9999;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(29, 78, 216, 0.15);
    display: none;
    animation: ctxIn 0.12s ease;
}

@keyframes ctxIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.custom-ctx-menu.show {
    display: block;
}

.ctx-header {
    padding: 0.45rem 1rem 0.35rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--blue);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}

.ctx-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.1s ease, color 0.1s ease, padding-left 0.1s ease;
    text-decoration: none;
    user-select: none;
    border-left: 2px solid transparent;
}

.ctx-item:hover {
    background: rgba(29, 78, 216, 0.12);
    color: #fff;
    border-left-color: var(--blue);
    padding-left: 1.1rem;
}

.ctx-item svg {
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity 0.1s ease;
}

.ctx-item:hover svg {
    opacity: 1;
}

.ctx-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0.3rem 0;
}

.changelog-list {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.25rem;
    scroll-behavior: smooth;
}

.changelog-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 3px solid var(--blue);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.changelog-item::before {
    display: none;
}

.changelog-item:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.changelog-item.is-fix {
    border-left-color: #f87171;
}

.changelog-item.is-update {
    border-left-color: #4ade80;
}

.changelog-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.changelog-date {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    margin-left: auto;
    flex-shrink: 0;
}

.changelog-content p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.changelog-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.changelog-badge.new {
    background: rgba(29, 78, 216, 0.3);
    color: var(--accent);
}

.changelog-badge.fix {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.changelog-badge.update {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.pricing {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing .card {
    padding: 2.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
    overflow: visible;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing .card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.pricing .card.featured {
    background: rgba(29, 78, 216, 0.09);
    border-color: rgba(29, 78, 216, 0.45);
    box-shadow: 0 0 40px rgba(29, 78, 216, 0.15);
}

.pricing .card.featured:hover {
    border-color: rgba(29, 78, 216, 0.65);
    box-shadow: 0 0 0 1px rgba(29, 78, 216, 0.25), 0 8px 40px rgba(29, 78, 216, 0.25);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.5);
}

.pricing .card .content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing .card h4 {
    margin-bottom: 0.75rem;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
}

.pricing .card h3 {
    color: var(--text);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
}

.pricing .card p {
    color: var(--text);
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check {
    color: #4CAF50;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing .card .btn {
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    width: 100%;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing .card .btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.4);
    transform: none;
}

.pricing .card.featured .btn {
    background: var(--blue);
    border-color: var(--blue);
}

.pricing .card.featured .btn:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    box-shadow: 0 4px 20px rgba(29, 78, 216, 0.5);
}

#testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

.testimonial-heading {
    margin: 2rem 0;
    padding: 0.5rem 1rem;
    text-align: center;
}

.testimonial-box-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1rem;
    width: min(1200px, 95%);
}

.testimonial-box {
    width: clamp(260px, 45%, 480px);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-box:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.2);
}

.profile {
    display: flex;
    align-items: center;
}

.profile-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.name-user {
    display: flex;
    flex-direction: column;
}

.name-user strong {
    color: var(--text);
    font-size: 1rem;
}

.name-user span {
    color: var(--muted);
    font-size: 0.78rem;
}

.reviews {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.client-comment p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.6;
}

.container99 {
    width: min(1000px, 92%);
    margin: 5rem auto;
}

.container99>h2 {
    font-size: clamp(2.5rem, 10vw, 8rem);
    color: var(--accent);
    text-align: center;
    margin-bottom: 1rem;
}

.container99>p {
    font-size: 1rem;
    color: var(--text);
    text-align: center;
    margin-bottom: 2rem;
}

.faq-discord-link {
    color: var(--accent);
    font-weight: 600;
    transition: color 0.2s ease;
    cursor: pointer;
}

.faq-discord-link:hover {
    color: var(--blue);
}

.accordion details {
    border-bottom: 1px solid #444;
}

.accordion details summary {
    position: relative;
    list-style: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 2.5rem 1rem 0.75rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

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

.accordion details summary::marker {
    display: none;
}

.accordion details summary:hover {
    color: var(--accent);
}

.icon {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 1px solid #555;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: transform 0.25s ease, border-color 0.25s ease;
    display: inline-block;
}

.accordion details[open] summary {
    color: var(--accent);
}

.accordion details[open] summary .icon {
    border-color: var(--accent);
    transform: translateY(-50%) rotate(45deg);
}

.accordion .desc {
    overflow: hidden;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion .desc p {
    padding: 1rem 0.75rem 1.25rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.accordion .desc a {
    color: var(--accent);
}

.accordion .desc a:hover {
    color: var(--blue);
}

footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

footer .column .logo {
    max-width: 90px;
    margin-bottom: 1.25rem;
}

footer .column:first-child .logo {
    max-width: 130px;
    margin-bottom: 0;
}

footer .column p {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

footer .column .socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    border: 1px solid var(--muted);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    cursor: pointer;
}

.social-link:hover {
    color: var(--text);
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
    cursor: pointer;
}

.social-link svg {
    flex-shrink: 0;
}

footer .column h4 {
    color: var(--text);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
}

footer .column>a {
    display: block;
    color: var(--muted);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

footer .column>a:hover {
    color: var(--blue);
    padding-left: 4px;
    cursor: pointer;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 2rem;
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
}

.copyright-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.copyright-link:hover {
    color: var(--accent);
}

@keyframes rainbow {
    0%,
    100% {
        color: #fff;
    }
    50% {
        color: var(--blue);
    }
}

.links187:hover {
    animation: rainbow 3s infinite;
    cursor: default;
}

@media (max-width: 1100px) {
    footer {
        grid-template-columns: 1fr 1fr;
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: var(--text);
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        transition: background 0.2s ease;
        margin-left: auto;
    }
    .nav-hamburger:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(24, 24, 27, 0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        z-index: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links .link a,
    .nav-links .nav-btn {
        display: block;
        padding: 0.9rem 1.5rem;
        width: 100%;
        text-align: center;
        border-radius: 0;
    }
    .nav-links .link a::after {
        display: none;
    }
    .nav-toggle-cb:checked~nav .nav-links {
        display: flex;
    }
    header {
        grid-template-columns: 1fr;
        padding-top: 1rem;
    }
    header .content {
        align-items: center;
        text-align: center;
    }
    header .content h1 {
        text-align: center;
    }
    header .content p {
        text-align: center;
    }
    .hero-desc {
        text-align: center;
        max-width: 100%;
    }
    header .image {
        order: -1;
    }
    header .image {
        justify-content: center;
    }
    header .image img {
        max-width: 260px;
        transform: none;
    }
    .pricing {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 2rem auto 0;
    }
    .text-hydra {
        font-size: clamp(2rem, 7vw, 4rem);
    }
    .testimonial-box {
        width: 100%;
    }
    .changelog-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    header::before {
        width: 280px;
        height: 280px;
        right: -60px;
        opacity: 0.6;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .features .card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    footer .column:first-child {
        grid-column: 1 / -1;
    }
    footer .column:nth-child(3) {
        display: none;
    }
    footer .column {
        text-align: center;
    }
    footer .column .logo {
        max-width: 100px;
        margin: 0;
    }
    footer .column:first-child {
        display: none;
    }
    footer .column .socials {
        justify-content: center;
    }
    footer .column > a:hover {
        padding-left: 0;
    }
    footer .column:nth-child(4) {
        display: none;
    }
    footer .column:nth-child(3) {
        display: block;
    }
    .container {
        padding: 2.5rem 1rem;
    }
    .container99 {
        margin: 2.5rem auto;
    }
    .text-hydra {
        font-size: clamp(1.9rem, 9vw, 3.2rem);
    }
    .testimonial-box-container {
        width: 100%;
        padding: 0 0.5rem;
    }
    .testimonial-box {
        width: 100%;
    }
    .box-top {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .pricing .card {
        padding: 1.75rem 1.25rem;
    }
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    .to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 400px) {
    nav {
        padding: 1rem;
    }
    header .content h1 {
        text-align: center;
    }
    .feat-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    .accordion details summary {
        font-size: 0.85rem;
    }
}

/* ── Panel iframe Overlay ──────────────────────────────────────── */
#panel-iframe-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #09090f;
}

#panel-iframe-overlay.open {
    display: block;
    animation: panelSlideIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes panelSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

#panel-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Modal Overlay ─────────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-card {
    position: relative;
    background: rgba(14, 16, 26, 0.96);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(29, 78, 216, 0.12);
    animation: modalIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.modal-icon {
    width: 62px;
    height: 62px;
    background: rgba(29, 78, 216, 0.12);
    border: 1px solid rgba(29, 78, 216, 0.28);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 0.25rem;
    flex-shrink: 0;
}

.panel-icon {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.24);
    color: #4ade80;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.modal-subtitle {
    color: var(--muted);
    font-size: 0.87rem;
    text-align: center;
    margin: 0;
}

.modal-input-wrap {
    width: 100%;
    margin-top: 0.35rem;
}

.modal-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-sizing: border-box;
}

.modal-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.modal-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.18);
}

.login-error {
    color: #f87171;
    font-size: 0.82rem;
    min-height: 1.1rem;
    margin: 0;
    text-align: center;
}

.modal-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.2rem;
}

.modal-btn-outline {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: var(--muted) !important;
    box-shadow: none !important;
}

.modal-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    color: var(--text) !important;
}

/* ── Customer Panel Content ── */
.panel-info {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.25rem;
}

.panel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    gap: 1rem;
}

.panel-row span:first-child {
    color: var(--muted);
    flex-shrink: 0;
}

.panel-row span:last-child {
    color: var(--text);
    font-weight: 600;
    text-align: right;
}

.panel-status {
    color: #4ade80 !important;
}

.panel-download {
    width: 100%;
    background: rgba(29, 78, 216, 0.1);
    border: 1px solid rgba(29, 78, 216, 0.25);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
    color: var(--text);
    box-sizing: border-box;
}

.panel-download:hover {
    background: rgba(29, 78, 216, 0.2);
    border-color: rgba(29, 78, 216, 0.45);
}

.panel-download-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.panel-download-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.panel-download-sub {
    font-size: 0.75rem;
    color: var(--muted);
}

.panel-download-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.panel-support {
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
    margin: 0;
}

.panel-support a {
    color: var(--accent);
    cursor: pointer;
    text-decoration: none;
}

.panel-support a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .modal-card {
        padding: 2rem 1.25rem 1.5rem;
        border-radius: 16px;
    }
}