/* static/style.css */
@font-face {
    font-family: "Roboto Mono";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/static/fonts/RobotoMono-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto Mono";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/static/fonts/RobotoMono-Bold.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0d0d0d;
    color: #e0e0e0;
    font-family: "Roboto Mono", ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #222;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-title,
.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #62d6c8;
    line-height: 1;
}

.nav a {
    color: #aaa;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #62d6c8;
}

.nav .nav-text {
    color: #666;
    margin-left: 1.5rem;
    font-weight: 500;
}

/* Countdown */
.countdown-section {
    padding: 3rem 0 2rem 0;
    text-align: center;
    background: #0a0a0a;
    border-bottom: 1px solid #222;
}

.countdown-time {
    font-size: 6rem;
    font-weight: 700;
    color: #62d6c8;
    font-family: "Roboto Mono", ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(98, 214, 200, 0.5);
}

.launch-message {
    font-size: 4rem;
    letter-spacing: 0.08em;
}

.countdown-text {
    font-size: 1.2rem;
    color: #888;
    margin-top: 1rem;
    text-transform: lowercase;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-unix {
    font-size: 0.9rem;
    color: #62d6c8;
    margin-top: 0.5rem;
    font-family: "Roboto Mono", ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    text-shadow: 0 0 10px rgba(98, 214, 200, 0.3);
}

.x-link {
    color: #62d6c8;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.x-link:hover {
    color: #fff;
    background: rgba(98, 214, 200, 0.2);
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(98, 214, 200, 0.8);
}

.x-link-secondary {
    color: #f6c452;
}

.x-link-secondary:hover {
    background: rgba(246, 196, 82, 0.18);
    text-shadow: 0 0 15px rgba(246, 196, 82, 0.75);
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
    align-items: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #62d6c8, #f6c452);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn.primary {
    background: #4a5f7a;
    color: #e0e0e0;
    border: 1px solid #5a6f8a;
}

.btn.primary:hover {
    background: #5a6f8a;
    border-color: #6a7f9a;
    transform: translateY(-2px);
}

.btn.primary.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn.primary.disabled:hover {
    background: #4a5f7a;
    border-color: #5a6f8a;
    transform: none;
}

.btn.secondary {
    background: #4a5f7a;
    color: #e0e0e0;
    border: 1px solid #5a6f8a;
}

.btn.secondary:hover {
    background: #5a6f8a;
    border-color: #6a7f9a;
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid #222;
    box-shadow: 0 0 30px rgba(98, 214, 200, 0.2);
}

/* Features */
.features {
    padding: 4rem 0;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    max-width: 760px;
    margin: 0 auto 1rem auto;
    color: #62d6c8;
}

.features-lead {
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    display: grid;
    align-content: start;
    min-height: 300px;
    padding: 1.65rem;
    border: 1px solid rgba(98, 214, 200, 0.18);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(98, 214, 200, 0.08), rgba(246, 196, 82, 0.03)),
        #101010;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s, border 0.3s, box-shadow 0.3s;
}

.feature-card::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(98, 214, 200, 0.08), transparent),
        repeating-linear-gradient(0deg, transparent 0 15px, rgba(255, 255, 255, 0.025) 15px 16px);
    opacity: 0.65;
    content: "";
    pointer-events: none;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #62d6c8;
    box-shadow: 0 18px 42px rgba(98, 214, 200, 0.11);
}

.feature-card .icon {
    display: inline-grid;
    place-items: center;
    width: fit-content;
    min-width: 3.1rem;
    min-height: 3.1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(98, 214, 200, 0.44);
    border-radius: 8px;
    padding: 0 0.6rem;
    color: #f6c452;
    background: rgba(98, 214, 200, 0.08);
    font-size: 1.45rem;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.55;
}

.feature-tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(246, 196, 82, 0.34);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    color: #f6c452;
    background: rgba(246, 196, 82, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-signal {
    margin-top: 1.1rem;
    border: 1px solid rgba(98, 214, 200, 0.26);
    border-radius: 8px;
    padding: 0.65rem 0.75rem;
    color: #62d6c8;
    background: rgba(98, 214, 200, 0.06);
    font-size: 0.82rem;
    font-weight: 700;
}


/* Install */
.install-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
    padding: 4rem 0;
    border-top: 1px solid #222;
    align-items: start;
}

.install-copy h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f6c452;
}

.install-copy p {
    color: #bbb;
    margin-bottom: 1.5rem;
}

.section-kicker {
    color: #62d6c8;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.install-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 1.5rem;
}

