/* Setup page styles */
.setup-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.platform-selector {
    text-align: center;
    margin-bottom: 3rem;
}

.platform-selector h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.platform-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.platform-btn:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.platform-btn.active {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.platform-icon {
    font-size: 2rem;
}

.platform-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.platform-content.active {
    display: block;
}

.platform-content h3 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.app-selection {
    margin-bottom: 3rem;
}

.app-selection h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.app-selection p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-card:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.app-card strong {
    color: #00d4ff;
    font-size: 1.1rem;
}

.app-card span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.device-limit-info {
    margin-top: 4rem;
}

.info-card {
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.info-card h3 {
    color: #ff9500;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* Info Note Styles */
.info-note {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.info-note p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-note strong {
    color: #00d4ff;
    font-weight: 600;
}

/* QR Modal */
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.qr-modal-content {
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.qr-modal-content h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
}

.qr-code {
    margin: 1.5rem 0;
}

/* Copy notification */
.copy-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 255, 136, 0.9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

    .app-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        align-self: flex-start;
    }
}

/* MTProto Banner */
.mtproto-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 1rem 0;
    margin-top: 70px;
}

.mtproto-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    text-align: center;
}

.mtproto-icon {
    font-size: 1.5rem;
    color: #00d4ff;
}

.mtproto-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: white;
}

.mtproto-text strong {
    font-size: 1.1rem;
    color: #00d4ff;
}

.mtproto-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Стили для переключателей платформ */
.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 0.8rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Активная вкладка */
.tab-btn.active {
    background: #4a90e2;
    /* Фирменный синий цвет */
    border-color: #4a90e2;
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Скрываем неактивный контент и добавляем плавное появление */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mtproto-banner-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .mtproto-text {
        text-align: center;
    }
}

/* Global link styles */
a {
    color: #00d4ff;
    text-decoration: none;
}

a:visited {
    color: #ffffff;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
    background: #0f0f23;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
    /* text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); */
}

.nav-brand .logo a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    text-shadow: inherit;
}

.nav-brand .logo a:hover {
    color: inherit;
    text-shadow: inherit;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #00d4ff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.nav-links .promo-link {
    color: #00d4ff !important;
    position: relative;
    font-weight: 600;
}

.nav-links .promo-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 1px;
    animation: pulse-underline 2s infinite;
}

.nav-links .promo-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

