* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000;/*radial-gradient(ellipse at 50% 30%, #2C2C2E 0%, #1C1C1E 60%, #0D0D0D 100%);*/
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 24px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.4px;
    color: #ffffff;
    text-decoration: none;
}

.brand svg {
    display: block;
    width: 28px;
    height: 28px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.08) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 24px rgba(255,255,255,0.05);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-blog {
    margin-top: 12px;
    padding: 8px 20px;
    font-size: 14px;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 0px;
    background: transparent;
    min-height: 40vh;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero h1 span {
    color: #ECECEB;
}

.hero p {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 500px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-image {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero-image .bg-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 12px 20px;
    padding: 20px;
    opacity: 0.25;
    pointer-events: none;
    font-size: 14px;
    font-weight: 500;
    color: #ECECEB;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-align: center;
    overflow: hidden;
}

.hero-image .bg-text span {
    display: inline-block;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.hero-image .bg-text .cyr { font-family: 'Inter', 'Arial', sans-serif; }
.hero-image .bg-text .arab { font-family: 'Noto Sans Arabic', 'Arial', sans-serif; }
.hero-image .bg-text .chinese { font-family: 'Noto Sans SC', 'PingFang SC', sans-serif; }
.hero-image .bg-text .hebrew { font-family: 'Noto Sans Hebrew', 'Arial', sans-serif; }
.hero-image .bg-text .devanagari { font-family: 'Noto Sans Devanagari', 'Arial', sans-serif; }

.hero-image .peace-icon {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    padding: 16px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.hero-image .peace-icon svg {
    display: block;
    width: 80px;
    height: 80px;
}

/* downloads links  */
.downloads-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.downloads-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #b0b0b0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.platform-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0.7);
    transition: filter 0.25s;
}

.platform-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-2px);
}

.platform-btn[data-active="true"] {
    background: rgba(236, 236, 235, 0.15);
    border-color: rgba(236, 236, 235, 0.3);
    color: #ECECEB;
    box-shadow: 0 0 20px rgba(236,236,235,0.05);
}

.platform-btn[data-active="true"] img {
    filter: brightness(1);
}

.downloads-content {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 180px;
    transition: all 0.3s ease;
}

.download-item {
    animation: fadeIn 0.3s ease-out;
}

.download-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.download-info p {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 600px;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-download {
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-download img {
    height: 50px;
    width: auto;
    display: block;
    border-radius: 8px;
    transition: box-shadow 0.25s;
}

.btn-download:hover {
    transform: scale(1.03);
}

.btn-download:hover img {
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section */
.section {
    padding: 56px 0;
    background: transparent;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: #ffffff;
}

.section-sub {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 32px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px 24px 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.3s, transform 0.2s;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(236 236 235 / 43%);
    transform: translateY(-2px);
}

.card-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    background: #ECECEB;
    color: #0D0D0D;
    margin-bottom: 12px;
}

.card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.card .price {
    font-size: 20px;
    font-weight: 600;
    color: #ECECEB;
    margin-bottom: 12px;
}

.card .old-price {
    font-size: 15px;
    color: #888;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.card ul li {
    padding: 4px 0 4px 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23ECECEB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') left center no-repeat;
    background-size: 16px;
    color: #d0d0d0;
}

.card .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* CTA Блок */
.cta-section {
    padding: 64px 0 56px;
    /*background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04); */
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 40px 48px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.3s ease;
}

.cta-wrapper:hover {
    box-shadow: 0 12px 40px rgba(236, 236, 235, 0.06);
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 24px;
    max-width: 500px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 48px;
    font-size: 18px;
    background: #ECECEB;
    color: #0D0D0D;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(236, 236, 235, 0.15);
}

.btn-cta:hover {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(236, 236, 235, 0.25);
    transform: translateY(-2px);
}

.btn-cta:active {
    transform: scale(0.97);
}

.cta-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-icon svg {
    width: 48px;
    height: 48px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 12px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s;
}

.feature-item:hover {
    box-shadow: 0 12px 40px rgba(236 236 235 / 20%);
    transform: translateY(-3px);
}

.feature-item .icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.feature-item p {
    font-size: 15px;
    color: #b0b0b0;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.blog-card .blog-title {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    display: block;
    margin-bottom: 4px;
}

.blog-card .blog-title:hover {
    color: #ECECEB;
}

.blog-card .meta {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
}

/* Модальные окна */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 40px 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: rgba(28, 28, 30, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    max-width: 780px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 40px 36px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #ECECEB;
    border-radius: 10px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    font-size: 32px;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
    z-index: 10;
    margin-top: -8px;
    margin-right: -8px;
}

.modal-close:hover {
    color: #fff;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #ffffff;
    padding-right: 40px;
}

.modal-content h2 span {
    color: #ECECEB;
}

.modal-content .meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
    display: block;
}

.modal-content p {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.modal-content p:last-child {
    margin-bottom: 0;
}

.modal-content strong {
    color: #ECECEB;
    font-weight: 600;
}

.modal-content ul, .modal-content ol {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.8;
    margin: 12px 0 16px 24px;
}

.modal-content li {
    margin-bottom: 6px;
}

/* Форма модального окна */
.form-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.form-modal-overlay.active {
    display: flex;
}

.form-modal {
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    max-width: 520px;
    width: 100%;
    padding: 36px 32px 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: modalFadeIn 0.25s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
}

.form-modal-close:hover {
    color: #fff;
}

.form-modal h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 6px;
    color: #ffffff;
}

.form-modal .sub {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: #d0d0d0;
}

.form-group label .required {
    color: #ff4d4d;
    margin-left: 2px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ECECEB;
    box-shadow: 0 0 0 4px rgba(236, 236, 235, 0.15);
}

.form-group .hint {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-modal .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

#form-status {
    margin-top: 16px;
    font-weight: 500;
    text-align: center;
    min-height: 28px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 0 24px;
    margin-top: 16px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #888;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    cursor: pointer;
}

.footer-links a:hover {
    color: #ECECEB;
}

/* QR */
.qr-section {
    padding: 40px 0 48px;
}
.qr-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    padding: 32px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}
.qr-image {
    flex-shrink: 0;
}
.qr-image img {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: block;
}
.qr-text {
    flex: 1;
    min-width: 200px;
}
.qr-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}
.qr-text p {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 16px;
}
.qr-text .btn-telegram {
    display: inline-block;
    padding: 12px 32px;
    background: #0088cc;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.qr-text .btn-telegram:hover {
    background: #00a2e0;
    transform: translateY(-2px);
}
.qr-text .btn-telegram:active {
    transform: scale(0.97);
}

