/* ═════════════════════════════════════════════════════════════
   BLOCK: POWERFUL ADD-ONS (DARK)
═════════════════════════════════════════════════════════════ */
.addons-section {
    background: var(--color-black);
    color: var(--color-white);
}

.addons-section__header {
    text-align: center;
    margin-bottom: 50px;
}

.addons-section__title {
    color: var(--color-white);
    margin-top: 10px;
}

/* --- The Grid --- */
.addons-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width: 768px) {
    .addons-section__grid { grid-template-columns: repeat(2, 1fr); }
}

@media(min-width: 1024px) {
    .addons-section__grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Add-on Cards --- */
.addon-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.addon-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.addon-card__title {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-yellow);
    margin: 0 0 12px;
}

.addon-card__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}