.install-card h3 {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.install-platform {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: #0d0d0d;
    background: #62d6c8;
    border-radius: 4px;
    padding: 0.2rem 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.install-card ol {
    color: #aaa;
    padding-left: 1.25rem;
}

.install-card li {
    margin-bottom: 0.65rem;
}

.install-card strong {
    color: #e0e0e0;
}

.install-note {
    grid-column: 1 / -1;
    color: #888;
    border: 1px solid rgba(98, 214, 200, 0.24);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    background: rgba(98, 214, 200, 0.07);
}

/* Handbook */
.manual-teaser {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 3rem 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.manual-teaser h2 {
    color: #62d6c8;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.manual-teaser p {
    color: #bbb;
    max-width: 760px;
}

.manual {
    padding: 2rem 0 4rem 0;
}

.manual-hero {
    padding: 3rem 0;
    border-bottom: 1px solid #222;
}

.manual-hero h1 {
    font-size: clamp(2.25rem, 6vw, 4.8rem);
    line-height: 1.05;
    margin: 0.35rem 0 1rem 0;
    background: linear-gradient(90deg, #62d6c8, #f6c452);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manual-hero p {
    max-width: 860px;
    color: #bbb;
    font-size: 1.1rem;
}

.manual-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.manual-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.manual-toc {
    position: sticky;
    top: 1rem;
    display: grid;
    gap: 0.65rem;
    padding: 1rem 0;
}

.manual-toc strong {
    color: #f6c452;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.manual-toc a {
    color: #aaa;
    text-decoration: none;
    border-left: 2px solid #222;
    padding: 0.2rem 0 0.2rem 0.75rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.manual-toc a:hover {
    color: #62d6c8;
    border-color: #62d6c8;
}

.manual-content {
    min-width: 0;
}

.manual-section {
    padding: 3rem 0;
    border-bottom: 1px solid #222;
}

.manual-section h2 {
    color: #62d6c8;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.manual-section h3 {
    color: #f6c452;
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
}

.manual-section p {
    color: #bbb;
    margin-bottom: 1rem;
}

.manual-term-grid,
.manual-info-list,
.manual-mode-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.manual-term-grid article,
.manual-info-list article,
.manual-mode-grid article,
.manual-example {
    border: 1px solid rgba(98, 214, 200, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(98, 214, 200, 0.07), rgba(246, 196, 82, 0.025)),
        #101010;
    padding: 1.25rem;
}

.manual-term-grid p,
.manual-info-list p,
.manual-mode-grid p {
    margin-bottom: 0;
    color: #aaa;
}

.manual-figure {
    margin: 1.5rem 0;
}

.manual-figure img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(98, 214, 200, 0.25);
    border-radius: 8px;
    background: #08090c;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.manual-figure figcaption {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.65rem;
}

.manual-steps {
    color: #ccc;
    padding-left: 1.4rem;
    margin: 1rem 0;
}

.manual-steps li {
    margin-bottom: 0.65rem;
}

.manual-steps.compact li {
    margin-bottom: 0.4rem;
}

.manual-callout {
    border: 1px solid rgba(246, 196, 82, 0.28);
    border-radius: 8px;
    color: #ddd;
    background: rgba(246, 196, 82, 0.07);
    padding: 1rem 1.15rem;
    margin-top: 1.25rem;
}

.manual-callout strong {
    color: #f6c452;
}

.manual-table-wrap {
    overflow-x: auto;
    margin: 1.25rem 0;
    border: 1px solid #222;
    border-radius: 8px;
}

.manual-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: #101010;
}

.manual-table th,
.manual-table td {
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #222;
    padding: 0.9rem 1rem;
}

.manual-table th {
    color: #0d0d0d;
    background: #62d6c8;
}

.manual-table td {
    color: #bbb;
}

.manual-table tr:last-child td {
    border-bottom: 0;
}

.manual-example {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.manual-example .manual-figure {
    margin: 0;
}

.manual-key-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.manual-key-grid span {
    color: #bbb;
    border: 1px solid #222;
    border-radius: 8px;
    background: #101010;
    padding: 0.75rem;
}

kbd {
    display: inline-block;
    min-width: 1.8rem;
    margin: 0 0.15rem 0.15rem 0;
    border: 1px solid rgba(98, 214, 200, 0.45);
    border-bottom-color: rgba(98, 214, 200, 0.7);
    border-radius: 4px;
    padding: 0.1rem 0.35rem;
    color: #62d6c8;
    background: #0a0a0a;
    font: inherit;
    font-weight: 700;
    text-align: center;
}

.manual-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.manual-checklist li {
    position: relative;
    color: #ccc;
    border-bottom: 1px solid #222;
    padding: 0.85rem 0 0.85rem 1.7rem;
}

.manual-checklist li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #62d6c8;
    font-weight: 700;
}
/* Live Stats */
.stats {
    padding: 4rem 0;
    background: #0a0a0a;
    text-align: center;
}

.stats h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #f6c452;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.stat {
    background: #111;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #222;
}

.stat .value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #62d6c8;
}

.stat .label {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

.footer a {
    color: #62d6c8;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-link {
    color: #62d6c8;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-link:hover {
    color: #3fb7ad;
}

.footer-button {
    appearance: none;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

/* Privacy Policy */
.privacy-policy {
    padding: 2rem 0 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-policy h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #62d6c8, #f6c452);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
    animation: fadeInDown 0.6s ease-out;
}

.privacy-policy > p:first-of-type {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #222;
    padding-bottom: 2rem;
}

.privacy-policy h2 {
    font-size: 1.6rem;
    color: #62d6c8;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #62d6c8;
    background: linear-gradient(90deg, rgba(98, 214, 200, 0.1), transparent);
    padding: 1rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.privacy-policy h2:hover {
    background: linear-gradient(90deg, rgba(98, 214, 200, 0.15), transparent);
    transform: translateX(5px);
}

.privacy-policy h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #62d6c8, #f6c452);
}

.privacy-policy h3 {
    font-size: 1.2rem;
    color: #3fb7ad;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 3px solid #3fb7ad;
}

.privacy-policy p {
    color: #bbb;
    margin-bottom: 1.25rem;
    line-height: 1.9;
    font-size: 1rem;
    background: rgba(17, 17, 17, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(34, 34, 34, 0.5);
    transition: all 0.3s ease;
}

.privacy-policy p:hover {
    background: rgba(17, 17, 17, 0.5);
    border-color: rgba(98, 214, 200, 0.2);
}

.privacy-policy ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    background: #0a0a0a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #222;
}

.privacy-policy ul li {
    color: #ccc;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.7;
    transition: all 0.2s ease;
}

.privacy-policy ul li:hover {
    color: #e0e0e0;
    transform: translateX(5px);
}

.privacy-policy ul li:before {
    content: "▸";
    position: absolute;
    left: 0.5rem;
    color: #62d6c8;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.privacy-policy ul li:hover:before {
    color: #f6c452;
    transform: translateX(3px);
}

.privacy-policy ul li strong {
    color: #62d6c8;
    font-weight: 600;
}

.privacy-policy a {
    color: #62d6c8;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.privacy-policy a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #62d6c8, #f6c452);
    transition: width 0.3s ease;
}

.privacy-policy a:hover {
    color: #f6c452;
}

.privacy-policy a:hover:after {
    width: 100%;
}

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

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    border-top: 2px solid #62d6c8;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(98, 214, 200, 0.15);
    animation: slideUp 0.5s ease-out;
    display: flex;
    justify-content: center;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-content {
    max-width: 1000px;
    width: 100%;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cookie-icon {
    display: inline-grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid rgba(98, 214, 200, 0.45);
    border-radius: 50%;
    color: #62d6c8;
    font-size: 1rem;
    font-weight: 700;
}

.cookie-header h3 {
    font-size: 1.3rem;
    color: #62d6c8;
    font-family: "Roboto Mono", ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    margin: 0;
}

.cookie-body {
    margin-bottom: 1.5rem;
}

.cookie-text {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.cookie-text-small {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cookie-details {
    margin-top: 0.75rem;
}

.details-link {
    color: #62d6c8;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.details-link:hover {
    color: #f6c452;
    background: rgba(98, 214, 200, 0.1);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-family: "Roboto Mono", ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookie-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cookie-btn:hover:before {
    width: 300px;
    height: 300px;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #62d6c8, #3fb7ad);
    color: #000;
    box-shadow: 0 4px 15px rgba(98, 214, 200, 0.3);
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #3fb7ad, #2f8f89);
    box-shadow: 0 6px 20px rgba(98, 214, 200, 0.5);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: #aaa;
    border: 1px solid #333;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #666;
    color: #e0e0e0;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .hero-image {
        max-width: 85vw;
        width: 100%;
    }
    .nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav a {
        margin: 0;
    }
    .countdown-time {
        font-size: 3rem;
    }
    .launch-message {
        font-size: 2.5rem;
    }
    .privacy-policy {
        padding: 1rem 0 3rem 0;
    }
    .privacy-policy h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .privacy-policy h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        padding: 0.75rem;
    }
    .privacy-policy h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
    .privacy-policy p {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    .privacy-policy ul {
        padding: 1rem;
    }
    .privacy-policy ul li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
    .privacy-policy ul li:before {
        left: 0.25rem;
        font-size: 1rem;
    }
    .header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-link {
        display: inline-block;
        margin: 0.25rem 0.5rem;
    }
    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .install-section {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .install-steps {
        grid-template-columns: 1fr;
    }
    .manual-teaser {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .manual-hero {
        padding: 2rem 0;
    }
    .manual-hero p {
        font-size: 1rem;
    }
    .manual-layout {
        grid-template-columns: 1fr;
    }
    .manual-toc {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-bottom: 1px solid #222;
        padding-bottom: 1.25rem;
    }
    .manual-toc strong {
        grid-column: 1 / -1;
    }
    .manual-section {
        padding: 2.25rem 0;
    }
    .manual-section h2,
    .manual-teaser h2 {
        font-size: 1.55rem;
    }
    .manual-term-grid,
    .manual-info-list,
    .manual-mode-grid,
    .manual-key-grid,
    .manual-example {
        grid-template-columns: 1fr;
    }
    .manual-example {
        padding: 1rem;
    }
    .manual-table th,
    .manual-table td {
        padding: 0.75rem;
    }
    .cookie-consent {
        padding: 1rem;
    }
    .cookie-header h3 {
        font-size: 1.1rem;
    }
    .cookie-text {
        font-size: 0.9rem;
    }
    .cookie-text-small {
        font-size: 0.8rem;
    }
    .cookie-actions {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }
    .details-link {
        font-size: 0.85rem;
    }
}
