@charset "utf-8";
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: #000;
    color: #006145;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.neural-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 15% 85%, rgba(0, 130, 100, 0.7) 0%, transparent 50%), radial-gradient(circle at 85% 15%, rgba(0, 150, 110, 0.8) 0%, transparent 50%), radial-gradient(circle at 45% 60%, rgba(0, 107, 173, 0.6) 0%, transparent 50%), radial-gradient(circle at 70% 40%, rgba(34, 139, 34, 0.4) 0%, transparent 50%), linear-gradient(135deg, #0a0a0a 0%, #1b2b3d 50%, #000000 100%);
    animation: backgroundPulse 14s ease-in-out infinite;
}
 @keyframes backgroundPulse {
     0%, 100% {
         filter: brightness(0.9) saturate(1.4) hue-rotate(0deg);
    }
     33% {
         filter: brightness(1.1) saturate(1.7) hue-rotate(15deg);
    }
     66% {
         filter: brightness(1.0) saturate(1.5) hue-rotate(-10deg);
    }
}
.falling-blocks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: drop-shadow(5px 5px 25px rgba(0, 0, 0, 0.65));
}
 .shape {
     position: absolute;
     animation: floatShape 20s linear infinite;
}
 .shape:nth-child(1) {
     width: 100px;
     height: 100px;
     left: 10%;
     animation-delay: 0s;
     border-color: rgba(0, 200, 145, 0.4);
}
 .shape:nth-child(2) {
     width: 80px;
     height: 80px;
     top: 25%;
     left: 80%;
     animation-delay: -5s;
     border-color: rgba(0, 158, 25, 0.4);
}
 .shape:nth-child(3) {
     width: 80px;
     height: 80px;
     left: 30%;
     animation-delay: -10s;
     transform: rotate(45deg);
     border-color: rgba(0, 255, 179, 0.4);
}
.shape:nth-child(4) {
    width: 120px;
    height: 120px;
    left: 50%;
    animation-delay: -15s;
    border-color: rgba(0, 255, 179, 0.4);
}
.shape:nth-child(5) {
    width: 120px;
    height: 120px;
    left: 60%;
    top: -30%;
    animation-delay: -20s;
    border-color: rgba(0, 255, 179, 0.4);
}
.shape:nth-child(6) {
    width: 120px;
    height: 120px;
    left: 40%;
    top: -20%;
    animation-delay: -25s;
    border-color: rgba(0, 255, 179, 0.4);
}
 @keyframes floatShape {
     from {
         transform: translateY(100vh) rotate(0deg);
         opacity: 0;
    }
     10%, 90% {
         opacity: 1;
    }
     to {
         transform: translateY(-100px) rotate(360deg);
         opacity: 0;
    }
}
 .neural-lines {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
}
.neural-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00c891, transparent);
    height: 1px;
    animation: neuralPulse 3s ease-in-out infinite;
}
    .neural-line:nth-child(1) {
        top: 20%;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, transparent, #009dff, transparent);
        animation-delay: 0s;
    }
    .neural-line:nth-child(2) {
        top: 60%;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, transparent, #00ffb3, transparent);
        animation-delay: -1s;
    }
    .neural-line:nth-child(3) {
        top: 40%;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, transparent, #00c891, transparent);
        animation-delay: -2s;
    }
 @keyframes neuralPulse {
     0%, 100% {
         opacity: 0.2;
         transform: scaleX(0.5);
    }
     50% {
         opacity: 1;
         transform: scaleX(1);
    }
}
 .glass {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
 .glass-strong {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 25px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 96%;
    max-width: 1200px;
    padding: 18px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 161, 118, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(163, 230, 255, 0.15);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
    header.scrolled {
        background: rgba(163, 191, 255, 0.12);
        backdrop-filter: blur(30px);
        border-color: rgba(63, 252, 205, 0.2);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(163, 255, 223, 0.1);
    }
 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #00f2b5, #00cef2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    animation: logoGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}
 .logo:hover {
     transform: scale(1.05);
}
.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px #a3faff);
}
 @keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px #a3faff);
    }
    50% {
        filter: drop-shadow(0 0 20px #a3faff);
    }
}
 .nav-links {
     display: flex;
     list-style: none;
     gap: 12px;
}
 .nav-links a {
     color: #ffffff;
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     padding: 12px 20px;
     border-radius: 15px;
     font-size: 0.95rem;
     font-weight: 500;
     letter-spacing: 0.02em;
}
 .nav-links a.active {
     color: #ffffff;
     background: linear-gradient(135deg, rgba(163, 255, 211, 0.15), rgba(105, 255, 190, 0.1));
     box-shadow: 0 0 20px rgba(140, 245, 217, 0.4), inset 0 1px 0 rgba(140, 245, 163, 0.2), 0 4px 15px rgba(140, 221, 245, 0.2);
     border: 1px solid rgba(163, 255, 211, 0.3);
     text-shadow: 0 0 10px rgba(163, 255, 211, 0.8);
     transform: translateY(-1px);
}
 .nav-links a.active::after {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(45deg, #009191, #00966f, #00578c, #28a128);
     background-size: 400% 400%;
     border-radius: 17px;
     z-index: -2;
     animation: borderGlow 3s ease infinite;
}
.nav-links a.external-link::after {
    content: " ↗";
    font-size: 0.8em;
    vertical-align: super;
}
.form-message {
    position: relative;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 16px;
    text-align: center;
    font-weight: 500;
    overflow: hidden;
}
.nav-links-active-like {
    position: relative;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(163, 255, 211, 0.15), rgba(105, 255, 190, 0.1));
    box-shadow: 0 0 20px rgba(140, 245, 217, 0.4), inset 0 1px 0 rgba(140, 245, 163, 0.2), 0 4px 15px rgba(140, 221, 245, 0.2);
    border: 1px solid rgba(163, 255, 211, 0.3);
    text-shadow: 0 0 10px rgba(163, 255, 211, 0.8);
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 17px;
    text-align: center;
    font-weight: 500;
    overflow: hidden;
}
.nav-links-active-like::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3dd900, #2fa800);
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}
.form-message.error {
    background: linear-gradient(45deg, #d10000, #a80000);
    color: #ffffff;
    box-shadow: none;
}
 @keyframes borderGlow {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 8px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
}
 .mobile-menu-toggle:hover {
     background: rgba(163, 255, 211, 0.1);
     box-shadow: 0 0 15px rgba(163, 255, 211, 0.3);
}
.mobile-nav a.active {
    background: linear-gradient(135deg, rgba(0, 255, 145, 0.1), rgba(105, 213, 255, 0.15));
    color: #a3ffce;
    border: 1px solid rgba(0, 255, 208, 0.4);
    box-shadow: 0 0 25px rgba(163, 255, 211, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(163, 255, 211, 0.6);
}
 .hamburger-line {
     width: 25px;
     height: 3px;
     background: linear-gradient(45deg, #00ff80, #00fbff);
     margin: 3px 0;
     border-radius: 2px;
     transition: all 0.3s ease;
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
     transform: rotate(45deg) translate(9px, 9px);
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
     opacity: 0;
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -6px);
}
 .mobile-nav {
     position: fixed;
     top: 90px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 400px;
     background: rgba(0, 0, 0, 0.95);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     padding: 30px;
     display: none;
     flex-direction: column;
     gap: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
 .mobile-nav.active {
     display: flex;
     animation: slideDown 0.3s ease-out;
}
 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateX(-50%) translateY(-20px);
    }
     to {
         opacity: 1;
         transform: translateX(-50%) translateY(0);
    }
}
.mobile-nav a {
    width: 100%;
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
 .mobile-nav a:hover {
     background: rgba(163, 255, 211, 0.1);
     color: #e0a3ff;
     box-shadow: 0 0 20px rgba(163, 255, 211, 0.3);
     transform: translateY(-2px);
}
 .hero {
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
}
 .hero::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 60%;
     height: 60%;
     background: radial-gradient(circle, rgba(163, 255, 211, 0.04) 0%, transparent 70%);
     transform: translate(-50%, -50%);
     animation: heroGlow 10s ease-in-out infinite;
     z-index: -1;
}
 @keyframes heroGlow {
     0%, 100% {
         transform: translate(-50%, -50%) scale(1) rotate(0deg);
         opacity: 0.6;
    }
     50% {
         transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
         opacity: 1;
    }
}
 .hero-content {
     max-width: 1000px;
     padding: 80px 40px;
	 margin-top: 120px;
     animation: heroAppear 2.5s ease-out;
     position: relative;
     background: none;
     backdrop-filter: none;
     border: none;
     box-shadow: none;
     border-radius: 0;
}
 @keyframes heroAppear {
     from {
         opacity: 0;
         transform: translateY(60px) scale(0.96);
    }
     to {
         opacity: 1;
         transform: translateY(0) scale(1);
    }
}
.hero-subtitle {
    font-size: 0.9rem;
    color: #00ffff;
    margin-bottom: 25px;
    opacity: 0;
    animation: slideInFromLeft 1.2s ease 0.3s forwards;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    position: relative;
    display: inline-block;
    font-weight: 300;
}
    .hero-subtitle::before, .hero-subtitle::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 40px;
        height: 1px;
        background: linear-gradient(90ded, transparent, #00ffff, transparent);
        animation: linePulse 3s ease infinite;
    }
 .hero-subtitle::before {
     left: -60px;
}
 .hero-subtitle::after {
     right: -60px;
}
 @keyframes linePulse {
     0%, 100% {
         opacity: 0.4;
         transform: scaleX(0.8);
    }
     50% {
         opacity: 1;
         transform: scaleX(1.2);
    }
}
 @keyframes slideInFromLeft {
     from {
         opacity: 0;
         transform: translateX(-40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #00ffff 0%, #00b585 30%, #009eff 60%, #3ef73e 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 8s ease infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    text-shadow: none;
    opacity: 0;
    animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}
 @keyframes modernGradient {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
 @keyframes slideInFromRight {
     from {
         opacity: 0;
         transform: translateX(40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .hero-description {
     max-width: 700px;
     margin: 40px auto 50px;
     opacity: 0;
     animation: fadeInScale 1.2s ease 0.9s forwards;
     text-align: center;
}
    .hero-description p {
        font-size: 1.2rem;
        color: #cccccc;
        line-height: 1.7;
        margin-bottom: 0;
        font-weight: 300;
    }
 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.95);
    }
     to {
         opacity: 1;
         transform: scale(1);
    }
}
 @keyframes slideUpStagger {
     from {
         opacity: 0;
         transform: translateY(30px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .cta-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
     opacity: 0;
     animation: buttonSlideUp 1.2s ease 1.5s forwards;
}
 @keyframes buttonSlideUp {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #00ff91, #00cef7);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(163, 255, 211, 0.2);
}
    .cta-button.secondary {
        background: transparent;
        border: 2px solid #00ff91;
        color: #00ff91;
        box-shadow: 0 4px 15px rgba(163, 255, 211, 0.1);
    }
 .cta-button:hover {
     transform: translateY(-4px) scale(1.02);
     box-shadow: 0 12px 30px rgba(163, 255, 211, 0.3);
}
 .cta-button.secondary:hover {
     background: rgba(163, 255, 211, 0.08);
     box-shadow: 0 12px 30px rgba(163, 255, 211, 0.2);
}
 .features {
     padding: 150px 0;
     position: relative;
     overflow: hidden;
}
 .features::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
     animation: rotate 20s linear infinite;
     z-index: -1;
}
 @keyframes rotate {
     from {
         transform: rotate(0deg);
    }
     to {
         transform: rotate(360deg);
    }
}
 .section-title {
     text-align: center;
     font-size: clamp(2.5rem, 6vw, 4rem);
     margin-bottom: 80px;
     color: #00ffff;
     position: relative;
}
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, #00ff91, #00cef7);
        border-radius: 2px;
    }
 .features-container {
     max-width: 1240px;
     margin: 0 auto;
     padding: 0 20px;
}
 .diagonal-grid {
     display: flex;
     flex-direction: column;
     gap: 60px;
}
 .feature-row {
     display: flex;
     align-items: center;
     gap: 80px;
     position: relative;
}
 .feature-row:nth-child(even) {
     flex-direction: row-reverse;
}
 .feature-content {
     flex: 1;
     padding: 50px;
     transform: skew(-5deg);
     transition: all 0.4s ease;
}
 .feature-content:hover {
     transform: skew(-5deg) translateY(-10px);
     box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
}
 .feature-visual {
     flex: 1;
     height: 300px;
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     transition: all 0.4s ease;
}
 .feature-visual:hover {
     transform: scale(1.05);
     box-shadow: 0 20px 40px rgba(163, 255, 211, 0.3);
}
 .feature-visual::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(163, 255, 211, 0.1), rgba(105, 255, 190, 0.1));
     z-index: 1;
     transition: all 0.4s ease;
}
 .feature-visual:hover::before {
     background: linear-gradient(45deg, rgba(163, 255, 211, 0.2), rgba(105, 255, 190, 0.2));
}
.feature-row:nth-child(1) .feature-visual {
    background-image: url('/assets/img/main-images/base-mechanics.png');
}
.feature-row:nth-child(2) .feature-visual {
    background-image: url('/assets/img/main-images/unique-mechanics.png');
}
.feature-row:nth-child(3) .feature-visual {
    background-image: url('/assets/img/main-images/mechanisms.png');
}
.feature-row:nth-child(4) .feature-visual {
    background-image: url('/assets/img/main-images/top.png');
}
.feature-row:nth-child(5) .feature-visual {
    background-image: url('/assets/img/main-images/calculator.png');
}
 .feature-content h3 {
     font-size: 2.2rem;
     margin-bottom: 20px;
     color: #ffffff;
}
 .feature-content p {
     font-size: 1.1rem;
     color: #cccccc;
     line-height: 1.8;
}
 .contact {
     padding: 150px 0;
     position: relative;
}
 .contact-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
}
.contact-info {
    padding: 60px 40px;
    position: relative;
    transition: all 0.4s ease;
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 255, 255, 0.25);
    border-color: rgba(0, 255, 255, 0.25);
}
 .contact-info::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(0, 255, 255, 0.1), transparent 70%);
     animation: pulse 4s ease-in-out infinite;
     z-index: -1;
}
 @keyframes pulse {
     0%, 100% {
         transform: scale(1);
         opacity: 0.5;
    }
     50% {
         transform: scale(1.1);
         opacity: 1;
    }
}
.contact-form {
    padding: 50px 40px;
    transition: all 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 255, 255, 0.25);
    border-color: rgba(0, 255, 255, 0.25);
}

 .form-group {
     margin-bottom: 30px;
     position: relative;
}
 .form-group input, .form-group textarea {
     width: 100%;
     padding: 15px 20px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     color: #ffffff;
     font-family: inherit;
     font-size: 1rem;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
}
 .form-group input:focus, .form-group textarea:focus {
     outline: none;
     border-color: #00ffff;
     box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
     background: rgba(255, 255, 255, 0.1);
}
 .form-group input::placeholder, .form-group textarea::placeholder {
     color: #d9d9d9;
}
 .submit-btn {
     width: 100%;
     padding: 18px;
     background: linear-gradient(45deg, #00913f, #007691);
     border: none;
     border-radius: 10px;
     color: #ffffff;
     font-weight: bold;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
}
 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}
 .contact-info h3 {
     font-size: 2.5rem;
     color: #00ffff;
     margin-bottom: 30px;
}
 .contact-info p {
     font-size: 1.2rem;
     color: #cccccc;
     line-height: 1.7;
     margin-bottom: 30px;
}
 .social-links {
     display: flex;
     gap: 20px;
     margin-top: 40px;
}
 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     border-radius: 15px;
     color: #00ffff;
     text-decoration: none;
     font-size: 1.5rem;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
}
 .social-links a::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
     transition: left 0.5s ease;
}
 .social-links a:hover::before {
     left: 100%;
}
 .social-links a:hover {
     transform: translateY(-5px) scale(1.1);
     box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}
 footer {
     text-align: center;
     padding: 60px 20px 40px;
     border-top: 1px solid rgba(163, 255, 211, 0.2);
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(20px);
}
 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
}
 .footer-links {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-bottom: 30px;
     flex-wrap: wrap;
}
 .footer-links a {
     color: #00ffd0;
     text-decoration: none;
     font-size: 0.9rem;
     transition: all 0.3s ease;
     position: relative;
     padding: 8px 0;
}
 .footer-links a:hover {
     color: #a3eeff;
     text-shadow: 0 0 10px rgba(163, 255, 211, 0.5);
}
 .footer-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 1px;
     background: linear-gradient(90deg, #00ffd0, #00ff77);
     transition: width 0.3s ease;
}
 .footer-links a:hover::after {
     width: 100%;
}
 .footer-copyright {
     color: #888;
     font-size: 0.9rem;
     margin-bottom: 15px;
}
 .footer-design {
     color: #666;
     font-size: 0.85rem;
     margin-top: 20px;
}
 .footer-design a {
     color: #00ff91;
     text-decoration: none;
     transition: all 0.3s ease;
}
 .footer-design a:hover {
     color: #00ffd0;
     text-shadow: 0 0 8px rgba(0, 255, 145, 0.5);
}
 @media (max-width: 1024px) {
	 .feature-row {
        flex-direction: column;
        gap: 40px;
		min-height: 720px;
    }

    .feature-row:nth-child(even) {
        flex-direction: column;
    }
	.feature-content {
    	flex: 0;
	}
    .feature-visual {
        height: 250px;
        width: 100%;
    }
     .contact-container {
         grid-template-columns: 1fr;
         gap: 40px;
    }

     .timeline-line {
         left: 30px;
    }
     .timeline-item, .timeline-item:nth-child(even) {
         justify-content: flex-start;
         padding-left: 80px;
         padding-right: 0;
    }
     .timeline-dot {
         left: 30px;
    }
     .timeline-content {
         max-width: 100%;
    }
}
@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}
 @media (max-width: 768px) {
     .hero-content {
         padding: 40px 20px;
    }
     .hero h1 {
         font-size: clamp(1.8rem, 8vw, 3rem);
    }
     .hero-description p {
         font-size: 1.1rem;
    }
     .hero-subtitle::before, .hero-subtitle::after {
         width: 25px;
    }
     .hero-subtitle::before {
         left: -35px;
    }
     .hero-subtitle::after {
         right: -35px;
    }
     .cta-buttons {
         flex-direction: column;
         align-items: center;
         gap: 15px;
    }
     .cta-button {
         width: 100%;
         max-width: 280px;
         text-align: center;
    }  
    .hexagon-container {
        gap: 20px;
    }
     .section-title {
         margin-bottom: 60px;
    }
     .features, .showcase, .timeline, .contact {
         padding: 80px 0;
    }
     .timeline {
         padding: 60px 0;
    }
     .footer-links {
         gap: 20px;
         margin-bottom: 25px;
    }
     .footer-links a {
         font-size: 0.85rem;
    }
}
 ::-webkit-scrollbar {
     width: 12px;
}
 ::-webkit-scrollbar-track {
     background: rgba(0, 0, 0, 0.8);
     border-radius: 6px;
}
 ::-webkit-scrollbar-thumb {
     background: linear-gradient(45deg, #00ffff, #00ff8c);
     border-radius: 6px;
     box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
 ::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(45deg, #00ffff, #00ff8c);
     box-shadow: 0 0 15px rgba(255, 0, 128, 0.7);
}
 .status {
     padding: 90px 0;
     position: relative;
     overflow: hidden;
}
 .status::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
     animation: rotate 20s linear infinite;
     z-index: -1;
}
.status-block {
    padding: 10px;
    border-radius: 20px;
}
.status-block {
    transition: all 0.4s ease;
}

.status-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 255, 255, 0.25);
    border-color: rgba(0, 255, 255, 0.25);
}
.status-loader {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
}
.status-loading {
    color: #00ffff;
    text-align: center;
    font-size: 1.1rem;
    padding: 5px 0;
}

