/* =========================
   RESET + BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --acid-green: #7cff00;
    --toxic-pink: #ff00ff;
    --neon-cyan: #00e5ff;
    --glitch-yellow: #fff700;
    --dark-bg: #0b0f1a;
    --card-bg: rgba(20, 25, 45, 0.92);
}

html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 20%, var(--acid-green) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, var(--toxic-pink) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, var(--neon-cyan) 0%, transparent 50%),
        var(--dark-bg);
    color: #f5f7ff;
}

/* =========================
   MENU
========================= */
.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    background: rgba(15, 20, 40, 0.9);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
    margin: 20px;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--acid-green);
    text-shadow: 0 0 12px var(--acid-green);
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 28px;
}

.menu-list a {
    text-decoration: none;
    color: #f5f7ff;
    font-weight: 600;
    position: relative;
    transition: color .2s ease;
    text-transform: uppercase;
}

.menu-list a:hover {
    color: var(--neon-cyan);
}

.menu-btn {
    padding: 12px 22px;
    background: linear-gradient(45deg, var(--acid-green), var(--neon-cyan));
    color: black;
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
    text-transform: uppercase;
}

.menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--acid-green);
}

/* =========================
   MAIN PAGE CONTAINER
========================= */
.page {
    max-width: 960px;
    width: 90%;
    margin: 60px auto;
    padding: 0 15px;
    text-align: center;
}

/* =========================
   GUARANTORS / CARDS
========================= */
.guarantors h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: var(--acid-green);
    text-shadow: 0 0 8px var(--acid-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.guarantors h2::before {
    content: "🔒";
    font-size: 28px;
}

.guarantor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.guarantor-card {
    width: 260px;
    background: var(--card-bg);
    border-radius: 22px;
    padding: 20px;
    text-align: center;
    color: #f5f7ff;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 18px 50px rgba(0,0,0,0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.guarantor-card:hover {
    transform: scale(1.04) rotate(-0.4deg);
    box-shadow:
        0 0 0 1px rgba(124,255,0,0.4),
        0 0 35px rgba(124,255,0,0.5);
}

.guarantor-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.guarantor-card .price {
    font-size: 18px;
    font-weight: 800;
    color: var(--glitch-yellow);
    margin-bottom: 20px;
}

/* Кнопка Telegram */
.guarantor-card .tg-btn {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(45deg, var(--toxic-pink), var(--neon-cyan));
    color: black;
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    user-select: none;
}

.guarantor-card .tg-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 30px var(--toxic-pink);
}

/* =========================
   FOOTER
========================= */
.footer {
    margin: 60px 0 30px;
    color: #ccc;
    font-size: 14px;
    user-select: none;
    text-align: center;
    text-shadow: 0 0 3px #0008;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        gap: 14px;
    }

    .menu-list {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .guarantor-list {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .guarantor-card {
        width: 90%;
        padding: 14px;
    }

    .guarantor-card .tg-btn {
        width: 100%;
        text-align: center;
    }
}
