:root {
    --bg-color: #121316;
    --text-primary: #FFFFFF;
    --text-secondary: #9AA0A6;
    --accent-green: #A2E173;
    --accent-yellow: #F0DC6D;
    --accent-gradient: linear-gradient(90deg, var(--accent-yellow), var(--accent-green));
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --neon-cyan: #00f3ff;
    --neon-pink: #ff00ff;
    --neon-glow: rgba(0, 243, 255, 0.4);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    width: 100%;
    max-width: 100vw;
    padding: 0;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.percentage {
    font-size: 5.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px var(--accent-green), 0 0 30px var(--accent-green);
    margin: 0;
    font-variant-numeric: tabular-nums;
    letter-spacing: -2px;
    position: relative;
    z-index: 10;
}

.percentage::after {
    content: '%';
    font-size: 2rem;
    margin-left: 5px;
    vertical-align: middle;
    opacity: 0.9;
    color: var(--accent-green);
    text-shadow: 0 0 15px var(--accent-green);
}

@keyframes pulsePercent {
    0% { text-shadow: 0 0 10px var(--accent-green), 0 0 20px var(--accent-green); opacity: 0.8; }
    100% { text-shadow: 0 0 25px var(--accent-green), 0 0 45px var(--accent-green); opacity: 1; }
}

.loader-wrapper {
    position: relative;
    width: min(340px, 90vw);
    height: min(340px, 90vw);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.loader-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) rotate(-90deg);
    filter: drop-shadow(0 0 15px rgba(162, 225, 115, 0.4));
}

.ring {
    fill: none;
    stroke-linecap: round;
}

.ring-track {
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 6;
}

.ring-progress-adv {
    stroke: url(#neonGradient);
    stroke-width: 8;
    stroke-dasharray: 628;
    stroke-dashoffset: 628;
    transition: stroke-dashoffset 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.ring-dashed-inner {
    stroke: var(--accent-green);
    stroke-width: 2;
    stroke-dasharray: 4 12;
    opacity: 0.6;
    animation: spinClockwise 10s linear infinite;
    transform-origin: center;
}

.ring-segmented-outer {
    stroke: var(--accent-green);
    stroke-width: 3;
    stroke-dasharray: 30 70 150 40;
    opacity: 0.8;
    animation: spinCounter 15s linear infinite;
    transform-origin: center;
}

.ring-orbital-dot {
    stroke: var(--accent-green);
    stroke-width: 6;
    stroke-dasharray: 1 800;
    stroke-linecap: round;
    animation: spinClockwise 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    transform-origin: center;
    filter: drop-shadow(0 0 10px var(--accent-green));
}

.loader-status {
    position: absolute;
    bottom: min(-50px, -5vh);
    width: 100%;
    text-align: center;
    font-size: clamp(0.7rem, 2.5vw, 0.95rem);
    letter-spacing: clamp(2px, 1.5vw, 6px);
    color: var(--accent-green);
    text-transform: uppercase;
    font-weight: 500;
    animation: pulseText 2s ease-in-out infinite;
}

@keyframes spinClockwise {
    100% { transform: rotate(360deg); }
}

@keyframes spinCounter {
    100% { transform: rotate(-360deg); }
}

@keyframes pulseText {
    0%, 100% { opacity: 0.5; text-shadow: 0 0 8px var(--accent-green); }
    50% { opacity: 1; text-shadow: 0 0 20px var(--accent-green); }
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    transform: translateZ(0); /* Hardware acceleration hint */
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
    will-change: transform; /* Hint browser to optimize animation */
}

.blob-1 {
    top: -15%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(162, 225, 115, 0.4) 0%, rgba(162, 225, 115, 0) 70%);
    animation-delay: 0s;
}

.blob-2 {
    top: 15%;
    right: 35%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(240, 220, 109, 0.4) 0%, rgba(240, 220, 109, 0) 70%);
    animation-delay: -5s;
}

.blob-3 {
    bottom: -15%;
    left: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(162, 225, 115, 0.2) 0%, rgba(162, 225, 115, 0) 70%);
    animation-delay: -10s;
}

.blob-4 {
    top: 50%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 85, 80, 0.4) 0%, rgba(43, 85, 80, 0) 70%);
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -60px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--text-secondary);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-green);
}