@keyframes pulse-underline {

    0%,
    100% {
        opacity: 0.7;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/xcapenet.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary,
.btn-primary:visited {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Заменили циановую тень на обычную */
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    /* Неон появляется только при ховере */
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline,
.btn-outline:visited {
    background: transparent;
    color: #00d4ff;
    border-color: #00d4ff;
}

.btn-outline:hover {
    background: #00d4ff;
    color: #0f0f23;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.telegram-icon {
    font-size: 1.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}

/* Stats Section */
.stats {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Меняем циановый бордер на нейтральный */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    /* text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); */
    margin-bottom: 0.5rem;
    font-family: 'Inter', monospace;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: transparent;
    /* Убираем лишний фон, позволяем глобальному градиенту дышать */
    backdrop-filter: none;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    /* text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Для поддержки Safari */
    padding: 2rem;
    /* Возвращаем отступы */
    border-radius: 16px;
    /* Возвращаем скругление углов */
    text-align: center;
    /* Центрируем текст и иконки */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
    /* Мягкое неоновое свечение */
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    /* Поможет иконке корректно центрироваться */
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    /* КРИТИЧНО ВАЖНО для позиционирования плашки "Популярный" */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card.popular {
    border-color: rgba(0, 212, 255, 0.5);
    /* Чуть ярче выделяем границу */
    transform: scale(1.05);
    /* Немного увеличиваем центральный тариф */
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.btn-primary.pulse {
    animation: soft-pulse 2s infinite;
}

@keyframes soft-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 212, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.app-card,
.status-card,
.cabinet-card,
.admin-card {
    background: rgba(255, 255, 255, 0.03);
    /* Делаем фон прозрачнее (было 0.1) */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Нейтральная тонкая рамка вместо цветной */
    backdrop-filter: blur(12px);
    /* Чуть усиливаем блюр для эффекта матового стекла */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    /* Добавляем мягкую темную тень вместо неона */
    transition: all 0.4s ease;
}


.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    /* text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}


.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 2rem;
    /* text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); */
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Status Hero Section */
.status-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.status-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    /* text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); */
}

.status-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Server Status Section */
.server-status {
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.1);
}

.infrastructure-status {
    padding: 40px 0 80px;
    background: rgba(0, 0, 0, 0.1);
}

.server-status h2,
.infrastructure-status h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    /* text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); */
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.status-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.server-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.server-info h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-indicator.offline {
    background: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.uptime {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Uptime Warning Banner */
.uptime-warning {
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-align: center;
    border: 1px solid rgba(255, 149, 0, 0.3);
    box-shadow: 0 2px 10px rgba(255, 149, 0, 0.2);
}

.uptime-warning .warning-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.status-card.has-warning {
    border-color: rgba(255, 149, 0, 0.4);
}

.status-card.has-warning:hover {
    border-color: rgba(255, 149, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.2);
}

/* Global Uptime Warning */
.global-uptime-warning {
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 149, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.2);
}

.global-uptime-warning .warning-icon {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.global-uptime-warning p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
    display: block;
    /* text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); */
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-links a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00d4ff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #00d4ff;
}

/* FAQ Section */
.faq-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.faq-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.faq-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    /* Легкий полупрозрачный фон */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Для поддержки Safari */
    padding: 2rem;
    /* Возвращаем воздух внутри карточки */
    border-radius: 16px;
    /* Возвращаем скругление */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Тонкая нейтральная рамка */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    /* Мягкая темная тень для объема */
    transition: all 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    /* Легкое поднятие при наведении */
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
    /* Фирменное неоновое свечение */
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Оставляем стили для заголовка и текста внутри FAQ без изменений, они у вас отличные */
.faq-item h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.faq-item a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s;
}

.faq-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* Cabinet Styles */
.cabinet-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.cabinet-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.cabinet-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.cabinet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cabinet-card h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.subscription-info .info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-item .label {
    color: rgba(255, 255, 255, 0.7);
}

.config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.config-item:last-child {
    border-bottom: none;
}

.config-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.config-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.config-status {
    font-size: 0.875rem;
    color: #00ff88;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.usage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.usage-stats .stat-item {
    text-align: center;
}

.usage-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.usage-stats .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Login Styles */
.login-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
}

.login-form h1 {
    color: #00d4ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.login-form p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.server-warning-item input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.btn-full {
    width: 100%;
    margin-bottom: 1.5rem;
}

.login-help {
    color: rgba(255, 255, 255, 0.7);
}

.login-help a {
    color: #00d4ff;
    text-decoration: none;
}

.login-help a:hover {
    text-decoration: underline;
}

.login-divider {
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 212, 255, 0.3);
}

.login-divider span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

#telegram-login {
    text-align: center;
    margin-bottom: 1rem;
}

/* Promo Page Styles */
.promo-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.promo-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    /* text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); */
}

.promo-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.promo-dates {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    display: inline-block;
    margin-top: 1rem;
}

.promo-period {
    color: #00d4ff;
    font-weight: 600;
    font-size: 1.1rem;
}

