:root {
    --bg-main: #0a0f16;
    --bg-card: #131a26;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent-glow: rgba(255, 41, 117, 0.5);
    --accent-primary: #ff2a75;
    --accent-secondary: #ffb800;
    --border-color: #1e293b;
    --card-radius: 16px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 42, 117, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 184, 0, 0.05), transparent 25%);
    background-attachment: fixed;
}

.wrap {
    max-width: 900px;
    margin: 50px auto;
    padding: 50px;
    background: var(--bg-card);
    border-radius: var(--card-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: block;
}

.wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.crumb-path {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.crumb-path a {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.crumb-path a:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 8px var(--accent-glow);
}

.crumb-path em {
    font-style: normal;
    margin: 0 8px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.crumb-path span {
    color: var(--text-primary);
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-top: 45px;
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    margin-top: 10px;
    margin-bottom: 30px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
}

h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 24px;
    background: var(--accent-primary);
    margin-right: 12px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent-glow);
}

h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-top: 32px;
    margin-bottom: 16px;
}

p {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

strong {
    color: #fff;
    font-weight: 600;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px var(--accent-glow);
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-secondary);
    font-size: 14px;
}

.data-grid {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 35px 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(0,0,0,0.2);
}

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

table, th, td {
    border: none;
}

th, td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

.qna {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 0 24px;
    margin-bottom: 16px;
    border-radius: 12px;
    transition: var(--transition);
    overflow: hidden;
}

.qna:hover {
    border-color: rgba(255, 42, 117, 0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.04);
}

.qna summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 0;
    font-size: 18px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    position: relative;
    padding-right: 40px;
}

.qna summary::-webkit-details-marker {
    display: none;
}

.qna summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-secondary);
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.25s ease;
}

.qna[open] summary::after {
    content: '−';
    color: var(--accent-primary);
}

.qna p {
    margin: 0 0 20px 0;
    font-size: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.page-foot {
    background-color: #05080c;
    color: var(--text-secondary);
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    font-size: 13px;
    border-top: 1px solid var(--border-color);
}

.page-foot p {
    margin: 8px 0;
    font-size: 13px;
}

.foot-inner {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .wrap {
        margin: 20px;
        padding: 25px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 19px;
    }
}
