.ng-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    min-height: 180px;
}

.ng-hero-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(1px) brightness(0.3);
}

.ng-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34,34,34,0.8) 0%, rgba(34,34,34,0.3) 100%);
}

.ng-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
}

.ng-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
}
.ng-hero-icon img { width: 100%; height: 100%; object-fit: cover; }

.ng-hero-info { flex: 1; }
.ng-hero-info h1 { font-size: 28px; font-weight: 700; color: #ffffff; margin: 0 0 6px; }
.ng-hero-info p { font-size: 14px; color: #e0e0e0; margin: 0 0 12px; line-height: 1.5; }

.ng-hero-links { display: flex; gap: 10px; }
.ng-hero-link {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(134,163,0,0.15);
    color: #86a300;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s;
}
.ng-hero-link:hover { background: rgba(134,163,0,0.3); }

/* ========== Информация об игре ========== */
.game-info-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 30px 15px;
    margin-top: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.game-info-title {
    font-size: 24px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
}

.game-info-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #86a300;
}

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.info-value {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
}
/* ========== Карточки товаров ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}

/* Адаптив */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        padding: 15px 10px;
    }
    
    .product-image {
        height: 80px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-desc {
        font-size: 12px;
    }
}

/* ========== Статья ========== */
.article-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 35px;
    margin-top: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.article-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 12px;
    line-height: 1.2;
}

.article-meta {
    font-size: 14px;
    color: #666666;
}

.article-meta span {
    margin-right: 20px;
}

.article-meta .article-category {
    display: inline-block;
    background: #86a300;
    color: #ffffff;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #222222;
}

.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #222222;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    margin: 25px 0 12px;
}

.article-content p {
    margin: 0 0 16px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 16px;
    padding-left: 25px;
}

.article-content li {
    margin: 0 0 8px;
}

.article-content strong {
    color: #222222;
}

/* ========== Теги ========== */
.article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 4px 14px;
    background: #f5f5f5;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.tag:hover {
    background: #86a300;
    color: #ffffff;
}

/* ========== FAQ Аккордеон ========== */
.faq-container {
    margin: 20px 0 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    background: #ffffff;
}

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

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    user-select: none;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-icon {
    display: inline-block;
    font-size: 12px;
    color: #86a300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 16px;
}

.faq-answer p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

/* ========== Адаптив ========== */
@media (max-width: 992px) {
    .article-section {
        padding: 25px;
    }

    .article-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .article-section {
        padding: 18px 15px;
        margin-top: 15px;
    }

    .article-title {
        font-size: 22px;
    }

    .article-meta {
        font-size: 12px;
    }

    .article-meta span {
        display: inline-block;
        margin-right: 12px;
        margin-bottom: 5px;
    }

    .article-content {
        font-size: 14px;
        line-height: 1.7;
    }

    .article-content h2 {
        font-size: 20px;
        margin: 20px 0 12px;
    }

    .article-content h3 {
        font-size: 17px;
        margin: 18px 0 10px;
    }

    .article-tags {
        margin-top: 20px;
        padding-top: 15px;
        gap: 6px;
    }

    .tag {
        font-size: 12px;
        padding: 3px 12px;
    }

    .faq-question {
        font-size: 14px;
        padding: 12px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .faq-item.open .faq-answer {
        padding: 0 16px 14px;
    }
}

/* Адаптив */
@media (max-width: 992px) {
    .game-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
    }

    .info-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .game-info-section {
        padding: 18px 15px 10px;
        margin-top: 15px;
    }

    .game-info-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .game-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px 15px;
    }

    .info-item {
        padding: 8px 0;
    }

    .info-label {
        font-size: 11px;
    }

    .info-value {
        font-size: 14px;
    }
}

