* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-navy: #0F1729;
    --navy-blue: #1E3A5F;
    --deep-purple: #5B21B6;
    --lavender: #A78BFA;
    --electric-blue: #2563EB;
    --alert-red: #DC2626;
    --success-green: #16A34A;
    --vivid-orange: #EA580C;
    --cyan: #0891B2;
    --off-white: #F8FAFC;
    --light-gray: #E5E7EB;
    --medium-gray: #6B7280;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.10), transparent 30%),
        radial-gradient(circle at 80% 25%, rgba(234, 88, 12, 0.10), transparent 28%),
        linear-gradient(180deg, #08101f 0%, #0F1729 100%);
    color: var(--white);
    overflow-x: hidden;
}

/* NAVBAR */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 40px;
    z-index: 1000;
    background: rgba(8, 16, 31, 0.60);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.25));
}

nav {
    display: flex;
    gap: 42px;
    align-items: center;
}

nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav a:hover {
    color: var(--white);
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lavender), var(--electric-blue));
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #ff7a1a 0%, var(--vivid-orange) 100%);
    padding: 14px 24px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.25);
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(234, 88, 12, 0.35);
}

/* HERO */

.hero {
    min-height: 100vh;
    padding: 150px 60px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8,16,31,0.94) 0%,
            rgba(8,16,31,0.82) 35%,
            rgba(8,16,31,0.56) 60%,
            rgba(8,16,31,0.72) 100%
        ),
        url("assets/logo.png") no-repeat right center / 55%;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    top: 12%;
    left: 5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(91, 33, 182, 0.22) 0%,
        rgba(37, 99, 235, 0.10) 35%,
        transparent 68%
    );
    filter: blur(30px);
    z-index: -1;
}

.hero-content {
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.live-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4d4d 0%, var(--alert-red) 100%);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.25);
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(60px, 7vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 28px;
}

.hero h1 span {
    background: linear-gradient(
        90deg,
        #c4b5fd 0%,
        #a78bfa 35%,
        #7c3aed 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    max-width: 760px;
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.2;
    color: rgba(248, 250, 252, 0.92);
    margin-bottom: 36px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7a1a 0%, var(--vivid-orange) 100%);
    color: white;
    box-shadow: 0 16px 34px rgba(234, 88, 12, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(37, 99, 235, 0.14);
    border: 1px solid rgba(96, 165, 250, 0.28);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

/* METRICS */

.metrics {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.metric-card {
    min-width: 180px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 44px rgba(3, 8, 20, 0.28);
}

.metric-card h3 {
    font-size: 40px;
    margin-bottom: 6px;
    font-weight: 800;
}

.metric-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    margin: 0;
}

/* COUNTDOWN */

.countdown-section {
    margin-bottom: 30px;
}

#countdown {
    font-size: 42px;
    color: var(--lavender);
    font-weight: 700;
}

/* PROGRESS */

.progress-block {
    max-width: 600px;
}

.progress-block p {
    margin-bottom: 10px;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.progress-block span {
    color: var(--lavender);
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--electric-blue),
        var(--vivid-orange)
    );
    border-radius: 10px;
}

/* SECTIONS */

.section,
.cards-section,
.roles-section,
.final-cta {
    padding: 100px 60px;
}

.cards-grid,
.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.card,
.role-card {
    background: rgba(30, 58, 95, 0.55);
    padding: 30px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s;
    backdrop-filter: blur(12px);
}

.card:hover,
.role-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(3, 8, 20, 0.28);
    border-color: rgba(167,139,250,0.3);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    nav {
        display: none;
    }

    .hero {
        padding: 130px 20px 70px;
    }

    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(8,16,31,0.94) 0%,
                rgba(8,16,31,0.80) 45%,
                rgba(8,16,31,0.95) 100%
            ),
            url("assets/logo.png") no-repeat center 82% / 90%;
    }

    .metrics {
        flex-direction: column;
    }

    .metric-card {
        width: 100%;
    }

    .cards-grid,
    .roles-grid {
        grid-template-columns: 1fr;
    }
}
/* ABOUT SECTION */

.about-section {
    padding: 120px 60px;
    position: relative;
    background:
        radial-gradient(circle at 15% 30%, rgba(91,33,182,0.10), transparent 35%),
        radial-gradient(circle at 80% 40%, rgba(37,99,235,0.08), transparent 35%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #A78BFA;
    margin-bottom: 18px;
}

.about-left h2 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.about-left h2 span {
    background: linear-gradient(
        90deg,
        #c4b5fd 0%,
        #a78bfa 40%,
        #7c3aed 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-left p {
    font-size: 24px;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-bottom: 22px;
}

.about-subtext {
    color: rgba(255,255,255,0.65);
    font-size: 18px !important;
}

/* RIGHT SIDE CARDS */

.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    padding: 28px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.3s;
    box-shadow: 0 16px 40px rgba(3, 8, 20, 0.22);
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(167,139,250,0.3);
    box-shadow: 0 20px 48px rgba(3, 8, 20, 0.28);
}

.about-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: white;
}