.btn-outline {
    padding: 0.7rem 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5% 6rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 1.8rem;
    letter-spacing: -1.5px;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #111;
    padding: 1.1rem 2.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(162, 225, 115, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(162, 225, 115, 0.4);
}

.btn-text {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.btn-text:hover {
    opacity: 0.8;
}

.arrow {
    transition: transform 0.3s;
}

.btn-text:hover .arrow {
    transform: translateX(6px);
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 580px;
    height: 700px;
    border-radius: 30px;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.circular-badge {
    position: absolute;
    top: 5%;
    right: -2%;
    width: 120px;
    height: 120px;
    animation: rotate 15s linear infinite;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-badge svg {
    width: 90%;
    height: 90%;
    fill: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Stats Bar */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem 5rem;
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 2rem auto 6rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatars {
    display: flex;
    margin-left: 1rem;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #1a1c20;
    margin-left: -15px;
    background-size: cover;
    background-position: center;
}

.bg-1 { background-color: #f7a399; }
.bg-2 { background-color: #9cd08f; }
.bg-3 { background-color: #8faed0; }
.bg-4 { background-color: #d08fce; }
.bg-5 { background-color: #e4c580; }

.eth-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.star {
    color: var(--accent-yellow);
    font-size: 1.6rem;
}

/* Trending Section */
.trending-section {
    display: flex;
    padding: 2rem 5% 8rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trending-grid {
    flex: 1.1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.grid-item {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/4.5;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #1a1c20;
}

.grid-item:hover {
    transform: translateY(-12px) scale(1.03);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
    transition: transform 0.4s ease, background 0.4s ease;
}

.glass-label {
    background: rgba(255, 255, 255, 0.08); /* slightly transparent white */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.grid-item:hover .image-label {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12); /* Brighter on hover */
}

/* Varying background colors for the cards behind images similar to the reference */
.grid-item:nth-child(1) { background-color: #4a5d4a; }
.grid-item:nth-child(2) { background-color: #43545c; }
.grid-item:nth-child(3) { background-color: #634b4b; }
.grid-item:nth-child(4) { background-color: #5c5c43; }


.trending-info {
    flex: 0.9;
    max-width: 480px;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
}

.trending-info h2 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.trending-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 5% 8rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    padding: 4rem 5rem;
    align-items: center;
}

.contact-info {
    flex: 1;
    max-width: 450px;
}

.contact-info h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-methods-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.contact-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-type {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-value {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    white-space: nowrap;
}

.social-card {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.8rem;
}

.mb-small {
    margin-bottom: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent-gradient);
    color: #111;
    transform: translateY(-3px);
    border-color: transparent;
}

/* Text-Based Project Cards */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: left;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-yellow));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.project-card:hover::before {
    opacity: 1;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 4px 20px rgba(255,255,255,0.02);
    color: var(--accent-green);
}

.project-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
}

.project-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.project-features li {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    background: rgba(162, 225, 115, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(162, 225, 115, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-top: 1rem;
    }
    .hero-content {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-visual {
        justify-content: center;
        width: 100%;
    }
    .stats-bar {
        flex-wrap: wrap;
        gap: 2.5rem;
        padding: 2.5rem;
        margin-top: -2rem;
        justify-content: center;
        text-align: center;
    }
    .stat-item {
        align-items: center;
        width: 100%;
        gap: 0.5rem;
    }
    .stat-value {
        justify-content: center;
    }
    .eth-price {
        align-items: center;
        width: 100%;
    }
    .trending-section {
        flex-direction: column;
        gap: 3rem;
    }
    .trending-info {
        text-align: center;
        max-width: 100%;
        order: -1; /* Move title above grid on smaller screens */
    }
    .contact-container {
        flex-direction: column;
        padding: 3rem 2rem;
        text-align: center;
    }
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 5%;
    }
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .hero-image {
        height: 500px;
    }
    .circular-badge {
        width: 90px;
        height: 90px;
        right: 0;
        top: 0;
    }
    .trending-info h2, .contact-info h2 {
        font-size: 3rem;
    }
    .trending-grid {
        grid-template-columns: 1fr;
    }
    .stat-value {
        font-size: 2.2rem;
    }
    .glass-panel {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    .social-card {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none; /* In a real app, use a hamburger menu UI here. For landing stability, hide direct links if too cramped, but we'll try to just scale them down below */
    }
    .btn-outline {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
    }
    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -0.5px;
    }
    .hero p {
        font-size: 0.95rem;
    }
    .percentage {
        font-size: clamp(3.5rem, 15vw, 5.5rem);
    }
    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    .btn-primary {
        width: 100%;
        text-align: center;
    }
    .hero-image {
        height: 380px;
    }
    .stat-item {
        width: 100%;
    }
    .trending-info h2, .contact-info h2 {
        font-size: 2.4rem;
    }
    .contact-section {
        padding: 4rem 5% 4rem;
    }
    .project-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    .project-card {
        padding: 1.5rem;
    }
    .project-card h3 {
        font-size: 1.2rem;
    }
    .btn-primary {
        padding: 1rem 2rem;
    }
    .previous-products-section h2 {
        font-size: 2rem !important;
    }
    /* Ensure bot images are responsive and not cut off on mobile */
    .project-card > div[style*="height: 220px"] {
        height: 180px !important;
    }
    /* Make the floating buttons slightly smaller on mobile to avoid blocking content */
    .floating-whatsapp, .floating-telegram {
        width: 50px;
        height: 50px;
    }
    .floating-whatsapp svg, .floating-telegram svg {
        width: 28px;
        height: 28px;
    }
    .floating-whatsapp {
        bottom: 90px;
        right: 20px;
    }
    .floating-telegram {
        bottom: 20px;
        right: 20px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* Floating Telegram Button */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #2AABEE;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(42, 171, 238, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-telegram:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(42, 171, 238, 0.6);
}

.floating-telegram svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* --- Content Protection --- */
body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}
