 :root {
            --neon-green: #7cfc00;
            --bright-green: #7cfc00;
            --light-green: #7cfc00;
            --blue-accent: #77e1ff;
            --purple-accent: #c073ff;
            --yellow-accent: #ffed00;
            --dark-bg: #0B0E1F;
            --card-bg: rgba(15, 25, 40, 0.5);

        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Comfortaa', sans-serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: white;
            overflow-x: hidden;
        }
        
        /* Звездный фон */
        #stars-container {
            position: fixed;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
        }
        
        /* Футуристическая сетка */
        .grid-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.2;
            pointer-events: none;
        }
        
        /* Неоновый текст */
        .neon-text {
            text-shadow: 0 0 10px var(--bright-green), 0 0 20px var(--bright-green), 0 0 30px var(--bright-green);
        }
        
        .accent-text {
            background: linear-gradient(to right, var(--blue-accent), var(--neon-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(124, 252, 0, 0.5);
        }
        
        .header {
            position: relative;
            z-index: 10;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            background: rgba(5, 10, 20, 0.6);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(119, 225, 255, 0.3);
        }
        
        .logo {
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(to right, var(--neon-green), var(--blue-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(124, 252, 0, 0.5);
            margin-left: 40px;
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            margin-right: 40px;
        }
        
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-link:hover {
            color: var(--bright-green);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--neon-green), var(--blue-accent));
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn {
            background: linear-gradient(45deg, var(--bright-green), var(--blue-accent));
            border: none;
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
            box-shadow: 0 0 20px rgba(89, 255, 58, 0.3);
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(89, 255, 58, 0.5);
        }
        
        .btn-register {
            background: linear-gradient(45deg, #41ff14, #14b8ff);
            padding: 12px 30px;
            font-size: 18px;
            font-weight: 700;
            box-shadow: 0 0 20px rgba(89, 255, 58, 0.4);
        }
        
        /* Основной контент */
        .teacher-world {
            position: relative;
            z-index: 1;
            padding: 60px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .world-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .world-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--blue-accent), var(--bright-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(124, 252, 0, 0.3);
        }
        
        .world-header p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 900px;
            margin: 0 auto 30px;
            line-height: 1.6;
            background: rgba(15, 30, 60, 0.4);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid rgba(119, 225, 255, 0.2);
        }
        
        /* Раздел карточек возможностей */
        .features-cards {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding: 20px 0;
        }
        
        .feature-card {
            position: relative;
            background: rgba(15, 25, 40, 0.4);
            border-radius: 20px;
            overflow: hidden;
            height: 350px;
            display: flex;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 2px;
            background: var(--gradient);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.7;
            transition: opacity 0.4s ease;
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        .feature-card:nth-child(1)::before { --gradient: linear-gradient(135deg, #1a4c80, var(--blue-accent)); }
        .feature-card:nth-child(2)::before { --gradient: linear-gradient(135deg, #1d7a00, var(--bright-green)); }
        .feature-card:nth-child(3)::before { --gradient: linear-gradient(135deg, #5c1e9a, var(--purple-accent)); }
        .feature-card:nth-child(4)::before { --gradient: linear-gradient(135deg, #00809e, #00e1ff); }
        .feature-card:nth-child(5)::before { --gradient: linear-gradient(135deg, #9e5000, #ffa600); }
        .feature-card:nth-child(6)::before { --gradient: linear-gradient(135deg, #00806b, #00ffdd); }
        .feature-card:nth-child(7)::before { --gradient: linear-gradient(135deg, #4e8000, #c4ff00); }
        .feature-card:nth-child(8)::before { --gradient: linear-gradient(135deg, #980069, #ff76d6); }
        .feature-card:nth-child(9)::before { --gradient: linear-gradient(135deg, #806c00, #ffed00); }
        .feature-card:nth-child(10)::before { --gradient: linear-gradient(135deg, #5e0080, #d67aff); }
        
        .feature-info {
            width: 35%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            position: relative;
            overflow: hidden;
        }
        
        .feature-icon i {
            font-size: 36px;
        }
        
        .feature-card:nth-child(1) .feature-icon { color: var(--blue-accent); }
        .feature-card:nth-child(2) .feature-icon { color: var(--bright-green); }
        .feature-card:nth-child(3) .feature-icon { color: var(--purple-accent); }
        .feature-card:nth-child(4) .feature-icon { color: #00e1ff; }
        .feature-card:nth-child(5) .feature-icon { color: #ffa600; }
        .feature-card:nth-child(6) .feature-icon { color: #00ffdd; }
        .feature-card:nth-child(7) .feature-icon { color: #c4ff00; }
        .feature-card:nth-child(8) .feature-icon { color: #ff76d6; }
        .feature-card:nth-child(9) .feature-icon { color: var(--yellow-accent); }
        .feature-card:nth-child(10) .feature-icon { color: #d67aff; }
        
        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .feature-card:nth-child(1) h3 { color: var(--blue-accent); }
        .feature-card:nth-child(2) h3 { color: var(--bright-green); }
        .feature-card:nth-child(3) h3 { color: var(--purple-accent); }
        .feature-card:nth-child(4) h3 { color: #00e1ff; }
        .feature-card:nth-child(5) h3 { color: #ffa600; }
        .feature-card:nth-child(6) h3 { color: #00ffdd; }
        .feature-card:nth-child(7) h3 { color: #c4ff00; }
        .feature-card:nth-child(8) h3 { color: #ff76d6; }
        .feature-card:nth-child(9) h3 { color: var(--yellow-accent); }
        .feature-card:nth-child(10) h3 { color: #d67aff; }
        
        .feature-card p {
            font-size: 16px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }
        
        .feature-slider {
            width: 65%;
            position: relative;
            overflow: hidden;
            border-radius: 0 20px 20px 0;
        }
        
        .slides {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            transition: all 0.5s ease;
            opacity: 0;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        .slider-arrows {
            position: absolute;
            width: 100%;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            z-index: 3;
        }
        
        .slider-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .slider-arrow:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        
        /* Анимации для страницы */
        .fade-in {
            animation: fadeIn 1s ease forwards;
            opacity: 0;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .delayed-1 { animation-delay: 0.2s; }
        .delayed-2 { animation-delay: 0.4s; }
        .delayed-3 { animation-delay: 0.6s; }
        .delayed-4 { animation-delay: 0.8s; }
        .delayed-5 { animation-delay: 1.0s; }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .feature-card {
                flex-direction: column;
                height: auto;
            }
            
            .feature-info, .feature-slider {
                width: 100%;
            }
            
            .feature-slider {
                height: 250px;
                border-radius: 0 0 20px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .world-header h1 {
                font-size: 32px;
            }
            
            .feature-card {
                flex-direction: column;
                height: auto;
            }
            
            .feature-info, .feature-slider {
                width: 100%;
            }
            
            .feature-slider {
                height: 200px;
            }
        }
        
          /* Секция "Почему выбирают WinClass" */
    .why-choose-section {
        max-width: 1200px;
        margin: 0 auto 80px;
        padding: 40px 20px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 50px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .section-header h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Метрики */
    .metrics-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .metrics-item {
        flex: 1;
        min-width: 200px;
        text-align: center;
        padding: 30px 20px;
        background: rgba(15, 25, 40, 0.4);
        border-radius: 15px;
        border: 1px solid rgba(119, 225, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .metrics-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(119, 225, 255, 0.15);
        border-color: var(--blue-accent);
    }
    
    .metric-number {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 15px;
        background: linear-gradient(to right, var(--blue-accent), var(--bright-green));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    .metric-label {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.4;
    }
    
    /* График */
    .chart-section {
        margin-bottom: 60px;
        padding: 30px;
        background: rgba(15, 25, 40, 0.4);
        border-radius: 20px;
        border: 1px solid rgba(119, 225, 255, 0.2);
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .chart-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .chart-header h3 {
        font-size: 24px;
        margin-bottom: 10px;
        color: var(--blue-accent);
    }
    
    .chart-header p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .chart-container {
        height: 400px;
        position: relative;
    }
    
    /* Преимущества */
    .benefits-section {
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .benefits-section h3 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
        color: var(--bright-green);
    }
    
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .benefit-card {
        background: rgba(15, 25, 40, 0.4);
        border-radius: 15px;
        padding: 30px;
        border: 1px solid rgba(124, 252, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(89, 255, 58, 0.15);
        border-color: var(--bright-green);
    }
    
    .benefit-icon {
        font-size: 36px;
        margin-bottom: 20px;
        color: var(--bright-green);
    }
    
    .benefit-card h4 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--light-green);
    }
    
    .benefit-card p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.5;
    }
    
    /* Отзывы */
    .testimonials-section {
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .testimonials-section h3 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
        color: var(--blue-accent);
    }
    
    .testimonials-slider {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        height: 200px;
        overflow: hidden;
    }
    
    .testimonial-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .testimonial-slide.active {
        opacity: 1;
    }
    
    .testimonial-content {
        background: rgba(15, 25, 40, 0.6);
        border-radius: 15px;
        padding: 30px;
        border: 1px solid rgba(119, 225, 255, 0.2);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .testimonial-content p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        font-style: italic;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        font-size: 16px;
        color: var(--blue-accent);
        text-align: right;
        font-weight: 600;
    }
    
    .testimonial-controls {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .testimonial-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(119, 225, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .testimonial-dot.active {
        background: var(--blue-accent);
        transform: scale(1.2);
    }
    
    /* CTA Box */
    .cta-box {
        display: flex;
        background: linear-gradient(135deg, rgba(15, 25, 40, 0.8), rgba(20, 40, 80, 0.8));
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(119, 225, 255, 0.3);
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .cta-content {
        flex: 1;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .cta-image {
        flex: 1;
        min-height: 350px;
        background-position: center;
        background-size: cover;
        position: relative;
        overflow: hidden;
    }
    
    .cta-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .cta-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
        color: white;
    }
    
    .cta-content p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
    }
    
    .cta-benefits {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .mini-benefit {
        background: rgba(89, 255, 58, 0.1);
        border-radius: 30px;
        padding: 8px 15px;
        font-size: 14px;
        color: var(--light-green);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mini-benefit i {
        color: var(--bright-green);
    }
    
    .glow-pulse {
        animation: glowPulse 2s infinite alternate;
    }
    
    @keyframes glowPulse {
        0% {
            box-shadow: 0 0 10px rgba(89, 255, 58, 0.5), 0 0 20px rgba(89, 255, 58, 0.2);
        }
        100% {
            box-shadow: 0 0 20px rgba(89, 255, 58, 0.8), 0 0 40px rgba(89, 255, 58, 0.4);
        }
    }
    
    
    
    /* Адаптивность */
    @media (max-width: 992px) {
        .cta-box {
            flex-direction: column;
        }
        
        .cta-image {
            min-height: 250px;
        }
    }
    
    @media (max-width: 768px) {
        .metrics-item {
            min-width: 100%;
        }
        
        .chart-container {
            height: 300px;
        }
        
        .benefit-card {
            text-align: center;
        }
        
        .testimonials-slider {
            height: auto;
        }
        
        .testimonial-slide {
            position: relative;
            display: none;
        }
        
        .testimonial-slide.active {
            display: block;
        }
    }
    
    
    #stars-container, 
#grid-container {
    pointer-events: none;
}

.site-footer {
    position: relative;
    z-index: 5;
}

.footer-content a {
    position: relative;
    z-index: 10;
}





/* Мобильное меню - добавить в конец файла newstyle.css */
.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 100;
    margin-right: 20px;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--bright-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    top: 14px;
}

.mobile-menu-toggle span::before {
    content: '';
    top: -8px;
}

.mobile-menu-toggle span::after {
    content: '';
    top: 8px;
}

.mobile-menu-toggle.active span {
    background: transparent;
}

.mobile-menu-toggle.active span::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active span::after {
    transform: rotate(-45deg);
    top: 0;
}

@media (max-width: 991px) {
    .header {
        padding: 15px;
        position: relative;
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-menu {
        order: 4;
        position: static;
        width: 100%;
        background: rgba(5, 10, 20, 0.95);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        margin-top: 15px;
        opacity: 0;
        border-top: 1px solid rgba(119, 225, 255, 0.2);
    }
    
    .nav-menu.active {
        max-height: 500px;
        padding: 15px 0;
        opacity: 1;
    }
    
    .auth-panel {
        order: 5;
        position: static;
        width: 100%;
        background: rgba(5, 10, 20, 0.95);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 0;
        border-top: 1px solid rgba(119, 225, 255, 0.2);
    }
    
    .auth-panel.active {
        max-height: 200px;
        padding: 15px 0;
        opacity: 1;
    }
    
    .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header .btn {
        width: 90%;
        margin: 5px auto;
    }
}








/* Стили для бейджей в неоново-салатовом градиенте */
.free-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, var(--bright-green), var(--blue-accent));
    color: white;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(89, 255, 58, 0.3);
    transform: rotate(0);
    transition: all 0.3s ease;
    animation: neonGlow 2s infinite alternate;
    white-space: nowrap;
}

@keyframes neonGlow {
    0% {
        box-shadow: 0 0 5px rgba(89, 255, 58, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(89, 255, 58, 0.8), 0 0 20px rgba(119, 225, 255, 0.4);
    }
}

.generator-card:hover .free-badge {
    transform: translateY(-5px) rotate(0);
}

/* Обязательно меняем overflow на visible для карточки */
.generator-card {
    overflow: visible !important;
}

/* Стили для кнопок "Доступно после регистрации" */
.generator-btn.registration-required {
    background: rgba(89, 255, 58, 0.15);
    border: 1px solid rgba(89, 255, 58, 0.4);
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.generator-btn.registration-required:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(89, 255, 58, 0) 0%, 
        rgba(89, 255, 58, 0.1) 50%, 
        rgba(89, 255, 58, 0) 100%);
    animation: neonShimmer 2s infinite;
}

.generator-btn.registration-required i {
    font-size: 14px;
    color: var(--bright-green);
}

@keyframes neonShimmer {
    to {
        left: 100%;
    }
}

.generator-btn.registration-required:hover {
    background: rgba(89, 255, 58, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(89, 255, 58, 0.2);
}