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

:root {
    --bg: #05070d;
    --bg-soft: #090d18;
    --text: #f7f8fc;
    --muted: #9ba4b8;
    --line: rgba(255,255,255,.09);
    --purple: #8b5cf6;
    --blue: #4f7cff;
    --cyan: #22d3ee;
    --gold: #f5c76a;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.05);
    background: rgba(5,7,13,.45);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #4f7cff);
    box-shadow: 0 0 30px rgba(107,92,246,.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-size: 16px;
    letter-spacing: -.3px;
}

.brand-text small {
    margin-top: 5px;
    color: #8d96aa;
    font-size: 10px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 34px;
    margin-left: 70px;
}

.main-nav a {
    color: #aeb6c7;
    font-size: 13px;
    font-weight: 500;
    transition: .25s ease;
}

.main-nav a:hover {
    color: #fff;
}

.header-btn {
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 12px;
    background: rgba(255,255,255,.055);
    color: #fff;
    font-size: 13px;
    transition: .25s ease;
}

.header-btn span {
    margin-left: 7px;
}

.header-btn:hover {
    border-color: rgba(139,92,246,.5);
    background: rgba(139,92,246,.12);
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 820px;
    padding: 155px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 35%, rgba(79,124,255,.11), transparent 28%),
        radial-gradient(circle at 38% 75%, rgba(139,92,246,.09), transparent 30%),
        linear-gradient(180deg, #05070d 0%, #070a13 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    margin-bottom: 23px;
    border: 1px solid rgba(139,92,246,.23);
    border-radius: 100px;
    background: rgba(139,92,246,.07);
    color: #c6b9f9;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .35px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #45e6a4;
    box-shadow: 0 0 12px rgba(69,230,164,.8);
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(46px, 5.4vw, 76px);
    line-height: .98;
    letter-spacing: -4px;
    font-weight: 780;
}

.hero h1 span {
    display: block;
    background: linear-gradient(100deg, #fff 10%, #a98bff 45%, #5f8cff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 570px;
    margin: 26px 0 32px;
    color: #98a1b5;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================
   SEARCH CARD
========================= */

.search-card {
    width: 100%;
    min-height: 86px;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    background: rgba(17,21,34,.72);
    box-shadow:
        0 25px 80px rgba(0,0,0,.4),
        inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(25px);
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 16px;
}

.search-icon,
.location-icon {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(139,92,246,.12);
    color: #bda9ff;
    font-size: 20px;
}

.location-icon {
    background: rgba(34,211,238,.09);
    color: #5fe6f7;
}

.search-field div {
    display: flex;
    flex-direction: column;
}

.search-field small {
    color: #70798c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.3px;
    margin-bottom: 5px;
}

.search-field strong {
    font-size: 13px;
    font-weight: 600;
    color: #eef1f8;
}

.search-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.08);
}

.search-btn {
    height: 64px;
    min-width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, #8057ee, #486fe9);
    box-shadow: 0 12px 30px rgba(91,83,224,.25);
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 38px rgba(91,83,224,.4);
}

.search-btn span {
    font-size: 17px;
}


/* =========================
   TRUST STATS
========================= */

.hero-trust {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 24px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-item strong {
    font-size: 17px;
    font-weight: 700;
}

.trust-item span {
    color: #727b8e;
    font-size: 10px;
}

.trust-line {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,.09);
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100,83,255,.25), transparent 67%);
    filter: blur(12px);
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(139,92,246,.12);
    border-radius: 50%;
}

.orbit-one {
    width: 490px;
    height: 490px;
}

.orbit-two {
    width: 350px;
    height: 350px;
    border-color: rgba(34,211,238,.1);
}

.hero-profile {
    position: relative;
    z-index: 5;
    width: 340px;
    min-height: 445px;
    padding: 31px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(30,35,53,.88), rgba(10,13,23,.94));
    box-shadow:
        0 35px 90px rgba(0,0,0,.5),
        inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(25px);
    transform: rotate(2deg);
}

.profile-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(114,85,255,.28);
    filter: blur(55px);
    pointer-events: none;
}