.status-error {
    color: #ff3333;
    text-align: center;
    font-size: 1.1rem;
    padding: 5px 0;
}

.status-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
    color: #eee;
}

.status-tag {
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 600;
    color: #000;
}

.status-tag.online {
    background: #00ff91;
}

.status-tag.offline {
    background: #ff4d4d;
}

.status-tag.maint {
    background: #ffd700;
}
.status-wrapper {
    margin-top: 10px;
}
.status-block {
    margin-top: 40px;
    padding: 20px 30px;
    border-radius: 20px;
}

.status-loader {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
}
.online-graph {
    margin-top: 40px;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

#onlineChart {
    width: 100%;
    height: 600px;
}
.status-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.status-block {
    padding: 30px 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

    .status-block:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 255, 255, 0.25);
        border-color: rgba(0, 255, 255, 0.25);
    }
.status-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.05rem;
    color: #eee;
}
.status-tag {
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 600;
    color: #000;
}

    .status-tag.online {
        background: #00ff91;
    }

    .status-tag.offline {
        background: #ff4d4d;
    }

    .status-tag.maint {
        background: #ffd700;
    }

.online-graph {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-top: 30px;
    padding-top: 20px;
    min-height: 525px;
    height: 525px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

    .online-graph canvas {
        width: 100%;
        height: 260px;
    }


@media (max-width: 900px) {
    .status-columns {
        grid-template-columns: 1fr;
    }
}
.status-container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; 
}
.status-container h3 {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 2.5rem);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00ffff 0%, #00b585 30%, #009eff 60%, #3ef73e 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 8s ease infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    text-shadow: none;
    opacity: 0;
    animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}
