/* INKOLEN.Pro - Optimized Stylesheet */

:root {
    --primary: #121826;
    --secondary: #1e293b;
    --accent: #00ff9d;
    --accent-alt: #00fb00;
    --text: #33ffff;
    --text-secondary: #94a3b8;
    --card-bg: rgba(30, 41, 59, 0.7);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 255, 157, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 228, 0.05) 0%, transparent 20%),
        linear-gradient(to bottom, var(--primary), #0a0f1a);
    min-height: 100vh;
    position: relative;
    scroll-behavior: smooth;
    cursor: none;
}

/* Show normal cursor on mobile and touch devices */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto !important;
    }

    .logo,
    .cta-button,
    #scrollToTop,
    .mobile-menu-btn,
    .close-btn {
        cursor: pointer !important;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto !important;
    }

    .logo,
    .cta-button,
    #scrollToTop,
    .mobile-menu-btn,
    .close-btn {
        cursor: pointer !important;
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 157, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 228, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

.crypto-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(18, 24, 38, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 24, 38, 0.9) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Custom cursor - Desktop only */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s;
}

.cursor.active {
    width: 60px;
    height: 60px;
    border-color: rgba(0, 255, 157, 0.4);
    background: rgba(0, 255, 157, 0.1);
}

.cursor.click {
    width: 40px;
    height: 40px;
    border-color: var(--accent-alt);
}

/* Hide cursor on touch devices and mobile */
@media (hover: none) and (pointer: coarse) {

    .cursor,
    .cursor-follower {
        display: none !important;
    }
}

@media (max-width: 768px) {

    .cursor,
    .cursor-follower {
        display: none !important;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top: 5px solid var(--accent);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(18, 24, 38, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: none;
    transition: var(--transition);
}

.logo-icon {
    width: 40px;
    height: 40px;
    transition: var(--transition);
    filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.3));
}

.logo-icon.icon-padding {
    padding: 8px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 20px rgba(0, 255, 157, 0.2),
        inset 0 0 20px rgba(0, 255, 157, 0.05);
}

.logo:hover .logo-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 255, 157, 0.6));
}

.logo:hover .logo-icon.icon-padding {
    background: rgba(0, 255, 157, 0.2);
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow:
        0 0 30px rgba(0, 255, 157, 0.4),
        inset 0 0 30px rgba(0, 255, 157, 0.1);
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 24px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    transition: var(--transition);
}

.logo:hover .logo-text {
    text-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
    transform: translateX(2px);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.hero-title {
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
    }

    100% {
        text-shadow: 0 0 25px rgba(0, 255, 157, 0.7);
    }
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: none;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

/* Section Styling */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    margin: 15px auto 0;
    border-radius: 3px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-weight: 400;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--accent);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    transition: var(--transition);
}

.service-card:hover .service-description {
    color: var(--text);
}

/* Features Section */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Tech Stack Section - Working Version */
.tech-section {
    padding: 80px 0;
    background: rgba(30, 41, 59, 0.3);
    border-top: 1px solid rgba(0, 255, 157, 0.1);
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.tech-section-title {
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.tech-section-title::after {
    content: '';
    display: block;
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.tech-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;

    /* Glass effect */
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 20px;
    padding: 60px 70px; /* Extra padding to accommodate hover effects */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 255, 157, 0.15);

    position: relative;
    width: auto;
    max-width: 90vw;
    margin: 0 auto;
    box-sizing: border-box;
    
    /* Completely prevent layout shifts and container movement */
    contain: layout style paint;
    isolation: isolate;
    height: 160px; /* Fixed height instead of min-height */
    overflow: visible; /* Allow hover effects to show outside */
}

.tech-icons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.5), transparent);
}

.tech-icons::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.3), transparent);
}

.tech-icons .tech-icon {
    width: 48px;
    height: 48px;
    /* Green filter for default state - enhanced green effect */
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(3207%) hue-rotate(130deg) brightness(101%) contrast(101%);
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border 0.3s ease;
    padding: 20px;
    border-radius: 50%;
    background: rgba(0, 255, 157, 0.1);
    border: 2px solid rgba(0, 255, 157, 0.3);
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: contain;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
}

.tech-icons .tech-icon::before {
    position: relative;
    z-index: 2;
}