.about-card p {
    font-size: 17px;
    line-height: 1.4;
    color: rgba(255,255,255,0.75);
}

/* MOBILE */

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section {
        padding: 90px 20px;
    }

    .about-left p {
        font-size: 20px;
    }
}
/* PROCESS SECTION */

.process-section {
    padding: 120px 60px;
    position: relative;
    background:
        radial-gradient(circle at 20% 20%, rgba(37,99,235,0.08), transparent 30%),
        radial-gradient(circle at 80% 40%, rgba(91,33,182,0.08), transparent 30%);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-title {
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
}

.process-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 50px;
}

/* TIMELINE */

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

.timeline-card {
    position: relative;
    padding: 36px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.3s;
    box-shadow: 0 16px 40px rgba(3, 8, 20, 0.22);
    min-height: 220px;
}

.timeline-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167,139,250,0.28);
    box-shadow: 0 24px 54px rgba(3, 8, 20, 0.28);
}

.step-number {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    color: #A78BFA;
    margin-bottom: 22px;
}

.timeline-card h3 {
    font-size: 30px;
    margin-bottom: 14px;
    line-height: 1.1;
}

.timeline-card p {
    font-size: 17px;
    line-height: 1.4;
    color: rgba(255,255,255,0.7);
}

/* MOBILE */

@media (max-width: 900px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .process-section {
        padding: 90px 20px;
    }
}
/* ROLES SECTION */

.roles-section {
    padding: 120px 60px;
    position: relative;
    background:
        radial-gradient(circle at 15% 30%, rgba(37,99,235,0.08), transparent 35%),
        radial-gradient(circle at 85% 40%, rgba(91,33,182,0.08), transparent 35%);
}

.roles-container {
    max-width: 1400px;
    margin: 0 auto;
}

.roles-title {
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.roles-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 50px;
    max-width: 850px;
}

/* NEW GRID */

.roles-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.role-cast-card {
    padding: 34px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.3s;
    box-shadow: 0 16px 40px rgba(3, 8, 20, 0.22);
    min-height: 240px;
}

.role-cast-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167,139,250,0.28);
    box-shadow: 0 24px 54px rgba(3, 8, 20, 0.28);
}

.role-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #A78BFA;
    margin-bottom: 20px;
}

.role-cast-card h3 {
    font-size: 30px;
    margin-bottom: 14px;
    line-height: 1.1;
}

.role-cast-card p {
    font-size: 17px;
    line-height: 1.45;
    color: rgba(255,255,255,0.72);
}

/* MOBILE */

@media (max-width: 900px) {
    .roles-grid-new {
        grid-template-columns: 1fr;
    }

    .roles-section {
        padding: 90px 20px;
    }
}
/* FINAL CTA */

.final-cta {
    padding: 140px 60px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 50%, rgba(234,88,12,0.10), transparent 30%),
        radial-gradient(circle at 80% 40%, rgba(91,33,182,0.08), transparent 35%);
}

