.lastz-hero-exp-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    color: #f5f5f5;
}

.hero-exp-header {
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.28), transparent 35%),
        linear-gradient(135deg, #161616, #080808);
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.45);
}

.hero-exp-kicker {
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-exp-header h1 {
    color: #ffc107;
    font-weight: 800;
    margin: 0 0 8px;
}

.hero-exp-header p {
    margin: 0;
    color: #ddd;
}

.hero-exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.hero-exp-card {
    background: #111;
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

.hero-exp-card h2 {
    color: #ffc107;
    font-size: 1.25rem;
    margin: 0 0 18px;
}

.hero-exp-card label {
    display: block;
    color: #ddd;
    font-weight: 700;
    margin: 14px 0 6px;
}

.hero-exp-card select,
.hero-exp-card input {
    width: 100%;
    background: #070707;
    color: #fff;
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 10px;
    padding: 11px 12px;
    outline: none;
}

.hero-exp-card select:focus,
.hero-exp-card input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

.hero-exp-actions {
    margin-top: 18px;
}

.hero-exp-actions button {
    background: #ffc107;
    color: #111;
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    cursor: pointer;
}

.hero-exp-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-exp-result-main {
    color: #ffc107;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
}

.hero-exp-result-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 13px 0;
}

.hero-exp-result-row span {
    color: #aaa;
}

.hero-exp-result-row strong {
    color: #fff;
}

.hero-exp-table-card {
    margin-top: 18px;
}

.hero-exp-table {
    width: 100%;
    border-collapse: collapse;
}

.hero-exp-table th,
.hero-exp-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-exp-table th {
    color: #ffc107;
    text-align: left;
    background: #080808;
}

.hero-exp-table td {
    color: #eee;
}

@media (max-width: 768px) {
    .hero-exp-grid {
        grid-template-columns: 1fr;
    }

    .hero-exp-result-main {
        font-size: 2.2rem;
    }
}