.tech-icons .tech-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent), var(--accent-alt));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.tech-icons .tech-icon:hover {
    /* Remove filters to show original colors */
    filter: brightness(1) sepia(0) hue-rotate(0deg) saturate(1) contrast(1) drop-shadow(0 0 20px rgba(0, 255, 157, 0.8));
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.6);
    border-color: var(--accent);
    background: rgba(0, 255, 157, 0.2);
    border-width: 3px;
    z-index: 10; /* Ensure hover effect stays above other elements */
}

.tech-icons .tech-icon:hover::after {
    opacity: 0.15;
}

/* Keyboard focus support for tech icons */
.tech-icons .tech-icon:focus,
.tech-icons .tech-icon.keyboard-focus {
    outline: 3px solid var(--accent);
    outline-offset: 5px;
    filter: brightness(1) sepia(0) hue-rotate(0deg) saturate(1) contrast(1) drop-shadow(0 0 20px rgba(0, 255, 157, 0.8));
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.6);
    border-color: var(--accent);
    background: rgba(0, 255, 157, 0.2);
    border-width: 3px;
}

/* Mobile responsive adjustments for tech icons */
@media (max-width: 768px) {
    .tech-section-title {
        font-size: 28px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .tech-icons {
        gap: 20px;
        padding: 20px 25px;
        flex-wrap: wrap;
        justify-content: center;
        height: auto; /* Allow flexible height on mobile */
        min-height: 120px;
    }
    
    .tech-icons .tech-icon {
        width: 40px;
        height: 40px;
        padding: 15px;
    }
    
    .tech-icons .tech-icon:hover {
        transform: translateY(-5px) scale(1.05);
    }
}

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 17px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 157, 0.2), transparent);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--accent);
    box-shadow:
        0 0 30px rgba(0, 255, 157, 0.4),
        0 0 60px rgba(0, 255, 157, 0.2),
        inset 0 1px 0 rgba(0, 255, 157, 0.2);
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow:
            0 0 30px rgba(0, 255, 157, 0.4),
            0 0 60px rgba(0, 255, 157, 0.2),
            inset 0 1px 0 rgba(0, 255, 157, 0.2);
    }

    100% {
        box-shadow:
            0 0 40px rgba(0, 255, 157, 0.6),
            0 0 80px rgba(0, 255, 157, 0.3),
            inset 0 1px 0 rgba(0, 255, 157, 0.3);
    }
}

.pricing-card.popular::before {
    opacity: 1;
    background: linear-gradient(45deg,
            rgba(0, 255, 157, 0.3),
            rgba(0, 251, 0, 0.3),
            rgba(0, 255, 157, 0.3));
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% {
        background: linear-gradient(45deg,
                rgba(0, 255, 157, 0.3),
                rgba(0, 251, 0, 0.3),
                rgba(0, 255, 157, 0.3));
    }

    50% {
        background: linear-gradient(45deg,
                rgba(0, 251, 0, 0.3),
                rgba(0, 255, 157, 0.3),
                rgba(0, 251, 0, 0.3));
    }

    100% {
        background: linear-gradient(45deg,
                rgba(0, 255, 157, 0.3),
                rgba(0, 251, 0, 0.3),
                rgba(0, 255, 157, 0.3));
    }
}

.pricing-card.popular::after {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% {
        box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
    }

    100% {
        box-shadow: 0 0 25px rgba(0, 255, 157, 0.8);
    }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover::before {
    opacity: 0.7;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 255, 157, 0.5),
        0 0 100px rgba(0, 255, 157, 0.3);
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-weight: 400;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Telegram Section */
.telegram-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.telegram-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 157, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.telegram-icon {
    font-size: 60px;
    color: var(--accent);
    margin-bottom: 20px;
}

.telegram-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-weight: 400;
}

.telegram-description {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.6;
}

.telegram-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.telegram-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.5);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(45deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.contact-details h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-cta {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-cta:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
    background: var(--primary);
    padding: 20px 0;
    border-top: 1px solid rgba(0, 255, 157, 0.1);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Scroll to Top Button */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    color: var(--primary);
    border: none;
    cursor: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
    z-index: 99;
    transition: var(--transition);
}

#scrollToTop:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 25px rgba(0, 255, 157, 0.8);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: none;
    z-index: 101;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--accent);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: rgba(18, 24, 38, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 18px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: var(--transition);
    background: rgba(30, 41, 59, 0.4);
    border-left: 3px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav a:hover {
    color: var(--accent);
    background: rgba(0, 255, 157, 0.1);
    transform: translateX(-5px);
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 28px;
    cursor: none;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile menu overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Logo */
.mobile-logo {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
}

.mobile-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
    }

    100% {
        text-shadow: 0 0 20px rgba(0, 255, 157, 0.6);
    }
}