.final-cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(234,88,12,0.10) 0%,
        transparent 65%
    );
    transform: translateY(-50%);
    filter: blur(30px);
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(58px, 7vw, 100px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.cta-title span {
    background: linear-gradient(
        90deg,
        #ffb37a 0%,
        #EA580C 40%,
        #ff7a1a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 24px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 40px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* BUTTONS */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* META TAGS */

.cta-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-pill {
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    font-size: 15px;
    color: rgba(255,255,255,0.82);
}

/* MOBILE */

@media (max-width: 900px) {
    .final-cta {
        padding: 100px 20px;
    }

    .cta-subtitle {
        font-size: 20px;
    }
}
/* SPONSORS */

.sponsors-section {
    padding: 120px 60px;
    position: relative;
    background:
        radial-gradient(circle at 20% 40%, rgba(234,88,12,0.08), transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(37,99,235,0.08), transparent 35%);
}


/* FIX SPONSORS LAYOUT */

.sponsors-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.sponsors-left {
    max-width: 700px;
}

.sponsors-title {
    font-size: clamp(48px, 5vw, 74px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.sponsors-title span {
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(
        90deg,
        #ffb37a 0%,
        #EA580C 40%,
        #ff7a1a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sponsors-subtitle {
    font-size: 24px;
    line-height: 1.45;
    color: rgba(255,255,255,0.78);
    margin-bottom: 36px;
    max-width: 620px;
}

.sponsor-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* RIGHT */

.sponsors-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sponsor-card {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.3s;
    box-shadow: 0 16px 40px rgba(3, 8, 20, 0.22);
}

.sponsor-card:hover {
    transform: translateY(-6px);
    border-color: rgba(234,88,12,0.28);
    box-shadow: 0 24px 54px rgba(3, 8, 20, 0.28);
}

.sponsor-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.sponsor-card p {
    font-size: 17px;
    line-height: 1.4;
    color: rgba(255,255,255,0.72);
}

/* MOBILE */

@media (max-width: 900px) {
    .sponsors-container {
        grid-template-columns: 1fr;
    }

    .sponsors-section {
        padding: 90px 20px;
    }
}

/* SOCIALS */

.socials-section {
    padding: 120px 60px;
    position: relative;
    background:
        radial-gradient(circle at 20% 30%, rgba(37,99,235,0.08), transparent 35%),
        radial-gradient(circle at 80% 40%, rgba(91,33,182,0.08), transparent 35%);
}

.socials-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.socials-title {
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
}

.socials-title span {
    background: linear-gradient(
        90deg,
        #c4b5fd 0%,
        #a78bfa 40%,
        #7c3aed 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.socials-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* GRID */

.socials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.social-card {
    text-decoration: none;
    padding: 34px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.3s;
    box-shadow: 0 16px 40px rgba(3, 8, 20, 0.22);
    min-height: 220px;
    color: white;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 54px rgba(3, 8, 20, 0.28);
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

.social-icon svg {
    width: 54px;
    height: 54px;
}

/* BRAND COLORS */

.youtube-icon {
    color: #DC2626;
}

.telegram-icon {
    color: #2563EB;
}

.tiktok-icon {
    color: #A78BFA;
}

.instagram-icon {
    color: #EA580C;
}

/* BRAND COLORS */

.youtube:hover {
    border-color: rgba(220,38,38,0.35);
}

.telegram:hover {
    border-color: rgba(37,99,235,0.35);
}

.tiktok:hover {
    border-color: rgba(167,139,250,0.35);
}

.instagram:hover {
    border-color: rgba(234,88,12,0.35);
}

.social-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.social-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.4;
}

/* MOBILE */

@media (max-width: 900px) {
    .socials-grid {
        grid-template-columns: 1fr;
    }

    .socials-section {
        padding: 90px 20px;
    }
}
/* FLOATING SOCIAL BUTTON */

.floating-social {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
}

.floating-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff7a1a 0%, #EA580C 100%);
    color: white;
    font-size: 34px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(234,88,12,0.28);
    transition: 0.3s;
}

.floating-btn:hover {
    transform: scale(1.08);
}

/* FLOATING MENU PREMIUM */

.floating-menu {
    position: absolute;
    bottom: 84px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.3s ease;
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* SAME STYLE AS TOP SOCIALS */

.floating-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
    padding: 16px 20px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    color: white;
    background: rgba(15, 23, 41, 0.96);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 30px rgba(3, 8, 20, 0.24);
    transition: all 0.3s ease;
}

.floating-link:hover {
    transform: translateX(-6px);
}

.floating-link-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-link-icon svg {
    width: 26px;
    height: 26px;
}

/* BRAND COLORS */

.floating-link.youtube:hover {
    border-color: rgba(220,38,38,0.5);
    box-shadow: 0 16px 34px rgba(220,38,38,0.18);
}

.floating-link.telegram:hover {
    border-color: rgba(37,99,235,0.5);
    box-shadow: 0 16px 34px rgba(37,99,235,0.18);
}

.floating-link.tiktok:hover {
    border-color: rgba(167,139,250,0.5);
    box-shadow: 0 16px 34px rgba(167,139,250,0.18);
}

.floating-link.instagram:hover {
    border-color: rgba(234,88,12,0.5);
    box-shadow: 0 16px 34px rgba(234,88,12,0.18);
}

.floating-link:hover {
    transform: translateX(-4px);
}

/* BRAND HOVER */

.floating-link.youtube:hover {
    border-color: rgba(220,38,38,0.4);
}

.floating-link.telegram:hover {
    border-color: rgba(37,99,235,0.4);
}

.floating-link.tiktok:hover {
    border-color: rgba(167,139,250,0.4);
}

.floating-link.instagram:hover {
    border-color: rgba(234,88,12,0.4);
}