/* DotaWager – монохромная минималистичная тема */

/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Базовые переменные монохромной минималистичной темы */
:root {
    --dota-red: #f5f5f5;
    --dota-red-dark: #dcdcdc;
    --dota-red-light: #ffffff;
    --dota-black: #0b0b0b;
    --dota-dark: #121212;
    --dota-gray: #1b1b1b;
    --dota-gray-light: #242424;
    --dota-purple: #cfcfcf;
    --dota-gold: #e6e6e6;
    --dota-silver: #bfbfbf;
    --dota-bronze: #9c9c9c;

    --primary-color: #f5f5f5;
    --primary-dark: #d0d0d0;
    --secondary-color: #bfbfbf;
    --success-color: #d9d9d9;
    --warning-color: #a6a6a6;
    --error-color: #515151;
    --info-color: #c2c2c2;
    --dark-bg: var(--dota-black);
    --darker-bg: var(--dota-dark);
    --darkest-bg: var(--dota-gray);
    --card-bg: #161616;
    --border-color: #2a2a2a;
    --text-color: #f2f2f2;
    --text-muted: #9b9b9b;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    --shadow-strong: 0 24px 65px rgba(0, 0, 0, 0.65);
    --transition: all 0.25s ease;
    --glow: 0 0 18px rgba(255, 255, 255, 0.12);
    --glow-strong: 0 0 28px rgba(255, 255, 255, 0.18);
}

/* Базовая типографика */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #131313 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Orbitron шрифт для заголовков */
.orbitron {
    font-family: 'Orbitron', sans-serif;
}

/* Глобальные стили для DotaWager */
.dota-glow {
    text-shadow: var(--glow);
}

.dota-gradient {
    background: linear-gradient(135deg, #121212, #1e1e1e);
}

.dota-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.dota-card:hover {
    border-color: #3a3a3a;
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.55);
}

/* Контейнеры */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container-narrow {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Карточки */
.card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--darkest-bg) 100%);
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 20px;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.9), rgba(19, 19, 19, 0.9));
    color: var(--text-color);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55), 0 0 0 rgba(255, 255, 255, 0.1);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-dark);
    color: var(--dota-black);
    box-shadow: 0 10px 32px rgba(245, 245, 245, 0.35), 0 0 20px rgba(245, 245, 245, 0.35);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255, 255, 255, 0.25), 0 0 28px rgba(255, 255, 255, 0.22);
}

.btn-success {
    background: var(--success-color);
    border-color: #c9c9c9;
    color: #111;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15), 0 0 22px rgba(255, 255, 255, 0.14);
}

.btn-success:hover:not(:disabled) {
    background: #cfcfcf;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 255, 255, 0.2), 0 0 26px rgba(255, 255, 255, 0.18);
}

.btn-warning {
    background: var(--warning-color);
    border-color: #909090;
    color: #111;
    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.12), 0 0 18px rgba(255, 255, 255, 0.1);
}

.btn-warning:hover:not(:disabled) {
    background: #969696;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(255, 255, 255, 0.18), 0 0 22px rgba(255, 255, 255, 0.14);
}

.btn-danger {
    background: var(--error-color);
    border-color: #3f3f3f;
    color: var(--text-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 255, 255, 0.08);
}

