    /* --- ОБЩИЕ НАСТРОЙКИ СТРАНИЦЫ --- */
	body {
        background-color: #050505;
        color: #b0b0b0;
        font-family: 'Arial', monospace;
        margin: 0;
        padding: 20px;
    }

    .wrapper {
        max-width: 800px;
        margin: 0 auto;
    }
    
	/* --- ШАПКА И ЛОГОТИП --- */
    header {
        border-bottom: 1px solid #333;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    h1 {
        color: #fff;
        margin: 0;
    }

    .status {
        color: #00e676;
        font-weight: bold;
    }
    
	/* --- БЕГУЩАЯ СТРОКА --- */
    .ticker-text {
       color: #00e676;
       font-family: monospace;
       white-space: nowrap;
       display: inline-block;
      /* Анимация без пауз */
       animation: scroll 25s linear infinite;
       padding-left: 100%;
      }

    @keyframes scroll {
       0% { transform: translateX(0); }
       100% { transform: translateX(-100%); }
    }
    
	/* --- МЕНЮ --- */
    .nav-menu a {
        color: #b0b0b0;
        text-decoration: none;
        font-size: 0.9em;
        font-family: 'Arial', sans-serif;
        transition: color 0.3s;
    }

    .nav-menu a:hover {
        color: #00e676;
        text-decoration: none;
    }
	
	/* --- ОСНОВНОЙ БЛОК --- */
    .block {
        overflow: hidden; 
        border: 1px solid #333;
        padding: 25px;
        background: #0f0f0f;
        border-radius: 6px;
        margin-bottom: 20px;
    }

    .block:has(.dropdown) {
        overflow: visible !important;
    }

    /* --- ВЫПАДАЮЩЕЕ МЕНЮ --- */
    .dropdown {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0f0f0f;
        border: 1px solid #333;
        padding: 5px 10px;
        z-index: 9999;
        min-width: 64px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }

    .dropdown-content a {
        display: block;
        padding: 5px 0;
        color: #b0b0b0 !important;
    }

    .dropdown-content a:hover {
        color: #00e676 !important;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* --- КНОПКИ --- */
	.btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }

    /* Стиль зеленых кнопок */
    .btn {
        display: inline-block;
        padding: 12px 20px;
        min-width: 195px;
        text-align: center;
        background: #008040;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
        border: 1px solid #00e676;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn:hover {
        background: #00a850;
        border-color: #666;
        transform: translateY(-2px);
    }

    /* Стиль синих кнопок */
    .btn-blue {
        display: inline-block;
        padding: 12px 20px;
        background: #1e3a5f;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
        border: 1px solid #2196f3;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-blue:hover {
        background: #2196f3;
        border-color: #666;
        transform: translateY(-2px);
    }
    
	/* --- ТЕКСТОВЫЕ ЭЛЕМЕНТЫ --- */
    .step {
        margin: 10px 0;
        color: #d1d1d1;
    }

    code {
        background: #000;
        padding: 2px 5px;
        color: #ff9800;
    }

    /* --- ГАЛЕРЕЯ --- */
    .gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-top: 20px;
    }

    .gallery a {
        display: block;
    }

    .gallery img {
        width: 100%;
        border-radius: 4px;
        border: 1px solid #333;
        display: block;
    }
    
	/* --- ФУТЕР --- */
    footer {
        text-align: center;
        padding: 40px;
        font-size: 0.8em;
        color: #555;
    }

    /* --- МОБИЛЬНОЕ МЕНЮ --- */
    .nav-mobile-burger {
        display: none;
    }

    .mobile-menu-dropdown {
        display: none;
    }

    @media (max-width: 600px) {
    /* Настройка галереи для мобильных */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Скрытие десктопного меню */
    .block:has(.nav-menu) {
        display: none !important;
    }

    .nav-mobile-burger {
        display: block !important;
        position: fixed;
        top: 45px;
        right: 28px;
        font-size: 30px;
        color: #fff;
        cursor: pointer;
        z-index: 1000;
    }
    
	/* Настройка выпадающего списка */
    .mobile-menu-dropdown {
        display: none;
        position: fixed;
        top: 82px;
        right: 25px;
        background: #0f0f0f;
        border: 1px solid #333;
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        z-index: 999;
        border-radius: 6px;
    }

    .mobile-menu-dropdown a {
        color: #ffffff !important;
        text-decoration: none !important;
        font-family: 'Arial', sans-serif;
    }

    .mobile-menu-dropdown.active {
        display: flex !important;
    }
    }
	
	@media (max-width: 480px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    header img {
        margin: 15px 0 0 0 !important;
    }
    input[name="custom_number"] { 
        width: 100% !important; 
        box-sizing: border-box !important;
       }
    }
    
	/* --- КНОПКА "НАВЕРХ" --- */
    #backToTop {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: #333;
        color: #00e676;
        border: 1px solid #00e676;
        text-decoration: none;
        font-size: 24px;
        font-weight: bold;
        transition: 0.3s;
        z-index: 999;
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
	
    /* --- ВИЗИТКА --- */	
    .business-card-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        box-sizing: border-box;
    }

    .card {
        width: 100%;
        max-width: 422px;
        aspect-ratio: 422 / 235;
        position: relative;
        perspective: 1000px;
        border: 1px solid #fff;
        box-sizing: border-box;
    }

    .front, .back {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 1s;
        backface-visibility: hidden;
        background-color: #fff;
        overflow: hidden;
    }

    .front img, .back img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .back {transform: rotateY(180deg);}
    .card:hover .front {transform: rotateY(180deg);}
    .card:hover .back {transform: rotateY(360deg);}
    .card {-webkit-tap-highlight-color: transparent;}