/* News listing grid */
.news-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.news-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.news-card-banner {
    position: relative;
    overflow: hidden;
}

.news-card-svg {
    width: 100%;
    height: auto;
    display: block;
}

.news-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    color: #fff;
}

.news-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-card-title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
    line-height: 1.3;
}

.news-card-excerpt {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}

.news-card-date {
    font-size: 0.82em;
    color: var(--text-muted);
    font-weight: 500;
}

.news-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.news-card-tag {
    font-size: 0.75em;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .news-listing-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* News detail page */
.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88em;
    font-weight: 500;
    transition: color 0.2s;
}

.news-back-link:hover {
    color: var(--accent);
}

.news-article-header {
    margin-bottom: 24px;
}

.news-article-banner {
    padding: 0 0 16px;
}

.news-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.news-article-category {
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 4px;
    color: #fff;
}

.news-article-date {
    font-size: 0.85em;
    color: var(--text-muted);
}

.news-article-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
    line-height: 1.3;
}

.news-article-excerpt {
    color: var(--text-secondary);
    font-size: 0.92em;
    line-height: 1.5;
    margin-top: 8px;
}

/* News page - dark theme */
.news-header {
    background: var(--bg-surface-elevated);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    text-align: center;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.news-title {
    color: var(--text-heading);
    font-size: 2.2em;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.news-subtitle {
    color: var(--text-secondary);
    font-size: 1.1em;
    font-weight: 500;
    margin: 0;
}

.news-container {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.news-grid {
    display: grid;
    gap: 30px;
    padding: 0;
    max-width: 1920px;
    margin: 0 auto;
}

.news-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.news-featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-surface-elevated);
}

.news-title-banner {
    width: 100%;
    min-height: 130px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-surface-elevated);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    max-width: 1920px;
    margin: 0 auto;
}

.news-title-text {
    font-size: 2em;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    color: var(--text-heading);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 20px 0;
    flex-wrap: wrap;
    padding: 12px 15px;
    background: var(--bg-surface-elevated);
    border-radius: 10px;
}

.news-meta-banner {
    background: transparent;
    box-shadow: none;
    border-left: none;
}

.news-category {
    padding: 4px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.9em;
}

.news-author {
    color: var(--text-secondary);
    font-size: 0.9em;
    font-weight: 500;
}

.news-item-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.news-tag {
    background: var(--bg-surface-elevated);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    border: 1px solid var(--border-primary);
}

.news-body {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 20px;
}

/* News blocks */
.news-block {
    margin: 25px 0;
    padding: 15px;
    border-radius: 10px;
    border-left: 5px solid var(--text-muted);
    background: var(--bg-surface-elevated);
}

.news-block-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-heading);
}

.news-block-content {
    padding-left: 10px;
    margin-top: -10px;
}

/* Block type colors */
.news-block-info { border-left-color: var(--color-info); background: rgba(59, 130, 246, 0.08); }
.news-block-warning { border-left-color: var(--color-warning); background: rgba(245, 158, 11, 0.08); }
.news-block-danger { border-left-color: var(--color-negative); background: rgba(239, 68, 68, 0.08); }
.news-block-success { border-left-color: var(--color-positive); background: rgba(34, 197, 94, 0.08); }
.news-block-primary { border-left-color: var(--accent); background: var(--accent-muted); }
.news-block-items { border-left-color: #a78bfa; background: rgba(167, 139, 250, 0.08); }
.news-block-heroes { border-left-color: #fb923c; background: rgba(251, 146, 60, 0.08); }

/* Dota patch cards */
.changes-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 10px 0 20px 0;
    max-width: 800px;
}

.dota-card {
    background: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    box-shadow: var(--card-shadow);
}

.card-header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-secondary);
    background: var(--bg-surface-elevated);
}

.card-img {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    margin-right: 15px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-weight: 600;
    font-size: 1.2em;
    color: var(--text-primary);
    margin: 0;
}

.card-content {
    padding: 15px;
}

.card-content ul {
    margin: 0;
    padding: 0 0 0 20px;
}

.card-content li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.buff { color: var(--color-positive); font-weight: 500; }
.nerf { color: var(--color-negative); font-weight: 500; }
.neutral-change { color: var(--text-muted); font-weight: 500; }