@media (max-width: 900px) {

    .status-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 10px;
    }

    .status-block {
        padding: 25px 20px !important;
        border-radius: 16px;
    }

    .online-graph {
        margin-top: 25px;
        padding: 20px 15px;
    }

    #onlineChart {
        height: 500px !important;
    }
}

/* === COUNTDOWN POPUP (новый таймер) === */

@font-face {
    font-family: 'Minecraft';
    src: url('/assets/fonts/minecraft.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.cd-value,
.cd-sep {
    font-family: 'Minecraft', sans-serif;
}
.countdown-popup {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 120;
    padding: 22px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(0, 215, 180, 0.25);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 145, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(22px);
    animation: countdownPopupIn 0.4s ease-out;
}

.countdown-popup.hidden {
    display: none !important;
}

.countdown-close {
    z-index: 999999 !important;
    pointer-events: auto !important;
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    color: #a3ffce;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.countdown-close:hover {
    background: rgba(0, 255, 145, 0.12);
    box-shadow: 0 0 12px rgba(0, 255, 145, 0.4);
    transform: translateY(-1px);
}

.countdown-clock {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7fffe0;
}

/* Цифры */

.countdown-digits {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.cd-value {
    font-size: 2.4rem;
    line-height: 1;
    color: #00ffb3;
    text-shadow: 0 0 12px rgba(0, 255, 145, 0.6);
}

.cd-caption {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8fffe0;
    opacity: 0.8;
    margin-top: 4px;
}

.cd-sep {
    font-size: 2rem;
    line-height: 1;
    color: #00ffb3;
    padding: 0 2px;
}

#countdown-popup {
    position: fixed !important;
    z-index: 99999 !important;
}
.countdown-popup * {
    pointer-events: auto;
}
.countdown-digits {
    pointer-events: none;
}

.countdown-close {
    pointer-events: auto !important;
}

/* Плавное появление */

@keyframes countdownPopupIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* === ЖЁСТКАЯ ФИКСАЦИЯ ПОПАПА НА МОБИЛКАХ === */

@media (max-width: 768px) {
    #countdown-popup {
        position: fixed !important;
        bottom: 20px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;

        width: auto !important;
        max-width: 90% !important;

        padding: 18px 20px !important;
        margin: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        background: rgba(0, 0, 0, 0.85) !important;
        border-radius: 18px !important;

        z-index: 999999 !important;

        /* Ломаем влияние .glass */
        position: fixed !important;
        inset: auto auto 20px 50% !important;
    }

    /* Убираем влияние глобальных стилей */
    #countdown-popup * {
        transform: none !important;
        max-width: 100% !important;
    }
	
    .cd-value {
        font-size: 1.7rem !important;
    }

    .cd-caption {
        font-size: 0.55rem !important;
    }

    .cd-sep {
        font-size: 1.4rem !important;
    }

    .cd-block {
        min-width: 48px !important;
    }

    .countdown-popup {
        padding: 16px 18px !important;
    }
}


