    /* Общий контейнер */
    .tablee-container { 
        background: #141414; /* Глубокий темный фон */
        color: #e0e0e0; 
        padding: 30px; 
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    /* Заголовки */
    .tablee-container h1 { 
        color: #ffcc00; 
        margin-bottom: 20px; 
        font-size: 2rem;
        font-weight: 700;
        text-shadow: 0 2px 10px rgba(255, 204, 0, 0.2);
    }
    .tablee-container h2 { 
        font-size: 1.4rem; 
        color: #fff;
        border-left: 4px solid #ffcc00; 
        padding-left: 15px; 
        margin-top: 30px;
        margin-bottom: 20px; 
    }

    /* Текст и списки */
    .seo-text {
        font-size: 1rem;
        line-height: 1.6;
        color: #b3b3b3;
        margin-bottom: 30px;
    }
    .seo-text p { margin-bottom: 15px; }
    .seo-text ul { list-style: none; padding-left: 0; }
    .seo-text li { 
        margin-bottom: 10px; 
        position: relative;
        padding-left: 25px;
    }
    .seo-text li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #ffcc00;
        font-weight: bold;
    }

    /* Дизайн таблицы */
    .table-responsive {
        overflow-x: auto;
        border-radius: 8px;
        border: 1px solid #2a2a2a;
    }
    .table-live {
        width: 100%;
        border-collapse: collapse;
        background: #1a1a1a;
    }
    .table-live thead {
        background: #0d0d0d;
        border-bottom: 2px solid #ffcc00;
    }
    .table-live th {
        color: #ffcc00;
        padding: 18px 15px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        white-space: nowrap;
    }
    .table-live td {
        padding: 15px;
        border-bottom: 1px solid #2a2a2a;
        vertical-align: middle;
        font-size: 0.95rem;
        color: #cccccc;
        transition: background 0.2s ease;
    }
    
    /* Эффекты при наведении на строку */
    .table-live tbody tr {
        transition: all 0.3s ease;
    }
    .table-live tbody tr:hover { 
        cursor: pointer;
        background-color: #242424;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .table-live tbody tr:hover td {
        color: #ffffff;
    }

    /* Ссылки в таблице */
    .table-live a { 
        color: #ffcc00; 
        text-decoration: none; 
        font-weight: 600;
        padding: 5px 10px;
        border: 1px solid transparent;
        border-radius: 4px;
        transition: 0.3s; 
    }
    .table-live a:hover { 
        color: #1a1a1a;
        background: #ffcc00;
        border-color: #ffcc00;
        text-decoration: none; 
    }

    /* Статусы онлайна (ваши PHP классы tx-success и tx-danger) */
    .tx-success {
        color: #00e676 !important;
        font-weight: bold;
        text-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
    }
    .tx-danger {
        color: #ff5252 !important;
        font-weight: bold;
    }