* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tektur', sans-serif;
}

body {
    background-color: #131314;
    color: #fff;
    line-height: 1.6;
}

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

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

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(19, 19, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    margin-right: auto;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #f0f600;
}
.logo span { color: #ff3cc7; }

.nav-links {
    display: flex;
    gap: 30px;
    margin: 0 40px;
}

.nav-links a {
    color: #bbb;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active-link {
    color: #f0c808;
    text-shadow: 0 0 10px rgba(240, 200, 8, 0.3);
}

.header-socials { display: flex; gap: 12px; }

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 16px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon:hover {
    background: #f0c808;
    color: #000;
    border-color: #f0c808;
}

/* CONTENT */
/* В html добавил inline-стиль для надежности, но здесь тоже увеличим */
main {
    margin-top: 200px;
    padding-bottom: 100px;
}

.support-header { margin-bottom: 60px; }

.breadcrumbs {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}
.breadcrumbs i { font-size: 10px; margin: 0 5px; }
.breadcrumbs span { color: #f0c808; }

.support-header h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-desc {
    color: #aaa;
    font-size: 16px;
    max-width: 800px;
    line-height: 1.6;
}

/* GRID LAYOUT (Для 3 элементов лучше использовать auto-fit minmax 300) */
.support-grid {
    display: grid;
    /* Теперь карточки будут сами выстраиваться: 3 в ряд на большом экране, 1 на мобильном */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD BASE */
.support-card {
    background: #181819;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.card-icon {
    font-size: 32px;
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #222;
    color: #666;
    transition: 0.3s;
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content h2 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    font-size: 15px;
    color: #888;
    margin-bottom: auto; /* Толкает ссылку вниз */
    line-height: 1.6;
}

.link-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    margin-top: 25px;
}

.link-text i { transition: transform 0.3s; }

/* === ЦВЕТОВЫЕ СХЕМЫ === */

/* 1. TELEGRAM (GOLUBOY / LIGHT BLUE) */
.telegram-card:hover {
    transform: translateY(-5px);
    border-color: #2AABEE;
    box-shadow: 0 10px 40px rgba(42, 171, 238, 0.1);
    background: #1b1e21;
}
.telegram-card:hover .card-icon {
    background: #2AABEE;
    color: #fff;
}
.telegram-card:hover .link-text {
    color: #2AABEE;
}

/* 2. DISCORD (BLUE / BLURPLE) */
.discord-card:hover {
    transform: translateY(-5px);
    border-color: #5865F2;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.1);
    background: #1b1c24;
}
.discord-card:hover .card-icon {
    background: #5865F2;
    color: #fff;
}
.discord-card:hover .link-text {
    color: #5865F2;
}

/* 3. LOLZ / ZELENKA (GREEN) */
.lolz-card:hover {
    transform: translateY(-5px);
    border-color: #22ba4f;
    box-shadow: 0 10px 40px rgba(34, 186, 79, 0.1);
    background: #1b211c;
}
.lolz-card:hover .card-icon {
    background: #22ba4f;
    color: #fff;
}
.lolz-card:hover .link-text {
    color: #22ba4f;
}

/* Стрелочка двигается при наведении */
.support-card:hover .link-text i {
    transform: translateX(5px);
}

/* FOOTER */
footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 50px 0 20px;
    border-top: 1px solid #40531b;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #f0c808;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #bdb009;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-links a:hover { color: #00e5e8; }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #40531b;
    color: #618b4a;
    font-size: 14px;
    position: relative;
}

.author-signature {
    position: absolute;
    bottom: 5px;
    right: 10px;
    color: transparent;
    font-size: 1px;
    user-select: none;
}

@media (max-width: 900px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}