/* Mobile Telegram Bot Button - Enhanced Compatibility */
.mobile-tg-bot {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 157, 0.2);
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tg-bot-btn {
    /* Flexbox with fallbacks */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    /* Fallback for older browsers */
    text-align: center;
    vertical-align: middle;

    /* Background with fallbacks */
    background: #00ff9d;
    /* Fallback */
    background: -webkit-linear-gradient(left, #00ff9d, #00fb00);
    background: -moz-linear-gradient(left, #00ff9d, #00fb00);
    background: -o-linear-gradient(left, #00ff9d, #00fb00);
    background: linear-gradient(90deg, #00ff9d, #00fb00);

    color: #121826;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;

    /* Border radius with fallbacks */
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;

    /* Transitions with fallbacks */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

    /* Box shadow with fallbacks */
    -webkit-box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    -moz-box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);

    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    /* Touch device optimizations */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    /* Minimum height for touch targets */
    min-height: 48px;
    line-height: 1.2;
}

/* Fallback for non-flexbox browsers */
.tg-bot-btn:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.tg-bot-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transition: left 0.5s ease;
    -moz-transition: left 0.5s ease;
    -o-transition: left 0.5s ease;
    transition: left 0.5s ease;
    z-index: 1;
}

.tg-bot-btn:hover,
.tg-bot-btn:focus,
.tg-bot-btn:active {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);

    -webkit-box-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
    -moz-box-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.5);

    outline: none;
}

.tg-bot-btn:hover::after,
.tg-bot-btn:focus::after {
    left: 100%;
}

.tg-bot-btn i {
    font-size: 18px;
    margin-right: 8px;
    position: relative;
    z-index: 2;
    display: inline-block;
    vertical-align: middle;
}

.tg-bot-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    display: inline-block;
    vertical-align: middle;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    .mobile-tg-bot {
        margin-top: 25px;
        padding-top: 15px;
    }

    .tg-bot-btn {
        font-size: 15px;
        padding: 12px 18px;
        min-height: 44px;
    }

    .tg-bot-btn i {
        font-size: 16px;
        margin-right: 6px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .tg-bot-btn {
        font-size: 14px;
        padding: 10px 15px;
        min-height: 40px;
    }

    .tg-bot-btn i {
        font-size: 14px;
        margin-right: 5px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .tg-bot-btn {
        border: 2px solid #00ff9d;
        background: #00ff9d !important;
        color: #000 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .tg-bot-btn {
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

    .tg-bot-btn::after {
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

    .tg-bot-btn:hover {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}



/* Light Theme Variables */
body.light-theme {
    --primary: #f8fafc;
    --secondary: #e2e8f0;
    --accent: #00ff9d;
    --accent-alt: #00fb00;
    --text: #1e293b;
    --text-secondary: #64748b;
    --card-bg: rgba(255, 255, 255, 0.8);
}

body.light-theme .crypto-grid {
    background:
        linear-gradient(rgba(226, 232, 240, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.9) 1px, transparent 1px);
}

body.light-theme header {
    background: rgba(248, 250, 252, 0.95);
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .mobile-nav {
    background: rgba(248, 250, 252, 0.98);
}

body.light-theme .preloader {
    background: var(--primary);
}

body.light-theme .loader {
    border: 5px solid rgba(30, 41, 59, 0.2);
    border-top: 5px solid var(--accent);
}

/* Light Theme Tech Section */
body.light-theme .tech-section {
    background: rgba(226, 232, 240, 0.3);
    border-top: 1px solid rgba(0, 255, 157, 0.2);
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .tech-icons {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 255, 157, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 157, 0.15);
}

body.light-theme .tech-icons::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.6), transparent);
}

body.light-theme .tech-icons::after {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.4), transparent);
}