.btn-danger:hover:not(:disabled) {
    background: #474747;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6), 0 0 22px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Группы кнопок */
.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-block {
    width: 100%;
}

/* Формы */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(26, 26, 26, 0.6);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.form-control:invalid {
    border-color: #3f3f3f;
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-error {
    display: block;
    margin-top: 5px;
    font-size: 0.875rem;
    color: var(--error-color);
}

/* Сетки */
.grid {
    display: grid;
    gap: 20px;
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* Flex утилиты */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }

/* Пространство */
.m-0 { margin: 0; }
.m-1 { margin: 4px; }
.m-2 { margin: 8px; }
.m-3 { margin: 12px; }
.m-4 { margin: 16px; }
.m-5 { margin: 20px; }

.p-0 { padding: 0; }
.p-1 { padding: 4px; }
.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }

/* Статусные цвета */
.text-success { color: var(--success-color); }
.text-warning { color: var(--warning-color); }
.text-error { color: var(--error-color); }
.text-info { color: var(--info-color); }
.text-muted { color: var(--text-muted); }

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Загрузка */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .card-body,
    .card-header,
    .card-footer {
        padding: 15px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

/* Утилиты для скрытия/показа */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Специфические компоненты payments */
.balance-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.balance-amount {
    font-size: 3rem;
    font-weight: bold;
    margin: 10px 0;
    color: white;
}

.balance-label {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Таблицы транзакций */
.transactions-table {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.table-header {
    background: var(--darker-bg);
    padding: 15px;
    font-weight: 600;
    display: grid;
    grid-template-columns: 1fr 150px 120px 150px 120px;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.table-row {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 150px 120px 150px 120px;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.table-row:hover {
    background: var(--darker-bg);
}

.table-row:last-child {
    border-bottom: none;
}

/* Статусы */
.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.status-completed {
    background: rgba(220, 220, 220, 0.15);
    color: var(--text-color);
}

.status-pending {
    background: rgba(160, 160, 160, 0.18);
    color: var(--text-color);
}

.status-processing {
    background: rgba(255, 255, 255, 0.18);
    color: var(--text-color);
}

.status-failed {
    background: rgba(40, 40, 40, 0.75);
    color: var(--text-color);
}

.status-cancelled {
    background: rgba(45, 45, 45, 0.85);
    color: var(--text-color);
}

/* Суммы */
.amount-positive {
    color: var(--success-color);
    font-weight: bold;
}

.amount-negative {
    color: var(--error-color);
    font-weight: bold;
}

/* Пагинация */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), 0 0 18px rgba(255, 255, 255, 0.08);
}

.pagination a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.pagination .current {
    background: rgba(255, 255, 255, 0.18);
    color: var(--text-color);
    font-weight: bold;
}

/* Свечение и обводки */
.glow-outline {
    position: relative;
    border-radius: inherit;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 0 rgba(255, 255, 255, 0.12);
}

.glow-outline::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glow-outline:hover::after,
.glow-outline:focus::after {
    opacity: 1;
}

/* Монохромные альтернативы цветных utility-классов */
.text-accent-warm,
.text-accent-cool,
.text-primary-soft,
.text-secondary-soft,
.text-success-soft,
.text-warning-soft,
.text-error-soft,
.text-dota-red,
.text-green-400,
.text-green-500,
.text-red-400,
.text-red-500,
.text-blue-400 {
    color: var(--text-color) !important;
}

.bg-accent-warm,
.bg-accent-cool,
.bg-primary-soft,
.bg-secondary-soft,
.bg-success-soft,
.bg-warning-soft,
.bg-error-soft,
.bg-discord,
.bg-telegram,
.bg-green-500,
.bg-red-500,
.bg-blue-500,
.bg-dota-dark\/95,
.bg-white\/5,
.bg-white\/10,
.bg-white\/20,
.bg-white\/30,
.bg-white\/40,
.bg-discord\/20,
.bg-discord\/30,
.bg-telegram\/20,
.bg-telegram\/30 {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--text-color) !important;
}

.border-dota-red\/20,
.border-blue-400\/30,
.border-white\/12,
.border-white\/10,
.border-green-500\/30,
.border-transparent {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.animate-pulse-once {
    animation: shadow-pulse 2.6s ease-out 1;
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
    max-width: 400px;
    color: var(--text-color);
    background: rgba(18, 18, 18, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
}

.notification::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.16);
    opacity: 0.55;
    pointer-events: none;
}

.notification.success,
.notification.error,
.notification.warning,
.notification.info {
    background: rgba(18, 18, 18, 0.9);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Модальные окна */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(18px);
    transition: var(--transition);
}

.modal.show .modal-content {
    transform: translateY(0);
}

/* Информационные блоки */
.info-block {
    background: rgba(24, 24, 24, 0.72);
    padding: 18px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.info-block.success,
.info-block.warning,
.info-block.error {
    border-color: rgba(255, 255, 255, 0.16);
}

/* Адаптивные таблицы */
@media (max-width: 768px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .table-row {
        padding: 10px;
    }

    .transactions-table {
        font-size: 0.9rem;
    }
}

/* Статусы матчей */
.match-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Монохромные карточки и кнопки (soft-*) */
.soft-card {
    position: relative;
    background: rgba(18, 18, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    color: var(--text-color);
}

.soft-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.soft-card:hover::after {
    opacity: 1;
}

.card-hover {
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.soft-title {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-color);
}

.soft-icon {
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.soft-btn,
.soft-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.soft-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(140, 140, 140, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #0f0f0f;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 255, 255, 0.22);
}

.soft-btn::after {
    content: '';
    position: absolute;
    inset: -60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.soft-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 255, 255, 0.35);
}

.soft-btn:hover::after {
    opacity: 0.35;
}

.soft-btn-secondary {
    background: rgba(24, 24, 24, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text-color);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 255, 255, 0.12);
}

.soft-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.6), 0 0 26px rgba(255, 255, 255, 0.16);
}

.soft-pulse {
    animation: softPulse 3s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% { transform: scale(1); opacity: 0.75; }
    50% { transform: scale(1.08); opacity: 1; }
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-6px);
}

.glow-dot {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

.floating-glow {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
    animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-12px); opacity: 0.85; }
}

