.actp-wrap,
.actp-wrap * {
    box-sizing: border-box;
}

.actp-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 0;
    color: #efe7d9;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

.actp-overline {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    color: #bfae8a;
    margin-bottom: 6px;
}

.actp-hero,
.actp-card,
.actp-stat-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
        rgba(17,17,22,0.94);
    border: 1px solid rgba(191,161,95,0.18);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.24);
}

.actp-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    margin-bottom: 18px;
}

.actp-hero h1,
.actp-card h1,
.actp-card h2 {
    margin: 0 0 10px;
    font-family: Cinzel, Georgia, serif;
    color: #f5eddd;
}

.actp-hero p,
.actp-card p,
.actp-note {
    color: #c7bcad;
    line-height: 1.6;
}

.actp-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.actp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.actp-grid--stats {
    grid-template-columns: repeat(4, 1fr);
}

.actp-stat-card {
    padding: 16px;
}

.actp-stat-card small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #bcae94;
    margin-bottom: 6px;
}

.actp-stat-card strong {
    font-size: 24px;
    color: #e2c783;
}

.actp-card {
    padding: 18px;
}

.actp-card--center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.actp-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.actp-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #efdeb2;
    background: rgba(191,161,95,0.10);
    border: 1px solid rgba(191,161,95,0.20);
}

.actp-pill--admin {
    color: #efb2b2;
    background: rgba(165,40,40,0.12);
    border-color: rgba(165,40,40,0.24);
}

.actp-btn {
    appearance: none;
    display: inline-block;
    border: 1px solid rgba(191,161,95,0.24);
    background:
        linear-gradient(180deg, rgba(191,161,95,0.12), rgba(191,161,95,0.04)),
        rgba(22,22,28,0.96);
    color: #f4ede0;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
}

.actp-btn--accent {
    background:
        linear-gradient(180deg, rgba(165,40,40,0.24), rgba(122,29,29,0.06)),
        rgba(22,22,28,0.96);
    border-color: rgba(165,40,40,0.28);
}

.actp-notice,
.actp-note {
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(191,161,95,0.10);
}

.actp-notice {
    color: #d7efc8;
    background: rgba(76,119,77,0.12);
    border-color: rgba(111,156,116,0.24);
    margin-bottom: 14px;
}

.actp-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.actp-table {
    width: 100%;
    border-collapse: collapse;
}

.actp-table th,
.actp-table td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: top;
}

.actp-table th {
    width: 220px;
    color: #e2c783;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.actp-table--full th {
    width: auto;
}

.actp-table td {
    color: #ece2d3;
    font-size: 14px;
}

.actp-table select,
.actp-table input[type="text"],
.actp-table input[type="number"] {
    width: 100%;
    min-width: 240px;
    max-width: 100%;
    padding: 9px 10px;
    border-radius: 8px;
    border: 1px solid rgba(191,161,95,0.18);
    background: rgba(12,12,16,0.92);
    color: #f1eadc;
}

.actp-list {
    margin: 0;
    padding-left: 18px;
    color: #c7bcad;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .actp-hero,
    .actp-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .actp-grid,
    .actp-grid--stats {
        grid-template-columns: 1fr;
    }
}