body.light-theme .tech-icons i {
    color: var(--text-secondary);
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .tech-icons i:hover {
    color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
    border-color: var(--accent);
}

/* Light Theme Service Cards */
body.light-theme .service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Light Theme Pricing Cards */
body.light-theme .pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.light-theme .pricing-card.popular {
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
}

/* Light Theme Telegram Section */
body.light-theme .telegram-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
}

/* Light Theme Contact Section */
body.light-theme .contact-icon {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .contact-cta {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .contact-cta:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Light Theme Mobile Navigation */
body.light-theme .mobile-nav {
    background: rgba(248, 250, 252, 0.98);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .mobile-nav a {
    background: rgba(226, 232, 240, 0.4);
    color: var(--text);
}

body.light-theme .mobile-nav a:hover {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent);
}

body.light-theme .lang-btn,
body.light-theme .theme-btn {
    background: rgba(226, 232, 240, 0.6);
    color: var(--text-secondary);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .lang-btn:hover,
body.light-theme .theme-btn:hover {
    background: rgba(0, 255, 157, 0.1);
    color: var(--text);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 62px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 56px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .telegram-container {
        padding: 40px 20px;
    }

    .telegram-buttons {
        flex-direction: column;
    }

    .pricing-card.popular::after {
        top: 15px;
        right: -30px;
        padding: 4px 30px;
    }

    section {
        padding: 80px 0;
    }

    /* Tech icons mobile responsive */
    .tech-section {
        padding: 60px 0;
    }

    .tech-icons {
        gap: 30px;
        padding: 20px 30px;
    }

    .tech-icons i {
        font-size: 36px;
        width: 60px;
        height: 60px;
        padding: 15px;
    }

    /* Mobile pricing fixes */
    .pricing-container {
        gap: 30px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin-bottom: 20px;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    /* Mobile navigation fixes */
    .mobile-nav {
        width: 85%;
        max-width: 320px;
        padding: 70px 25px 25px;
    }

    .mobile-settings {
        margin-top: 25px;
        padding-top: 15px;
    }

    .language-options,
    .theme-toggle {
        gap: 6px;
    }

    .lang-btn,
    .theme-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 55px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .container {
        padding: 0 20px;
    }

    .telegram-title {
        font-size: 28px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Extra small mobile fixes */
    .tech-icons {
        gap: 20px;
        padding: 15px 20px;
    }

    .tech-icons i {
        font-size: 32px;
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    .mobile-nav {
        width: 90%;
        padding: 60px 20px 20px;
    }

    .pricing-card {
        padding: 25px 15px;
    }

    .pricing-price {
        font-size: 36px;
    }
}

eg,
transparent,
rgba(0, 255, 157, 0.4),
transparent);
}

body.light-theme .tech-icons i {
    color: var(--text-secondary);
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .tech-icons i:hover {
    color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
    border-color: var(--accent);
}

/* Light Theme Service Cards */
body.light-theme .service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Light Theme Pricing Cards */
body.light-theme .pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.light-theme .pricing-card.popular {
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
}

/* Light Theme Telegram Section */
body.light-theme .telegram-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
}

/* Light Theme Contact Section */
body.light-theme .contact-icon {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .contact-cta {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .contact-cta:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 62px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 56px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .telegram-container {
        padding: 40px 20px;
    }

    .telegram-buttons {
        flex-direction: column;
    }

    .pricing-card.popular::after {
        top: 15px;
        right: -30px;
        padding: 4px 30px;
    }

    section {
        padding: 80px 0;
    }

    /* Tech icons mobile responsive */
    .tech-section {
        padding: 60px 0;
    }

    .tech-icons {
        gap: 30px;
    }

    .tech-icons i {
        font-size: 36px;
        width: 60px;
        height: 60px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .container {
        padding: 0 20px;
    }

    .telegram-title {
        font-size: 28px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

eg,
transparent,
rgba(0, 255, 157, 0.4),
transparent);
}

body.light-theme .tech-icons i {
    color: var(--text-secondary);
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .tech-icons i:hover {
    color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
    border-color: var(--accent);
}

/* Light Theme Service Cards */
body.light-theme .service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Light Theme Pricing Cards */
body.light-theme .pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.light-theme .pricing-card.popular {
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
}

/* Light Theme Telegram Section */
body.light-theme .telegram-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
}

/* Light Theme Contact Section */
body.light-theme .contact-icon {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .contact-cta {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .contact-cta:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 62px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 56px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .telegram-container {
        padding: 40px 20px;
    }

    .telegram-buttons {
        flex-direction: column;
    }

    .pricing-card.popular::after {
        top: 15px;
        right: -30px;
        padding: 4px 30px;
    }

    section {
        padding: 80px 0;
    }

    /* Tech icons mobile responsive */
    .tech-section {
        padding: 60px 0;
    }

    .tech-icons {
        gap: 30px;
    }

    .tech-icons i {
        font-size: 36px;
        width: 60px;
        height: 60px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .container {
        padding: 0 20px;
    }

    .telegram-title {
        font-size: 28px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

eg,
tra nsparent,
rgba(0, 255, 157, 0.4),
transparent);
}

body.light-theme .tech-icons i {
    color: var(--text-secondary);
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .tech-icons i:hover {
    color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
    border-color: var(--accent);
}

/* Light Theme Service Cards */
body.light-theme .service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Light Theme Pricing Cards */
body.light-theme .pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.light-theme .pricing-card.popular {
    box-shadow:
        0 0 30px rgba(0, 255, 157, 0.3),
        0 0 60px rgba(0, 255, 157, 0.15);
}

/* Light Theme Telegram Section */
body.light-theme .telegram-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
}

/* Light Theme Contact Section */
body.light-theme .contact-icon {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .contact-cta {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .contact-cta:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Light Theme Mobile Navigation */
body.light-theme .mobile-nav {
    background: rgba(248, 250, 252, 0.98);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .mobile-nav a {
    background: rgba(226, 232, 240, 0.4);
    color: var(--text);
}

body.light-theme .mobile-nav a:hover {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent);
}

body.light-theme .lang-btn,
body.light-theme .theme-btn {
    background: rgba(226, 232, 240, 0.6);
    color: var(--text-secondary);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .lang-btn:hover,
body.light-theme .theme-btn:hover {
    background: rgba(0, 255, 157, 0.1);
    color: var(--text);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 62px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 56px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .telegram-container {
        padding: 40px 20px;
    }

    .telegram-buttons {
        flex-direction: column;
    }

    .pricing-card.popular::after {
        top: 15px;
        right: -30px;
        padding: 4px 30px;
    }

    section {
        padding: 80px 0;
    }

    /* Tech icons mobile responsive */
    .tech-section {
        padding: 60px 0;
    }

    .tech-icons {
        gap: 30px;
        padding: 20px 30px;
    }

    .tech-icons i {
        font-size: 36px;
        width: 60px;
        height: 60px;
        padding: 15px;
    }

    /* Mobile pricing fixes */
    .pricing-container {
        gap: 30px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin-bottom: 20px;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(0, 255, 157, 0.4);
    }

    /* Mobile navigation fixes */
    .mobile-nav {
        width: 85%;
        max-width: 320px;
        padding: 70px 25px 25px;
    }

    .mobile-settings {
        margin-top: 25px;
        padding-top: 15px;
    }

    .language-options,
    .theme-toggle {
        gap: 6px;
    }

    .lang-btn,
    .theme-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 55px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .container {
        padding: 0 20px;
    }

    .telegram-title {
        font-size: 28px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Extra small mobile fixes */
    .tech-icons {
        gap: 20px;
        padding: 15px 20px;
    }

    .tech-icons i {
        font-size: 32px;
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    .mobile-nav {
        width: 90%;
        padding: 60px 20px 20px;
    }

    .pricing-card {
        padding: 25px 15px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .lang-btn,
    .theme-btn {
        padding: 5px 8px;
        font-size: 10px;
        min-width: 50px;
    }

    .mobile-language h4,
    .mobile-theme h4 {
        font-size: 13px;
    }
}

en t;
}

.lang-btn:hover,
.theme-btn:hover {
    background: rgba(0, 255, 157, 0.15);
    border-color: rgba(0, 255, 157, 0.5);
    color: var(--text);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 157, 0.2);
}

.lang-btn.active,
.theme-btn.active {
    background: -webkit-linear-gradient(left, var(--accent), var(--accent-alt));
    background: -moz-linear-gradient(left, var(--accent), var(--accent-alt));
    background: -o-linear-gradient(left, var(--accent), var(--accent-alt));
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    border-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
}

.lang-btn .flag {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    width: 16px;
    height: 16px;
    text-align: center;
}

.theme-btn i {
    font-size: 14px;
    width: 14px;
    height: 14px;
    display: inline-block;
    text-align: center;
    line-height: 1;
}

/* Light Theme Variables */
body.light-theme {
    --primary: #f8fafc;
    --secondary: #e2e8f0;
    --accent: #00ff9d;
    --accent-alt: #00fb00;
    --text: #1e293b;
    --text-secondary: #64748b;
    --card-bg: rgba(255, 255, 255, 0.8);
}

body.light-theme .crypto-grid {
    background:
        linear-gradient(rgba(226, 232, 240, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.9) 1px, transparent 1px);
}

body.light-theme header {
    background: rgba(248, 250, 252, 0.95);
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .mobile-nav {
    background: rgba(248, 250, 252, 0.98);
}

body.light-theme .preloader {
    background: var(--primary);
}

body.light-theme .loader {
    border: 5px solid rgba(30, 41, 59, 0.2);
    border-top: 5px solid var(--accent);
}

/* Light Theme Tech Section */
body.light-theme .tech-section {
    background: rgba(226, 232, 240, 0.3);
    border-top: 1px solid rgba(0, 255, 157, 0.2);
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .tech-icons {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 255, 157, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 157, 0.15);
}

body.light-theme .tech-icons::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.6), transparent);
}

body.light-theme .tech-icons::after {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.4), transparent);
}

body.light-theme .tech-icons i {
    color: var(--text-secondary);
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .tech-icons i:hover {
    color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
    border-color: var(--accent);
}

/* Light Theme Service Cards */
body.light-theme .service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Light Theme Pricing Cards */
body.light-theme .pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.light-theme .pricing-card.popular {
    box-shadow:
        0 0 30px rgba(0, 255, 157, 0.3),
        0 0 60px rgba(0, 255, 157, 0.15);
}

/* Light Theme Telegram Section */
body.light-theme .telegram-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
}

/* Light Theme Contact Section */
body.light-theme .contact-icon {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .contact-cta {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .contact-cta:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Light Theme Mobile Navigation */
body.light-theme .mobile-nav {
    background: rgba(248, 250, 252, 0.98);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .mobile-nav a {
    background: rgba(226, 232, 240, 0.4);
    color: var(--text);
}

body.light-theme .mobile-nav a:hover {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent);
}

body.light-theme .lang-btn,
body.light-theme .theme-btn {
    background: rgba(226, 232, 240, 0.6);
    color: var(--text-secondary);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

body.light-theme .lang-btn:hover,
body.light-theme .theme-btn:hover {
    background: rgba(0, 255, 157, 0.1);
    color: var(--text);
}

/* Enhanced Mobile Compatibility - Fallbacks for older browsers */
@supports not (display: flex) {
    .tech-icons {
        display: block;
        text-align: center;
    }

    .tech-icons i {
        display: inline-block;
        margin: 10px;
    }

    .language-options,
    .theme-toggle {
        display: block;
        text-align: center;
    }

    .lang-btn,
    .theme-btn {
        display: inline-block;
        margin: 5px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 62px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 56px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .telegram-container {
        padding: 40px 20px;
    }

    .telegram-buttons {
        flex-direction: column;
    }

    .pricing-card.popular::after {
        top: 15px;
        right: -30px;
        padding: 4px 30px;
    }

    section {
        padding: 80px 0;
    }

    /* Tech icons mobile responsive - Enhanced */
    .tech-section {
        padding: 60px 0;
    }

    .tech-icons {
        gap: 25px;
        padding: 20px 25px;
        max-width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .tech-icons i {
        font-size: 32px;
        width: 55px;
        height: 55px;
        padding: 12px;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    /* Mobile pricing fixes */
    .pricing-container {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px 20px;
        max-width: 100%;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin-bottom: 20px;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(0, 255, 157, 0.4);
    }

    /* Mobile navigation fixes - Enhanced */
    .mobile-nav {
        width: 85%;
        max-width: 320px;
        padding: 70px 25px 25px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-settings {
        margin-top: 25px;
        padding-top: 15px;
    }

    .language-options,
    .theme-toggle {
        gap: 6px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .lang-btn,
    .theme-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 60px;
        min-height: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .container {
        padding: 0 20px;
    }

    .telegram-title {
        font-size: 28px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Extra small mobile fixes */
    .tech-icons {
        gap: 15px;
        padding: 15px 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .tech-icons i {
        font-size: 28px;
        width: 45px;
        height: 45px;
        padding: 10px;
    }

    .mobile-nav {
        width: 90%;
        padding: 60px 20px 20px;
    }

    .pricing-card {
        padding: 25px 15px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .lang-btn,
    .theme-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 50px;
        min-height: 32px;
    }

    .mobile-language h4,
    .mobile-theme h4 {
        font-size: 13px;
    }

    .lang-btn .flag {
        font-size: 14px;
    }

    .theme-btn i {
        font-size: 12px;
    }
}

/* Ultra-wide screen support */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 84px;
    }

    .tech-icons {
        gap: 60px;
        padding: 40px 60px;
    }

    .tech-icons i {
        font-size: 56px;
        width: 90px;
        height: 90px;
        padding: 25px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .tech-icons {
        border-width: 1px;
    }

    .lang-btn,
    .theme-btn {
        border-width: 1px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .pricing-card.popular {
        animation: none;
    }

    .pricing-card.popular::before {
        animation: none;
    }

    .pricing-card.popular::after {
        animation: none;
    }
}

/* Print styles */
@media print {

    .cursor,
    .cursor-follower,
    #particle-canvas,
    .mobile-nav,
    .mobile-overlay,
    #scrollToTop {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .tech-icons {
        background: white !important;
        border: 1px solid black !important;
        box-shadow: none !important;
    }
}
/* Policy Pages Styles */
.policy-page {
    padding-top: 140px;
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.policy-title {
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-section {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 157, 0.2);
}

.policy-section h2 {
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent);
    position: relative;
    padding-bottom: 10px;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    border-radius: 2px;
}

.policy-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin: 25px 0 15px 0;
    color: var(--text);
}

.policy-section p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    text-align: justify;
}

.policy-section ul {
    margin: 15px 0 15px 20px;
    color: var(--text-secondary);
}

.policy-section li {
    margin-bottom: 8px;
    position: relative;
}

.policy-section li::marker {
    color: var(--accent);
}

.policy-section a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.policy-section a:hover {
    color: var(--accent-alt);
    border-bottom-color: var(--accent-alt);
}

.contact-info {
    padding: 20px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text);
}

.contact-info strong {
    color: var(--accent);
}

.policy-footer {
    text-align: center;
    margin: 60px 0 20px 0;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin: 0 15px;
}

.policy-link:hover {
    color: var(--accent-alt);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

/* Mobile Responsive for Policy Pages */
@media (max-width: 768px) {
    .policy-page {
        padding-top: 120px;
    }
    
    .policy-title {
        font-size: 36px;
    }
    
    .policy-header {
        margin-bottom: 40px;
        padding: 30px 20px;
    }
    
    .policy-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
    
    .policy-section p {
        text-align: left;
    }
    
    .policy-footer {
        margin: 40px 0 30px 0;
        padding: 20px;
    }
    
    .policy-link {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 28px;
    }
    
    .policy-section {
        padding: 20px 15px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    .policy-section ul {
        margin-left: 15px;
    }
}

/* Dark background sections for policy pages */
.policy-page .dark-bg {
    background: rgba(30, 41, 59, 0.3);
    border-top: 1px solid rgba(0, 255, 157, 0.1);
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

/* Enhanced readability for policy content */
.policy-section strong {
    color: var(--accent);
    font-weight: 600;
}

.policy-section em {
    color: var(--text);
    font-style: italic;
}

/* Smooth scrolling for policy page anchors */
.policy-page a[href^="#"] {
    scroll-behavior: smooth;
}

/* Print styles for policy pages */
@media print {
    .policy-page {
        background: white !important;
        color: black !important;
    }
    
    .policy-section {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
    
    .policy-title,
    .policy-section h2,
    .policy-section h3 {
        color: black !important;
    }
    
    .policy-section a {
        color: #0066cc !important;
        text-decoration: underline !important;
    }
    
    header,
    footer,
    .mobile-nav,
    .mobile-overlay,
    #scrollToTop,
    .cursor,
    .cursor-follower,
    .crypto-grid {
        display: none !important;
    }
}/* Te
ch Stack Section */
.tech-section {
    padding: 80px 0;
    background: rgba(30, 41, 59, 0.3);
    border-top: 1px solid rgba(0, 255, 157, 0.1);
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.tech-section-title {
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.tech-section-title::after {
    content: '';
    display: block;
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.tech-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 20px;
    padding: 60px 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 255, 157, 0.15);
    position: relative;
    width: auto;
    max-width: 90vw;
    margin: 0 auto;
    box-sizing: border-box;
    contain: layout style paint;
    isolation: isolate;
    height: 160px;
    overflow: visible;
}

.tech-icons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.5), transparent);
}

.tech-icons::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.3), transparent);
}

.tech-icon {
    width: 48px;
    height: 48px;
    filter: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(0, 255, 157, 0.2);
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
    object-fit: contain;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 157, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.tech-icon::before {
    position: relative;
    z-index: 2;
}

.tech-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent), var(--accent-alt));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.tech-icon:hover {
    filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 25px rgba(0, 255, 157, 1)) drop-shadow(0 0 50px rgba(0, 255, 157, 0.6));
    transform: translate(8px, -15px) scale(1.15) rotateY(10deg) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 255, 157, 0.4),
        0 0 60px rgba(0, 255, 157, 0.8),
        inset 0 0 30px rgba(0, 255, 157, 0.2),
        -8px 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
    background: 
        radial-gradient(circle at center, rgba(0, 255, 157, 0.3), rgba(0, 255, 157, 0.1)),
        rgba(30, 41, 59, 0.9);
    border-width: 3px;
    z-index: 10;
    animation: neonPulse 1.5s ease-in-out infinite alternate;
}

.tech-icon:hover::after {
    opacity: 0.15;
}

/* Neon pulse animation for tech icons */
@keyframes neonPulse {
    0% {
        box-shadow: 
            0 25px 50px rgba(0, 255, 157, 0.4),
            0 0 60px rgba(0, 255, 157, 0.8),
            inset 0 0 30px rgba(0, 255, 157, 0.2),
            -8px 15px 30px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 
            0 30px 60px rgba(0, 255, 157, 0.6),
            0 0 80px rgba(0, 255, 157, 1),
            inset 0 0 40px rgba(0, 255, 157, 0.3),
            -8px 15px 35px rgba(0, 0, 0, 0.6);
    }
}

/* Tech Icon Popunder */
.tech-icon-wrapper {
    position: relative;
    display: inline-block;
}

.tech-popunder {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 24, 38, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 12px 20px;
    margin-top: 15px;
    font-family: 'Electrone', 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 255, 157, 0.3),
        inset 0 1px 0 rgba(0, 255, 157, 0.2);
    pointer-events: none;
}

.tech-popunder::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--accent);
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.3));
}

.tech-popunder.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    animation: popunderGlow 2s ease-in-out infinite alternate;
}

@keyframes popunderGlow {
    0% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(0, 255, 157, 0.3),
            inset 0 1px 0 rgba(0, 255, 157, 0.2);
    }
    100% {
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.6),
            0 0 60px rgba(0, 255, 157, 0.5),
            inset 0 1px 0 rgba(0, 255, 157, 0.3);
    }
}

/* Keyboard focus support for tech icons */
.tech-icon:focus,
.tech-icon.keyboard-focus {
    outline: 3px solid var(--accent);
    outline-offset: 5px;
    filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 25px rgba(0, 255, 157, 1)) drop-shadow(0 0 50px rgba(0, 255, 157, 0.6));
    transform: translate(8px, -15px) scale(1.15) rotateY(10deg) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 255, 157, 0.4),
        0 0 60px rgba(0, 255, 157, 0.8),
        inset 0 0 30px rgba(0, 255, 157, 0.2),
        -8px 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
    background: 
        radial-gradient(circle at center, rgba(0, 255, 157, 0.3), rgba(0, 255, 157, 0.1)),
        rgba(30, 41, 59, 0.9);
    border-width: 3px;
}

/* Mobile responsive adjustments for tech icons */
@media (max-width: 768px) {
    .tech-section-title {
        font-size: 28px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .tech-icons {
        gap: 20px;
        padding: 20px 25px;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        min-height: 120px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        padding: 15px;
    }
    
    .tech-icon:hover {
        transform: translate(5px, -8px) scale(1.05);
    }
    
    .tech-popunder {
        font-size: 12px;
        padding: 8px 16px;
        margin-top: 10px;
    }
}