* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(225, 6, 0, 0.24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(0, 55, 180, 0.26), transparent 36%),
        linear-gradient(135deg, #070707, #151515 62%, #050505);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 28px 0 40px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 42px;
}

.logo {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span,
.section-title span,
.card-title span,
.hero-text span {
    color: #e10600;
}

.nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.status {
    color: #d1d1d1;
    font-size: 14px;
}

.btn,
button {
    display: inline-block;
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    background: rgba(255,255,255,0.09);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.22s;
    border: 1px solid rgba(255,255,255,0.12);
}

.btn:hover,
button:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.16);
}

.btn-main,
button {
    background: #e10600;
    border-color: #e10600;
    box-shadow: 0 0 22px rgba(225, 6, 0, 0.35);
}

.btn-danger {
    background: #8b0000;
    border-color: #c40000;
}

.btn-small {
    padding: 8px 11px;
    border-radius: 10px;
    font-size: 13px;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 34px;
}

.hero-text h1 {
    font-size: clamp(34px, 5vw, 70px);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 22px;
}

.hero-text p {
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.55;
    max-width: 620px;
}

.hero-img-box {
    aspect-ratio: 16 / 9;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
    background: #111;
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.11);
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.card-title h2,
.section-title {
    font-size: 27px;
    text-transform: uppercase;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row.full,
.form-actions {
    grid-column: 1 / -1;
}

label {
    color: #e8e8e8;
    font-weight: 700;
    font-size: 14px;
}

input,
select {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(0,0,0,0.35);
    color: #fff;
    padding: 13px 14px;
    outline: none;
}

select option {
    background: #151515;
    color: #fff;
}

input:focus,
select:focus {
    border-color: #e10600;
    box-shadow: 0 0 0 3px rgba(225,6,0,0.18);
}

.form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.notice {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    color: #e8e8e8;
    line-height: 1.5;
}

.notice.error {
    background: rgba(225,6,0,0.18);
    border: 1px solid rgba(225,6,0,0.35);
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
}

th,
td {
    padding: 13px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.09);
    vertical-align: top;
}

th {
    color: #fff;
    background: rgba(225,6,0,0.22);
    font-size: 14px;
}

td {
    color: #d8d8d8;
}

tr:hover td {
    background: rgba(255,255,255,0.04);
}

.actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer {
    margin-top: 32px;
    text-align: center;
    color: #8f8f8f;
    font-size: 14px;
}

@media (max-width: 850px) {
    .header,
    .card-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero,
    .form-grid {
        grid-template-columns: 1fr;
    }
}