.profile-avatar {
    position: relative;
    width: 104px;
    height: 104px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    background:
        radial-gradient(circle at 35% 30%, #5e6caa, #202640 45%, #101421 75%);
    box-shadow:
        0 0 0 8px rgba(255,255,255,.025),
        0 0 45px rgba(94,106,255,.2);
}

.profile-avatar span {
    color: #dce2ff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 2px;
}

.profile-location {
    display: flex;
    justify-content: center;
    gap: 6px;
    color: #858fa4;
    font-size: 10px;
}

.profile-location span {
    color: #5ee8f6;
}

.hero-profile h3 {
    margin-top: 16px;
    text-align: center;
    font-size: 20px;
    letter-spacing: -.4px;
}

.hero-profile p {
    margin: 11px auto 20px;
    max-width: 250px;
    text-align: center;
    color: #8992a7;
    font-size: 11px;
    line-height: 1.65;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.profile-stats div {
    text-align: center;
}

.profile-stats strong {
    display: block;
    font-size: 14px;
}

.profile-stats span {
    display: block;
    margin-top: 4px;
    color: #697388;
    font-size: 8px;
}

.profile-btn {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 19px;
    border-radius: 12px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.08);
    font-size: 11px;
    font-weight: 600;
    transition: .25s ease;
}

.profile-btn:hover {
    background: rgba(139,92,246,.14);
    border-color: rgba(139,92,246,.3);
}


/* =========================
   FLOATING CARDS
========================= */

.floating-card {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 15px;
    background: rgba(15,19,31,.78);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(20px);
}

.floating-card strong {
    display: block;
    font-size: 10px;
}

.floating-card small {
    display: block;
    margin-top: 4px;
    color: #707a8f;
    font-size: 8px;
}

.card-top {
    top: 55px;
    right: -12px;
    animation: floatTop 4s ease-in-out infinite;
}

.mini-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(139,92,246,.15);
    color: #ae96ff;
}

.online-dot {
    width: 7px;
    height: 7px;
    margin-left: 5px;
    border-radius: 50%;
    background: #46e3a1;
    box-shadow: 0 0 10px #46e3a1;
}

.card-bottom {
    bottom: 65px;
    left: -15px;
    animation: floatBottom 4.5s ease-in-out infinite;
}

.pulse-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(70,227,161,.1);
    color: #52e4a7;
    font-weight: 800;
}


/* =========================
   GLOW
========================= */

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.glow-one {
    width: 280px;
    height: 280px;
    top: 80px;
    right: 8%;
    background: rgba(84,75,245,.13);
}