.promo-offers {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.offer-card.gift {
    border-color: rgba(255, 192, 203, 0.4);
}

.offer-card.referral {
    border-color: rgba(255, 215, 0, 0.4);
}

.offer-card.discount {
    border-color: rgba(144, 238, 144, 0.4);
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.offer-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.offer-details p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.promo-highlight {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.promo-code {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.old-bonus {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 1.5rem;
    font-weight: 600;
}

.arrow {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: bold;
}

.new-bonus {
    color: #00ff88;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.promo-summary {
    padding: 60px 0;
    background: rgba(0, 212, 255, 0.05);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.promo-summary h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.summary-list {
    max-width: 800px;
    margin: 0 auto;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.summary-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.promo-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Promo Banner for Main Page */
.promo-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: glow 2s ease-in-out infinite alternate;
    margin-top: 70px;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    }

    to {
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
    }
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.promo-banner-content {
    position: relative;
    z-index: 1;
}

.promo-banner h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.promo-banner p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.promo-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.promo-banner a:hover {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .uptime-warning {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .global-uptime-warning {
        margin: 0 1rem 2rem;
        padding: 0.8rem;
    }

    .global-uptime-warning p {
        font-size: 0.9rem;
    }

    .nav {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-main-image {
        max-width: 300px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .promo-header h1 {
        font-size: 2rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 2rem;
    }

    .bonus-comparison {
        flex-direction: column;
        gap: 0.5rem;
    }

    .summary-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .promo-banner h3 {
        font-size: 1rem;
    }

    .promo-banner p {
        font-size: 0.8rem;
    }

    .uptime-warning .warning-icon {
        font-size: 0.9rem;
    }

    .global-uptime-warning .warning-icon {
        font-size: 1.1rem;
    }
}

/* Terms Page Styles */
.terms-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.terms-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.terms-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.terms-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.terms-document {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.terms-document * {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.terms-document h2 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.terms-document h2:first-child {
    margin-top: 0;
}

.terms-document p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.terms-document a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s;
}

.terms-document a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
}

.terms-footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .terms-document {
        padding: 2.5rem;
        margin: 0 1rem;
        max-width: none;
    }

    .terms-hero h1 {
        font-size: 2rem;
    }
}

/* Admin Page Styles */
.admin-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.admin-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.admin-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.admin-card h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-group textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    resize: vertical;
    font-family: inherit;
}

.server-warning-item {
    margin-bottom: 1rem;
}

.server-warning-item label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.server-warning-item input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.admin-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.admin-status {
    text-align: center;
}

.status-message {
    display: none;
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-message.error {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border-color: rgba(255, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-buttons {
        flex-direction: column;
    }
}

/* About page styles */
.about-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.about-section {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.about-section h2 {
    color: #00d4ff;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.about-section h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-section h4 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.about-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-section ul {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.about-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.value-item,
.tech-item,
.team-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.server-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.server-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.server-flag {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.server-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.server-subtitle {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.server-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-item {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid;
}

.privacy-item.negative {
    background: rgba(255, 68, 68, 0.05);
    border-color: rgba(255, 68, 68, 0.2);
}

.privacy-item.positive {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
}

.privacy-item h4 {
    margin-bottom: 1.5rem;
}

.privacy-item ul {
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.testimonials {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #00d4ff;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.conclusion {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.1);
}

.signature {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .server-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.error-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.error-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }

    .error-content h1 {
        font-size: 2rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}


/* Pricing Full Page Styles */
.pricing-full {
    padding-bottom: 40px;
    background: rgba(0, 0, 0, 0.1);
}

.pricing-group {
    margin-bottom: 4rem;
}

.pricing-group h2 {
    text-align: center;
    color: #00d4ff;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.pricing-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card-full {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card-full:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.pricing-card-full.popular {
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.pricing-duration {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    color: #00d4ff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.pricing-per-day {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.pricing-save {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-features-full {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.pricing-features-full li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.pricing-features-full li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-note {
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.pricing-note h3 {
    color: #ff9500;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pricing-note ul {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.pricing-note li {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .pricing-grid-full {
        grid-template-columns: 1fr;
    }

    .pricing-card-full.popular {
        transform: none;
    }
}

/* --- Баннер: Личный кабинет --- */
.cabinet-alert-banner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(15, 15, 35, 0.95) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 14px 0;
    margin-top: 70px;
    /* Компенсация высоты фиксированной шапки */
    position: relative;
    overflow: hidden;
}

/* Убираем двойной отступ, если MTProto баннер идет сразу после нового */
.cabinet-alert-banner+.mtproto-banner {
    margin-top: 0;
    border-top: none;
}

/* Эффект блика */
.cabinet-alert-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shine 4s infinite;
}

.cabinet-alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cabinet-alert-badge {
    background: linear-gradient(135deg, #ff8400 0%, #cc7000 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.cabinet-alert-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cabinet-alert-text strong {
    color: #fff;
    font-weight: 600;
}

.cabinet-alert-btn {
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    padding: 6px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.cabinet-alert-btn:hover {
    background: #00d4ff;
    color: #0f0f23;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

@media (max-width: 768px) {
    .cabinet-alert-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cabinet-alert-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}