        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #0a0a0a;
            color: #f0f0f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(120, 20, 60, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(218, 165, 32, 0.1) 0%, transparent 20%);
        }
        
        .container {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 50px;
        }
        
        /* Логотип */
        .logo {
            text-align: center;
            margin-bottom: 30px;
        }
		
		.logo a { text-decoration: none; }
        
        .logo-main {
            font-size: 5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #daa520 0%, #ff69b4 50%, #daa520 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 30px rgba(255, 105, 180, 0.3);
            letter-spacing: 2px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .logo-main:hover {
            text-shadow: 0 0 40px rgba(255, 105, 180, 0.5);
            transform: scale(1.02);
        }
        
        .logo-subtitle {
            font-size: 1.2rem;
            color: #b0b0b0;
            letter-spacing: 1px;
            font-weight: 300;
        }
        
        /* Таблица */
        .table-container {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 0 20px;
        }
        
        .status-table {
            width: 100%;
            max-width: 900px;
            border-collapse: collapse;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            background-color: rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(10px);
        }
        
        .status-table thead {
            background: linear-gradient(90deg, #1a0f1a, #2a1a2a, #1a0f1a);
        }
        
        .status-table th {
            padding: 22px 15px;
            text-align: center;
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            position: relative;
            border: none;
        }
        
        .status-table th:nth-child(1) {
            color: #32cd32;
            background: linear-gradient(90deg, rgba(50, 205, 50, 0.15), rgba(50, 205, 50, 0.05));
        }
        
        .status-table th:nth-child(2) {
            color: #ff69b4;
            background: linear-gradient(90deg, rgba(255, 105, 180, 0.15), rgba(255, 105, 180, 0.05));
        }
        
        .status-table th:nth-child(3) {
            color: #daa520;
            background: linear-gradient(90deg, rgba(218, 165, 32, 0.15), rgba(218, 165, 32, 0.05));
        }
        
        .status-table th:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 3px;
            border-radius: 3px;
        }
        
        .status-table th:nth-child(1):after {
            background: linear-gradient(90deg, transparent, #32cd32, transparent);
        }
        
        .status-table th:nth-child(2):after {
            background: linear-gradient(90deg, transparent, #ff69b4, transparent);
        }
        
        .status-table th:nth-child(3):after {
            background: linear-gradient(90deg, transparent, #daa520, transparent);
        }
        
        .status-table tbody tr {
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }
        
        .status-table tbody tr:last-child {
            border-bottom: none;
        }
        
        .status-table tbody tr:hover {
            background-color: rgba(255, 255, 255, 0.03);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .status-table td {
            padding: 25px 15px;
            text-align: center;
            font-size: 1.1rem;
            border-right: 1px solid rgba(255, 255, 255, 0.07);
        }
        
        .status-table td:last-child {
            border-right: none;
        }
        
        /* Столбец со статусом - КНОПКА СТАТУСА */
        .status-cell {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .status-btn {
            background: linear-gradient(135deg, #32cd32, #2aad2a);
            color: #0a0a0a;
            border: none;
            padding: 12px 25px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
            min-width: 200px;
            justify-content: center;
        }
        
        .status-btn:hover {
            background: linear-gradient(135deg, #3cf03c, #32cd32);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(50, 205, 50, 0.4);
        }
        
        .status-btn i {
            font-size: 1.2rem;
        }
        
        /* Столбец со ссылкой */
        .link-cell a {
            color: #ff69b4;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: inline-block;
            border: 1px solid rgba(255, 105, 180, 0.3);
            background-color: rgba(255, 105, 180, 0.05);
        }
        
        .link-cell a:hover {
            background-color: rgba(255, 105, 180, 0.15);
            border-color: #ff69b4;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
        }
        
        /* Столбец с кнопкой - ВСЕ КНОПКИ ОДИНАКОВЫЕ */
        .button-cell {
            text-align: center;
        }
        
        .external-btn {
            background: linear-gradient(135deg, #daa520, #b8860b);
            color: #0a0a0a;
            border: none;
            padding: 12px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
            min-width: 200px;
            justify-content: center;
        }
        
        .external-btn:hover {
            background: linear-gradient(135deg, #ffc107, #daa520);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(218, 165, 32, 0.4);
        }
        
        .external-btn i {
            font-size: 1.2rem;
        }
        
        /* Блок поддержки проекта - в стиле столбца "Действия" */
        .donation-section {
	    display: none;
            width: 100%;
            max-width: 900px;
            margin-top: 40px;
        }
        
        .donation-container {
            background: linear-gradient(90deg, rgba(218, 165, 32, 0.15), rgba(218, 165, 32, 0.05));
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(218, 165, 32, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .donation-info {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(218, 165, 32, 0.2);
        }
        
        .donation-title {
            font-size: 1.8rem;
            color: #daa520;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .donation-title i {
            color: #ffd700;
        }
        
        .donation-bar-container {
            margin-bottom: 30px;
        }
        
        .donation-amounts {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .donation-current {
            color: #ffd700;
            font-weight: 600;
            font-size: 1.4rem;
        }
        
        .donation-goal {
            color: #b0b0b0;
            font-size: 1.2rem;
        }
        
        .donation-bar {
            width: 100%;
            height: 25px;
            background: rgba(40, 40, 40, 0.8);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(218, 165, 32, 0.3);
            margin-bottom: 10px;
        }
        
        .donation-fill {
            height: 100%;
            width: 5%;
            background: linear-gradient(90deg, 
                #daa520 0%, 
                #ffd700 25%, 
                #ffec8b 50%, 
                #ffd700 75%, 
                #daa520 100%);
            border-radius: 12px;
            position: relative;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 0 15px rgba(218, 165, 32, 0.5);
            z-index: 2;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
            }
            50% {
                box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
            }
            100% {
                box-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
            }
        }
        
        .donation-empty {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            background: 
                repeating-linear-gradient(
                    45deg,
                    rgba(80, 80, 80, 0.3),
                    rgba(80, 80, 80, 0.3) 10px,
                    rgba(60, 60, 60, 0.3) 10px,
                    rgba(60, 60, 60, 0.3) 20px
                );
            animation: loadingMove 3s linear infinite;
            border-radius: 12px;
        }
        
        @keyframes loadingMove {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 40px 0;
            }
        }
        
        .donation-percent {
            text-align: right;
            color: #daa520;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        /* Кнопки поддержки проекта - в стиле кнопок "Действия" */
        .donation-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .donation-btn {
            background: linear-gradient(135deg, #daa520, #b8860b);
            color: #0a0a0a;
            border: none;
            padding: 14px 32px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
            min-width: 220px;
            justify-content: center;
        }
        
        .donation-btn:hover {
            background: linear-gradient(135deg, #ffc107, #daa520);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(218, 165, 32, 0.4);
        }
        
        .donation-btn i {
            font-size: 1.3rem;
        }
        
        /* Кнопка смены языка - ПЕРЕКЛЮЧАТЕЛЬ */
        .language-switcher {
            margin-top: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .language-toggle {
            display: flex;
            background: rgba(30, 30, 30, 0.8);
            border-radius: 50px;
            padding: 5px;
            border: 2px solid #444;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .language-option {
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1;
            color: #b0b0b0;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 150px;
            justify-content: center;
        }
        
        .language-option i {
            font-size: 1.2rem;
        }
        
        .language-slider {
            position: absolute;
            top: 5px;
            left: 5px;
            width: calc(50% - 5px);
            height: calc(100% - 10px);
            background: linear-gradient(135deg, #daa520, #b8860b);
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            box-shadow: 0 3px 10px rgba(218, 165, 32, 0.3);
        }
        
        .language-slider.en {
            left: calc(50% + 5px);
            background: linear-gradient(135deg, #ff69b4, #d81b60);
        }
        
        .language-option.active {
            color: #0a0a0a;
        }
        
        .language-hint {
            color: #777;
            font-size: 0.9rem;
            text-align: center;
            margin-top: 5px;
        }
        
        /* Футер */
        footer {
            margin-top: 50px;
            text-align: center;
            color: #777;
            font-size: 0.9rem;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            width: 100%;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .logo-main {
                font-size: 3.5rem;
            }
            
            .status-table {
                font-size: 0.9rem;
            }
            
            .status-table th {
                padding: 18px 10px;
                font-size: 1.1rem;
            }
            
            .status-table td {
                padding: 18px 10px;
            }
            
            .status-btn, .external-btn {
                padding: 10px 18px;
                font-size: 1rem;
                min-width: 170px;
            }
            
            .link-cell a {
                padding: 8px 15px;
            }
            
            .donation-title {
                font-size: 1.5rem;
            }
            
            .donation-current {
                font-size: 1.2rem;
            }
            
            .donation-goal {
                font-size: 1rem;
            }
            
            .donation-bar {
                height: 22px;
            }
            
            .donation-btn {
                padding: 12px 25px;
                font-size: 1.1rem;
                min-width: 200px;
            }
            
            .language-option {
                padding: 10px 20px;
                font-size: 1rem;
                min-width: 130px;
            }
            
            .donation-buttons {
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .logo-main {
                font-size: 2.8rem;
            }
            
            .logo-subtitle {
                font-size: 1rem;
            }
            
            .status-table th {
                font-size: 0.9rem;
                padding: 15px 8px;
            }
            
            .status-table td {
                padding: 15px 8px;
                font-size: 0.9rem;
            }
            
            .status-btn, .external-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
                min-width: 140px;
                flex-direction: column;
                gap: 5px;
            }
            
            .link-cell a {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
            
            .donation-title {
                font-size: 1.3rem;
                flex-direction: column;
                text-align: center;
                gap: 5px;
            }
            
            .donation-info {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .donation-amounts {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
            
            .donation-current {
                font-size: 1.1rem;
            }
            
            .donation-goal {
                font-size: 0.9rem;
            }
            
            .donation-bar {
                height: 20px;
            }
            
            .donation-btn {
                padding: 10px 20px;
                font-size: 1rem;
                min-width: 180px;
                flex-direction: column;
                gap: 5px;
            }
            
            .donation-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .language-option {
                padding: 8px 15px;
                font-size: 0.9rem;
                min-width: 110px;
                gap: 5px;
            }
            
            .container {
                gap: 30px;
            }
        }