.glow-two {
    width: 220px;
    height: 220px;
    bottom: 0;
    left: 10%;
    background: rgba(30,170,230,.08);
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(transparent, #070a13);
    pointer-events: none;
}


/* =========================
   PLACEHOLDER SECTION
========================= */

.placeholder-section {
    min-height: 280px;
    padding: 90px 0;
    background: #070a13;
    border-top: 1px solid rgba(255,255,255,.04);
}

.placeholder-section span {
    color: #8f78e8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.placeholder-section h2 {
    margin-top: 12px;
    font-size: 34px;
    letter-spacing: -1px;
}

.placeholder-section p {
    margin-top: 10px;
    color: #7d879a;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 30px 0;
    background: #05070d;
    border-top: 1px solid rgba(255,255,255,.05);
    color: #687286;
    font-size: 11px;
}


/* =========================
   ANIMATION
========================= */

@keyframes floatTop {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatBottom {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 980px) {

    .hero {
        padding-top: 135px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
    }

    .main-nav {
        margin-left: 0;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .container {
        width: min(100% - 28px, 600px);
    }

    .header-inner {
        height: 72px;
    }

    .main-nav {
        display: none;
    }

    .header-btn {
        padding: 10px 12px;
        font-size: 11px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 56px);
        letter-spacing: -2.8px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .search-card {
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
        border-radius: 17px;
    }

    .search-field {
        min-height: 65px;
        padding: 8px 12px;
    }

    .search-divider {
        width: calc(100% - 20px);
        height: 1px;
        margin: 0 auto;
    }

    .search-btn {
        width: 100%;
        height: 52px;
        min-width: 0;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-item strong {
        font-size: 14px;
    }

    .trust-item span {
        font-size: 8px;
    }

    .trust-line {
        height: 25px;
    }

    .hero-visual {
        min-height: 500px;
        transform: scale(.9);
        margin: -20px -20px -20px;
    }

    .hero-profile {
        width: 310px;
    }

    .orbit-one {
        width: 400px;
        height: 400px;
    }

    .orbit-two {
        width: 300px;
        height: 300px;
    }

    .card-top {
        right: -5px;
        top: 45px;
    }

    .card-bottom {
        left: -5px;
        bottom: 50px;
    }

    .placeholder-section {
        padding: 65px 0;
    }

    .placeholder-section h2 {
        font-size: 28px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .header-btn {
        padding: 9px 10px;
    }

    .hero-badge {
        font-size: 9px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-visual {
        transform: scale(.82);
        margin-left: -35px;
        margin-right: -35px;
    }

}

/* =========================================================
   ARTICLE / REVIEWS / FAQ
   ========================================================= */

.content-section,
.reviews-section,
.faq-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.article-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(91, 72, 255, 0.08), transparent 32%),
        #080b16;
}

.narrow-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading.center-heading {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #8e7cff;
}

.section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.section-heading h2 strong {
    color: #a99cff;
    font-weight: 800;
}

.section-heading p {
    margin: 16px auto 0;
    color: #98a1b5;
    font-size: 16px;
    line-height: 1.7;
}

.article-card {
    position: relative;
    padding: 42px 46px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
        rgba(12, 16, 31, 0.88);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(18px);
}

.article-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(137, 116, 255, 0.8),
        transparent
    );
}

.article-card p {
    margin: 0 0 22px;
    color: #b5bdcf;
    font-size: 16px;
    line-height: 1.9;
}

.article-card p:last-child {
    margin-bottom: 0;
}

.article-card strong {
    color: #ffffff;
    font-weight: 800;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-section {
    background:
        radial-gradient(circle at 85% 15%, rgba(0, 204, 255, 0.07), transparent 28%),
        #0a0e1a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.review-card {
    position: relative;
    min-height: 235px;
    padding: 27px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.055),
        rgba(255,255,255,0.015)
    );
    box-shadow: 0 20px 55px rgba(0,0,0,0.22);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-7px);
    border-color: rgba(137, 116, 255, 0.38);
    box-shadow: 0 28px 65px rgba(0,0,0,0.3);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(135deg, #6f5cff, #16c8ff);
    box-shadow: 0 8px 25px rgba(80, 91, 255, 0.25);
}

.review-top > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-top strong {
    color: #ffffff;
    font-size: 15px;
}

.review-top span {
    color: #7f899e;
    font-size: 12px;
}

.review-stars {
    margin-left: auto;
    color: #ffd166;
    font-size: 12px;
    letter-spacing: 1px;
}

.review-card p {
    margin: 0;
    color: #aeb7c9;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    background:
        radial-gradient(circle at 50% 100%, rgba(109, 83, 255, 0.09), transparent 35%),
        #080b16;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-list {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 17px;
    background: rgba(255,255,255,0.025);
    overflow: hidden;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item[open] {
    border-color: rgba(137, 116, 255, 0.3);
    background: rgba(255,255,255,0.04);
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(137, 116, 255, 0.14);
    font-size: 20px;
    font-weight: 400;
    transition: transform 0.25s ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    padding: 0 24px 23px;
    color: #9da7bb;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-inner strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 6px;
}

.footer-inner p {
    margin: 0;
    color: #778196;
    font-size: 13px;
}

.footer-inner > span {
    color: #667086;
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-card {
        padding: 35px;
    }
}


@media (max-width: 700px) {

    .content-section,
    .reviews-section,
    .faq-section {
        padding: 70px 0;
    }

    .narrow-container,
    .faq-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .article-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .article-card p {
        font-size: 15px;
        line-height: 1.8;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 35px;
    }

    .review-card {
        min-height: auto;
        padding: 23px;
    }

    .review-stars {
        font-size: 10px;
    }

    .faq-list {
        margin-top: 32px;
    }

    .faq-item summary {
        padding: 19px 18px;
        font-size: 14px;
    }

    .faq-item p {
        padding: 0 18px 20px;
        font-size: 13px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 480px) {

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .review-top {
        flex-wrap: wrap;
    }

    .review-stars {
        width: 100%;
        margin-left: 58px;
        margin-top: -8px;
    }
}


/* =========================================================
   STICKY TELEGRAM BUTTON
   ========================================================= */

.telegram-sticky {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px 13px 14px;
    border-radius: 50px;
    color: #ffffff;
    background: linear-gradient(135deg, #229ed9, #167db5);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
    animation: telegramPulse 2.5s infinite;
}

.telegram-sticky:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 42px rgba(34,158,217,0.38);
}

.telegram-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    font-size: 18px;
}

.telegram-text {
    white-space: nowrap;
}

@keyframes telegramPulse {
    0%, 100% {
        box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    }

    50% {
        box-shadow: 0 12px 38px rgba(34,158,217,0.42);
    }
}

@media (max-width: 600px) {
    .telegram-sticky {
        right: 15px;
        bottom: 15px;
        padding: 11px 16px 11px 11px;
        font-size: 13px;
    }

    .telegram-icon {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }
}

