        /* Встроенные стили для гарантированной работы */
        body {
            background-color: #000000;
            color: #00ff00;
            font-family: 'Courier New', monospace;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .back-link {
            display: inline-block;
            padding: 5px 10px;
            background-color: transparent;
            border: 1px solid #00ff00;
            color: #00ff00;
            text-decoration: none;
            margin: 10px;
        }
       .language-switcher {
    position: absolute;
    display: flex;
    gap: 10px;
    top: 24px;
    right: 20px;
    z-index: 1000;
        }

        .lang-btn {
            width: 40px;
            height: 30px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .lang-btn:hover,
        .lang-btn.active {
            opacity: 1;
        }

        .lang-icon {
            width: 100%;
            height: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        h1 {
            text-align: center;
            margin: 20px 0;
            text-shadow: 0 0 10px #00ff00;
        }

        .intro-text {
            text-align: center;
            margin-bottom: 30px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }

        .product-card {
            border: 1px solid #00ff00;
            padding: 15px;
            background-color: rgba(0, 20, 0, 0.7);
        }

        .product-title {
            color: #00ff00;
            margin-top: 0;
            text-shadow: 0 0 5px #00ff00;
        }

        .product-description {
            margin-bottom: 15px;
        }

        .hidden-seo {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        .digiseller-container {
            margin-top: 15px;
        }

        .footer-icons {
            position: fixed;
            bottom: 20px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .tg-icon {
            background-image: url('img/telegram-white-icon.png');
        }

        .support-icon {
            background-image: url('img/support_white_icon.png');
        }

        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: 1fr;
            }
        }



.back-button {
    background-color: rgba(0, 20, 0, 0.8); /* Темно-зеленый с прозрачностью */
    color: #00ff00; /* Яркий зеленый для текста */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px; /* Уменьшенный радиус скругления */
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid #00ff00; /* Зеленая обводка */
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3); /* Легкое зеленое свечение */
    font-family: 'Courier New', monospace; /* Шрифт в стиле матрицы */
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: rgba(0, 40, 0, 0.8); /* Чуть светлее при наведении */
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.5); /* Усиление свечения при наведении */
    text-shadow: 0 0 3px #00ff00; /* Свечение текста при наведении */
}




		.support-icon {
			position: fixed;
			bottom: 20px;
			left: 20px;
			z-index: 9999;
			width: 50px;
			height: 50px;
			background-image: url('../img/support_white_icon.png'); /* убедитесь, что файл существует */
			background-size: cover;
			text-indent: -9999px;
			transition: transform 0.3s;
			display: block;
		}
		
		.support-icon:hover {
			transform: scale(1.2);
		}