.metric-value {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.mono-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    margin-top: 7px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.gradient-bar {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.crystal-glow {
    position: relative;
    overflow: hidden;
}

.crystal-glow::after {
    content: '';
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crystal-glow:hover::after {
    opacity: 0.4;
}

.mega-button {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(100, 100, 100, 0.12));
    color: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-strong), 0 0 30px rgba(255, 255, 255, 0.28);
    overflow: hidden;
    transition: var(--transition);
}

.mega-button::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 75%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mega-button:hover {
    transform: translateY(-4px);
}

.mega-button:hover::before {
    opacity: 0.4;
}

.mono-section {
    position: relative;
    background: linear-gradient(180deg, #0c0c0c 0%, #090909 100%);
    overflow: hidden;
}

.mono-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08), transparent 65%);
    opacity: 0.45;
}

.mono-section > * {
    position: relative;
    z-index: 1;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    background: rgba(24, 24, 24, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.support-link:hover {
    background: rgba(32, 32, 32, 0.9);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.15);
}

.support-link > div:first-child {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.mono-stat-grid {
    display: grid;
    gap: 20px;
}

.mono-stat-card {
    background: rgba(18, 18, 18, 0.85);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mono-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.22);
}

.mono-stat-label {
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.glow-outline {
    position: relative;
    border-radius: inherit;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 0 rgba(255, 255, 255, 0.12);
}

.glow-outline::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glow-outline:hover::after,
.glow-outline:focus::after {
    opacity: 1;
}

/* Нейтрализация цветных tailwind utility */
.bg-dota-red,
.bg-dota-purple,
.bg-dota-gold,
.bg-dota-red\/5,
.bg-dota-purple\/5,
.bg-dota-gold\/5,
.bg-dota-red\/10,
.bg-dota-purple\/10,
.bg-dota-gold\/10,
.bg-yellow-500\/20,
.bg-yellow-500\/30,
.bg-purple-500\/10,
.bg-purple-500\/20,
.bg-green-500\/10,
.bg-green-500\/20 {
    background: rgba(255, 255, 255, 0.08) !important;
}

.border-yellow-500\/30,
.border-purple-500\/30,
.border-dota-red\/20,
.border-dota-purple\/20,
.border-dota-gold\/20,
.border-yellow-500,
.border-purple-500 {
    border-color: rgba(255, 255, 255, 0.14) !important;
}

.text-yellow-400,
.text-green-400,
.text-purple-400,
.text-dota-gold,
.text-dota-red,
.text-dota-purple {
    color: var(--text-color) !important;
}

.from-accent-warm,
.from-accent-cool,
.from-primary-soft,
.from-secondary-soft,
.from-dota-red,
.from-dota-purple,
.via-primary-soft,
.via-secondary-soft,
.via-dota-purple,
.to-accent-warm,
.to-accent-cool,
.to-primary-soft,
.to-secondary-soft,
.to-dota-gold {
    --tw-gradient-from: rgba(255, 255, 255, 0.25) !important;
    --tw-gradient-stops: rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05) !important;
    --tw-gradient-to: rgba(255, 255, 255, 0.05) !important;
}