:root {
    --bp-red: #c60000;
    --bp-dark: #1a0505;
    --card-bg: #141414;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
}

/* Hero Section Override */
.bp-hero {
    background: linear-gradient(135deg, #2a0a0a 0%, #0e0e0e 100%);
    border-bottom: 3px solid var(--bp-red);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.bp-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(198, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bp-hero h1 {
    font-size: 3.5rem;
    color: var(--bp-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(198, 0, 0, 0.4);
    font-weight: 500;
}

.bp-hero p {
    font-size: 1.3rem;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Strategy Cards */
.strategy-card {
    background: var(--card-bg);
    border: 1px solid #333;
    border-left: 4px solid var(--bp-red);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.strategy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(198, 0, 0, 0.15);
    border-color: #444;
}

.strategy-card h2 {
    color: var(--bp-red);
    margin-bottom: 20px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Perk Deck Grid */
.perk-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.perk-item {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.perk-item:hover {
    border-color: var(--bp-red);
    transform: translateY(-5px);
}

.perk-icon {
    font-size: 3rem;
    color: var(--bp-red);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(198, 0, 0, 0.3);
}

.perk-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.perk-killer {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 15px;
}

.perk-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.math-box {
    background: rgba(198, 0, 0, 0.05);
    border: 2px dashed var(--bp-red);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
}

.math-highlight {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--bp-red);
    display: block;
    margin-top: 10px;
}

.math-text {
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Alternative Killer Section */
.alt-killer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.alt-killer-card {
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.alt-killer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 10px rgba(198, 0, 0, 0.4);
}

.alt-killer-card .coupon-header {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .bp-hero h1 { font-size: 2.5rem; }
    .bp-hero p { font-size: 1.1rem; }
    .strategy-card h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .bp-hero { padding: 40px 15px; }
    .bp-hero h1 { font-size: 1.8rem; }
    .bp-hero p { font-size: 1rem; }
    .strategy-card { padding: 20px; }
    .strategy-card h2 { font-size: 1.2rem; }
}