body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 80px 24px;
    background-color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f5f5f5;
    overflow: hidden;
}
body > button{background: transparent;color: #fff;z-index: 9;top: 5px;left: 5px;position: fixed;border: none;margin-left: 10px;margin-top: 10px;transition: transform ease-in-out .1s;float: left;}
body > button:hover{transform: scale(1.025);}
body > button:focus{transform: scale(0.975);}
.hero {
    text-align: center;
    z-index: 1;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
    letter-spacing: 1px;
}

.hero .subtitle {
    margin: 12px 0 0;
    color: #c8c8c8;
    font-size: 18px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 20px;
    width: min(960px, 100%);
    z-index: 1;
}

.card {
    display: block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.card .inner h2 {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 24px;
}

.card .inner p {
    margin: 0 0 14px;
    color: #d6d6d6;
}

.card .cta {
    font-weight: 600;
    color: #7cdf5d;
}
.warn{font-size: 10px;position: relative;bottom: 15px;color: #a4a700;}

.threads-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}

.threads-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.logo{width: 120px;height: 120px;float: right;}

@media (max-width: 960px) {
    body {
        padding: 60px 18px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero .subtitle {
        font-size: 16px;
    }
    .cards {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .card {
        padding: 16px;
    }
    .card .inner h2 {
        font-size: 20px;
    }
    .warn {
        font-size: 11px;
        bottom: 8px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 40px 14px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero .subtitle {
        font-size: 15px;
    }
    .cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .card {
        border-radius: 12px;
    }
}