/* Адаптивность для планшетов и мобильных */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .header-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-modal {
        padding: 28px 20px 24px;
    }
    .cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .modal-content {
        padding: 28px 20px 24px;
        max-height: 90vh;
    }
    .modal-content h2 {
        font-size: 22px;
        padding-right: 30px;
    }
    .modal-close {
        font-size: 28px;
    }
    .hero-image .bg-text {
        font-size: 10px;
        gap: 8px 12px;
        padding: 10px;
    }
    .hero-image .peace-icon svg {
        width: 60px;
        height: 60px;
    }
    .qr-wrapper {
        padding: 24px 20px;
        gap: 24px;
        flex-direction: column;
        text-align: center;
    }
    .qr-image img {
        width: 140px;
        height: 140px;
    }
    /* Адаптив для CTA */
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
    .cta-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .btn-cta {
        padding: 14px 36px;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
    }
    .cta-icon {
        width: 64px;
        height: 64px;
    }
    .cta-icon svg {
        width: 36px;
        height: 36px;
    }
    .cta-content h2 {
        font-size: 26px;
    }
}

/* Кабинет */
.cabinet {
    padding: 40px 0;
}
.cabinet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.cabinet-header h1 {
    margin: 0;
}
.cabinet-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.cabinet-block {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.06);
}
.block-content h3 {
    margin-top: 0;
    color: #ECECEB;
}
.block-content ul {
    list-style: none;
    padding: 0;
}
.block-content ul li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Страница входа */
body.login-page {
    background: radial-gradient(ellipse at 50% 30%, #2C2C2E 0%, #1C1C1E 60%, #0D0D0D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 420px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s ease;
}

.login-card:hover {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.login-logo svg {
    width: 40px;
    height: 40px;
}

.login-logo span {
    font-size: 22px;
    font-weight: 700;
    color: #ECECEB;
    letter-spacing: -0.3px;
}

.login-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.login-header .subtitle {
    font-size: 15px;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
}

.login-error {
    background: rgba(255, 77, 77, 0.12);
    border: 1px solid rgba(255, 77, 77, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ff6b6b;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #d0d0d0;
    margin-bottom: 6px;
}

.login-form .form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #ECECEB;
    box-shadow: 0 0 0 4px rgba(236, 236, 235, 0.1);
}

.login-form .form-group input::placeholder {
    color: #666;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 600;
    background: linear-gradient(135deg, #ECECEB 0%, #d5d5d4 100%);
    color: #0D0D0D;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(236, 236, 235, 0.15);
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(236, 236, 235, 0.25);
    background: #ffffff;
}

.btn-block:active {
    transform: scale(0.97);
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #888;
}

.login-footer a {
    color: #ECECEB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.login-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.login-footer p {
    margin: 6px 0;
}

/* Адаптив для мобильных */
@media (max-width: 480px) {
    .login-card {
        padding: 28px 20px;
    }
    .login-header h1 {
        font-size: 22px;
    }
    .login-logo span {
        font-size: 18px;
    }
    .login-logo svg {
        width: 32px;
        height: 32px;
    }
}


/* Контейнер для слов */
.word-cloud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;  /* чтобы слова не мешали кликам */
    z-index: 1;            /* поверх фона, но под контентом */
}

/* Каждое слово */
.word-item {
    position: absolute;
    display: inline-block;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: opacity 0.8s ease, color 0.8s ease, text-shadow 0.8s ease;
    white-space: nowrap;
    user-select: none;
    cursor: default;
    font-family: 'Inter', sans-serif;
}

/* Активное слово (яркое) */
.word-item.active {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(236, 236, 235, 0.3);
    opacity: 1;
}

/* Тусклое слово */
.word-item.dim {
    opacity: 0.1;
    color: rgba(255, 255, 255, 0.05);
}

/* Пульсация для активных слов */
.word-item.pulse {
    animation: pulseGlow 1.2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 10px rgba(236, 236, 235, 0.2);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 30px rgba(236, 236, 235, 0.6);
        transform: scale(1.05);
    }
}


.hero,
.cta-section,
.downloads-section,
.downloads-content,
.features-section { /* или общий класс для секций */
    position: relative;
    z-index: 2;
}

.word-cloud-wrapper {
    position: relative;
    overflow: hidden;
}

.cabinet-block#block-my-subscriptions {
    grid-column: 1 / -1; /* растягиваем на все колонки */
}

.cabinet-blocks {
    display: grid;
    grid-template-columns: 1fr; /* одна колонка на всю ширину */
    gap: 24px;
}



}