/* ------------------------------ */
/*   GLOBAL PAGE (Blue/Neon)      */
/* ------------------------------ */

body {
    background: radial-gradient(circle at top, #1a2242, #0c1124 60%);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    color: #dbe3ff;
}

/* Container */
.container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    text-align: center;
}

/* ------------------------------ */
/*   HEADER                       */
/* ------------------------------ */

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 25px rgba(122, 96, 255, 0.45);
}

h1 {
    margin: 10px 0 5px;
    font-size: 26px;
    font-weight: 700;
}

.subtitle {
    font-size: 15px;
    color: #9db0d9 !important;
    margin-bottom: 20px;
}

/* Social icons */
.socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 22px;
}

.socials a {
    color: #7b8cff;
    transition: 0.25s;
}

.socials a:hover {
    transform: scale(1.25);
    color: #a78bff;
}

/* ------------------------------ */
/*   LINK BUTTONS (Cards BYHNEX)  */
/* ------------------------------ */

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 35px 0;
}

/* EACH BUTTON */
.link-item {
    background: rgba(255, 255, 255, 0.04);
    color: #dce5ff;
    padding: 18px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 0 18px rgba(104, 82, 255, 0.22),
        inset 0 0 16px rgba(66, 50, 180, 0.10);

    backdrop-filter: blur(4px);
    transition: 0.25s ease;
}

/* Hover — raised neon glow */
.link-item:hover {
    transform: translateY(-4px);
    border-color: rgba(130, 105, 255, 0.7);
    box-shadow:
        0 0 25px rgba(135, 115, 255, 0.55),
        inset 0 0 25px rgba(100, 80, 255, 0.25);
}

.community-icons{
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 22px;
}
.icon-hover {
  transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out, filter 0.35s ease-in-out;
}

.icon-hover:hover {
  transform: translateY(-4px) scale(1.08);
}
/* ------------------------------ */
/*   QR SECTION                   */
/* ------------------------------ */

.qr {
    margin-top: 32px;
    opacity: 0.92;
    color: #a8b7da;
}

.qr img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 0 25px rgba(124, 71, 255, 0.4);
}

/* ------------------------------ */
/*   TELEGRAM BUTTON + DROPDOWN   */
/* ------------------------------ */

.telegram-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Chevron */
.chevron {
    font-size: 14px;
    opacity: 0.75;
    transition: transform 0.3s ease;
}

.chevron.rotate {
    transform: rotate(180deg);
}

/* Hidden list */
#telegramList {
    display: none;
    animation: fadeIn 0.25s ease-in-out;
}

/* When visible */
.telegram-visible {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
}

/* Smaller Telegram links */
.small-link {
    font-size: 14px;
    padding: 14px;
    opacity: 0.92;
}
.telegram-list {
    display: none;
    animation: fadeIn 0.25s ease-in-out;
}


/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
