main {
    display: flex;
    flex-direction: column;
}

.hero {
    height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    width: 50%;
    padding: 20px;
}

.hero-content span.hero-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s ease;
    animation: pulse 2s ease-in-out infinite;
}

.hero-cta:hover {
    background-color: #ff3333;
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 5px rgba(218, 27, 27, 0.5); }
    50% { box-shadow: 0 0 20px rgba(218, 27, 27, 0.8); }
}

.hero-image {
    width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ── Alert Banner ─────────────────────────────── */
.alert-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    background-color: rgba(139, 0, 0, 0.4);
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    animation: alertPulse 2s ease-in-out infinite;
}

.alert-banner i {
    color: var(--secondary-color);
    font-size: 24px;
    animation: shake 0.5s ease-in-out infinite;
}

.alert-banner span {
    color: var(--text-color);
    font-size: 14px;
}

@keyframes alertPulse {
    0%, 100% { background-color: rgba(139, 0, 0, 0.3); }
    50% { background-color: rgba(139, 0, 0, 0.5); }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.knowledge {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.knowledge h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.knowledge p {
    font-size: 18px;
    text-align: center;
    max-width: 600px;
}

.knowledge-cards {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 30px;
}

.knowledge-cards .card {
    background-color: var(--primary-color);
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.knowledge-cards .card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.knowledge-cards .card p {
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
    flex: 1;
}

.knowledge-cards .card a {
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: var(--third-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* ── Threat Level Section ─────────────────────── */
.threat-level {
    padding: 50px 40px;
    background-color: rgba(139, 0, 0, 0.15);
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.threat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.threat-header h2 {
    font-size: 28px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.threat-header h2 i {
    color: var(--secondary-color);
}

.threat-badge {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 5px rgba(218, 27, 27, 0.5); }
    50% { box-shadow: 0 0 20px rgba(218, 27, 27, 0.8); }
}

.threat-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 35px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 150px;
}

.stat-card i {
    font-size: 32px;
    color: var(--secondary-color);
}

.stat-card .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
}

.stat-card .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* ── Enemies Showcase Section ─────────────────── */
.enemies-showcase {
    padding: 60px 40px;
    text-align: center;
}

.enemies-showcase h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.enemies-showcase > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.enemies-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.enemy-card {
    width: 140px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.enemy-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    background-color: rgba(218, 27, 27, 0.1);
}

.enemy-card.enemy-boss {
    border-color: var(--secondary-color);
    background-color: rgba(139, 0, 0, 0.2);
    animation: bossGlow 2s ease-in-out infinite;
}

@keyframes bossGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(218, 27, 27, 0.3); }
    50% { box-shadow: 0 0 25px rgba(218, 27, 27, 0.6); }
}

.enemy-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.enemy-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.enemy-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}

.enemy-type {
    font-size: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enemy-owner {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Action Section ───────────────────────────── */
.action-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(61, 61, 92, 0.5) 0%, rgba(30, 30, 50, 0.8) 100%);
    border-top: 3px solid var(--primary-color);
}

.action-content {
    max-width: 1000px;
    margin: 0 auto;
}

.action-content h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.action-content h2 i {
    color: var(--third-color);
    font-size: 32px;
}

.action-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.action-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.action-item:hover {
    border-color: var(--third-color);
    transform: translateY(-3px);
}

.action-item i {
    font-size: 40px;
    color: var(--third-color);
    margin-bottom: 15px;
}

.action-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.action-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 20px;
}

.action-item a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--third-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.action-item a:hover {
    background-color: #d4a017;
    transform: scale(1.05);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        height: auto;
        padding-top: 100px;
    }
    .hero-content, .hero-image {
        width: 100%;
    }
    .threat-stats {
        gap: 20px;
    }
    .stat-card {
        min-width: 120px;
        padding: 20px 25px;
    }
    .enemies-grid {
        gap: 15px;
    }
    .enemy-card {
        width: 120px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .threat-header {
        flex-direction: column;
        gap: 15px;
    }
    .stat-card .stat-number {
        font-size: 28px;
    }
    .knowledge-cards {
        flex-direction: column;
        gap: 20px;
    }
    .knowledge-cards .card {
        width: 100%;
    }
}