/* Адаптив */
@media (max-width: 992px) {
    .ng-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ========== Таблица ========== */
.table-wrap {
    overflow-x: auto;
    margin: 20px 0 25px;
}

.game-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.game-table thead {
    background: #86a300;
}

.game-table th {
    padding: 12px 18px;
    text-align: left;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.game-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #e0e0e0;
    color: #222222;
    background: #ffffff;
}

.game-table tbody tr:last-child td {
    border-bottom: none;
}

.game-table tbody tr:hover td {
    background: #f5f5f5;
}

@media (max-width: 600px) {
    .game-table {
        font-size: 13px;
    }
    
    .game-table th,
    .game-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 600px) {
    .ng-hero-content { flex-direction: column; text-align: center; padding: 20px 15px; }
    .ng-hero-icon { width: 60px; height: 60px; }
    .ng-hero-info h1 { font-size: 22px; }
    .ng-hero-links { justify-content: center; }
    .ng-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .news-card-img { height: 130px; }
    .news-card-content { padding: 10px 12px 14px; }
    .news-card-content h3 { font-size: 13px; }
    .news-card-content p { font-size: 11px; }
    .news-date { font-size: 10px; margin-bottom: 6px; }
}
/* ===== Game About ===== */
.game-about {
    display: flex;
    gap: 30px;
    align-items: center;
}

.game-about-left {
    flex: 0 0 120px;
    text-align: center;
}

.game-about-logo {
    width: 100%;
    max-width: 120px;
    border-radius: 16px;
}

.game-about-right {
    flex: 1;
}

/* ===== Voucher Grid ===== */
.voucher-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.voucher-card {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.voucher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.voucher-title {
    font-weight: 700;
    color: #222222;
    font-size: 15px;
    margin-bottom: 5px;
}

.voucher-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}

/* ===== Info Alert ===== */
.info-alert {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.info-alert p {
    margin: 0;
    color: #856404;
}

.info-box {
    background: #e8f5e9;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 15px 0;
}

.info-box p {
    margin: 0;
    color: #2e7d32;
}

/* ===== Methods Grid ===== */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.method-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 18px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.method-number {
    width: 36px;
    height: 36px;
    background: #86a300;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 12px;
}

.method-title {
    font-weight: 700;
    color: #222222;
    font-size: 15px;
    margin-bottom: 6px;
}

.method-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 10px;
}

.method-tag {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #f5f5f5;
    color: #666666;
}

/* ===== Security Grid ===== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.security-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #86a300;
}

.security-title {
    font-weight: 700;
    color: #222222;
    font-size: 15px;
    margin-bottom: 5px;
}

.security-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}

/* ====================================================
   АДАПТИВ 
   ==================================================== */
@media (max-width: 992px) {
    .voucher-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .game-about {
        flex-direction: column;
        text-align: center;
    }
    
    .game-about-left {
        flex: 0 0 auto;
    }
    
    .game-about-logo {
        max-width: 100px;
    }
}

@media (max-width: 600px) {
    /* Voucher */
    .voucher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .voucher-card {
        padding: 15px 10px;
    }
    
    .voucher-title {
        font-size: 14px;
    }
    
    .voucher-desc {
        font-size: 12px;
    }
    
    /* Methods */
    .methods-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .method-card {
        padding: 15px 12px;
    }
    
    .method-number {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    
    .method-title {
        font-size: 14px;
    }
    
    .method-desc {
        font-size: 12px;
    }
    
    .method-tag {
        font-size: 11px;
        padding: 2px 12px;
    }
    
    /* Security */
    .security-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .security-card {
        padding: 15px 12px;
    }
    
    .security-title {
        font-size: 14px;
    }
    
    .security-desc {
        font-size: 12px;
    }
    
    /* Info Alert */
    .info-alert {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .info-box {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* Table */
    .game-table {
        font-size: 13px;
    }
    
    .game-table th,
    .game-table td {
        padding: 8px 10px;
    }
}
/* ========== Карточки товаров ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}

/* Адаптив для карточек товаров */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        padding: 15px 10px;
    }
    
    .product-image {
        height: 70px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-desc {
        font-size: 12px;
    }
}