.hero-card .card-header { background: rgba(99, 102, 241, 0.2); }
.hero-card .card-title { color: var(--accent-hover); }
.item-card .card-header { background: rgba(167, 139, 250, 0.2); }
.item-card .card-title { color: #c4b5fd; }
.neutral-card .card-header { background: rgba(59, 130, 246, 0.2); }
.neutral-card .card-title { color: #93c5fd; }

.general-changes {
    background: var(--bg-surface-elevated);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid var(--border-primary);
}

.general-changes h2 {
    margin-top: 0;
    color: var(--text-heading);
    border-bottom: 1px solid var(--border-primary);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.general-content ul {
    margin: 0;
    padding: 0 0 0 20px;
}

.general-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.news-body h1, .news-body h2, .news-body h3 {
    color: var(--text-heading);
    margin-top: 25px;
    margin-bottom: 15px;
}

.news-body h1 {
    font-size: 1.8em;
    border-bottom: 2px solid var(--border-primary);
    padding-bottom: 10px;
}

.news-body h2 { font-size: 1.4em; margin-bottom: 5px; }
.news-body h3 { font-size: 1.2em; }

.item-block {
    background: rgba(167, 139, 250, 0.08);
    border-left: 3px solid #a78bfa;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-block img {
    display: block;
    margin: 0 0 10px 0;
    border-radius: 5px;
}

.news-body ul { padding-left: 20px; margin: 15px 0; }
.news-body li { margin-bottom: 8px; }

.news-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.no-news {
    text-align: center;
    padding: 60px 40px;
    color: var(--text-muted);
    margin: 0 20px;
}

.no-news-icon {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.admin-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.admin-link:hover {
    background: var(--accent-hover);
    color: white;
    text-decoration: none;
}

/* Additional info section */
.news-additional-section {
    margin: 25px 0;
    padding: 18px 0;
}

.news-additional-title {
    color: var(--text-heading);
    font-size: 1.15em;
    font-weight: 700;
    margin: 0 0 12px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-secondary);
}

.news-additional-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Structured hero change cards */
.hero-changes-section {
    margin: 25px 0;
}

.hero-changes-title {
    color: var(--text-heading);
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.hero-cards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hero-change-card {
    background: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden;
}

.hero-change-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.12);
    border-bottom: 1px solid var(--border-secondary);
}

.hero-change-icon {
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-change-name {
    color: var(--accent-hover);
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
}

.hero-change-name:hover {
    text-decoration: underline;
}

.hero-change-list {
    margin: 0;
    padding: 12px 16px 12px 36px;
    list-style: disc;
}

.hero-change-list li {
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.5;
}

.hero-change-list li:last-child {
    margin-bottom: 0;
}

/* Ability sub-blocks within hero cards */
.hero-ability-block {
    margin: 10px 12px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.hero-ability-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(34, 197, 94, 0.08);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.hero-ability-icon {
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-ability-name {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.95em;
}

.hero-ability-block .hero-change-list {
    margin: 0;
    padding: 8px 12px 8px 32px;
}

.hero-ability-block .hero-change-list li {
    margin-bottom: 4px;
}

/* Talent tree within hero cards (Dota-style) */
.talent-changes {
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(245, 158, 11, 0.02));
    border-top: 1px solid rgba(251, 191, 36, 0.15);
}

.talent-changes-title {
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.talent-changes-title::before {
    content: '\2726';
    font-size: 1em;
}

.talent-tree {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Vertical center connector line */
.talent-tree::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 17px;
    bottom: 17px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.1));
    transform: translateX(-50%);
    border-radius: 1px;
}

.talent-row {
    display: grid;
    grid-template-columns: 1fr 38px 1fr;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
}

.talent-row:not(:last-child) {
    border-bottom: 1px solid rgba(251, 191, 36, 0.06);
}

.talent-cell {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.talent-left {
    text-align: right;
}

.talent-right {
    text-align: left;
}

.talent-node {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.talent-level-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid rgba(251, 191, 36, 0.4);
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 50px rgba(251, 191, 36, 0.1), 0 0 8px rgba(251, 191, 36, 0.15);
}

.talent-old {
    color: var(--color-negative, #ef4444);
    font-size: 0.82em;
    line-height: 1.4;
    text-decoration: line-through;
    opacity: 0.7;
}

.talent-new {
    color: var(--color-positive, #22c55e);
    font-size: 0.85em;
    line-height: 1.4;
    font-weight: 500;
}

/* Structured item change cards */
.item-changes-section {
    margin: 25px 0;
}

.item-changes-title {
    color: var(--text-heading);
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.item-cards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.item-change-card {
    background: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden;
}

.item-change-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.12);
    border-bottom: 1px solid var(--border-secondary);
}

.item-change-icon {
    border-radius: 4px;
    flex-shrink: 0;
}

.item-change-name {
    color: #f59e0b;
    font-weight: 600;
    font-size: 1.1em;
}

.item-change-list {
    margin: 0;
    padding: 12px 16px 12px 36px;
    list-style: disc;
}

.item-change-list li {
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.5;
}

.item-change-list li:last-child {
    margin-bottom: 0;
}

/* Structured ability change cards */
.ability-changes-section {
    margin: 25px 0;
}

.ability-changes-title {
    color: var(--text-heading);
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.ability-cards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ability-change-card {
    background: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden;
}

.ability-change-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.12);
    border-bottom: 1px solid var(--border-secondary);
}

.ability-change-icon {
    border-radius: 4px;
    flex-shrink: 0;
}

.ability-change-name {
    color: #22c55e;
    font-weight: 600;
    font-size: 1.1em;
}

.ability-change-list {
    margin: 0;
    padding: 12px 16px 12px 36px;
    list-style: disc;
}

.ability-change-list li {
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.5;
}

.ability-change-list li:last-child {
    margin-bottom: 0;
}

/* Season rewards leaderboard */
.season-rewards-section {
    margin: 25px 0;
}

.season-rewards-title {
    color: var(--text-heading);
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.reward-group {
    margin-bottom: 24px;
}

.reward-group-title {
    color: var(--text-secondary);
    font-size: 1.05em;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.reward-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reward-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    transition: background 0.15s;
}

.reward-row:hover {
    background: var(--bg-surface-elevated);
}

.reward-top-1 {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}
.reward-top-1 .reward-rank {
    color: #ffd700;
    font-weight: 700;
}

.reward-top-2 {
    background: rgba(192, 192, 192, 0.08);
    border-color: rgba(192, 192, 192, 0.3);
}
.reward-top-2 .reward-rank {
    color: #c0c0c0;
    font-weight: 700;
}

.reward-top-3 {
    background: rgba(205, 127, 50, 0.08);
    border-color: rgba(205, 127, 50, 0.3);
}
.reward-top-3 .reward-rank {
    color: #cd7f32;
    font-weight: 700;
}

.reward-rank {
    min-width: 32px;
    color: var(--text-muted);
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
}

.reward-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.reward-avatar-placeholder {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-secondary);
}

.reward-nickname {
    flex: 1;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.reward-nickname:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.reward-stat {
    color: var(--text-secondary);
    font-size: 0.9em;
    white-space: nowrap;
}

.reward-coins {
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9em;
    white-space: nowrap;
    min-width: 60px;
    text-align: right;
}

@media (max-width: 768px) {
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-content { padding: 20px; }

    .admin-link {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }

    .hero-cards-list,
    .item-cards-list,
    .ability-cards-list {
        grid-template-columns: 1fr;
    }

    .talent-row {
        grid-template-columns: 1fr 32px 1fr;
        gap: 6px;
    }

    .talent-level-num {
        width: 30px;
        height: 30px;
        font-size: 0.7em;
    }

    .talent-old,
    .talent-new {
        font-size: 0.75em;
    }

    .reward-row {
        gap: 8px;
        padding: 6px 10px;
    }

    .reward-rank {
        min-width: 28px;
        font-size: 0.8em;
    }

    .reward-coins {
        min-width: 50px;
        font-size: 0.8em;
    }
}

/* Innate abilities section */
.innate-changes-section {
    margin-top: 24px;
}

.innate-changes-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.innate-group {
    margin-bottom: 20px;
}

.innate-group-label {
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
}

.innate-label-enabled {
    background: rgba(34, 197, 94, 0.12);
    color: var(--color-positive);
}

.innate-label-disabled {
    background: rgba(239, 68, 68, 0.12);
    color: var(--color-negative);
}

.innate-hero-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.innate-hero-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 6px;
    border-radius: 8px;
    background: var(--bg-surface);
    text-decoration: none;
    transition: background 0.2s;
}

.innate-hero-chip:hover {
    background: rgba(255, 255, 255, 0.06);
}

.innate-hero-chip-disabled {
    opacity: 0.7;
}

.innate-hero-icon {
    border-radius: 4px;
    flex-shrink: 0;
}

.innate-hero-name {
    font-weight: 600;
    font-size: 0.88em;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Promo code section */
.promo-section {
    margin-top: 20px;
}

.promo-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 10px;
    border: 1px solid;
}

.promo-active {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
}

.promo-expired {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
}

.promo-card-icon {
    font-size: 2em;
    line-height: 1;
    flex-shrink: 0;
}

.promo-card-body {
    flex: 1;
    min-width: 0;
}

.promo-card-title {
    color: var(--text-secondary);
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.promo-code-value {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-positive);
    cursor: pointer;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px dashed rgba(34, 197, 94, 0.4);
    border-radius: 6px;
    display: inline-block;
    margin: 4px 0 8px;
    transition: background 0.2s;
    user-select: all;
}

.promo-code-value:hover {
    background: rgba(34, 197, 94, 0.2);
}

.promo-code-value:active {
    background: rgba(34, 197, 94, 0.3);
}

.promo-card-details {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9em;
}

.promo-detail-coins {
    color: var(--color-warning);
    font-weight: 600;
}

.promo-detail-sep {
    color: var(--text-muted);
}

.promo-detail-remaining {
    color: var(--text-secondary);
}

.promo-card-subtitle {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-top: 2px;
}

.promo-expired .promo-card-title {
    color: var(--color-negative);
}

.news-inline-icon {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 17px;
    margin: 0 2px;
    border-radius: 2px;
}

@media (max-width: 480px) {
    .promo-card {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 14px;
    }

    .promo-card-details {
        justify-content: center;
    }
}
