
/* 홈 페이지 */
.home-main {
    flex: 1;
    background-color: white;
    color: #333;
    padding: 0;
    min-height: calc(100vh - 200px);
}

.home-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-section {
    padding: 40px 0;
    margin-bottom: 1px;
}

.home-section:last-child {
    margin-bottom: 0;
}

.home-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

.home-featured-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.home-featured-card:first-child {
    grid-column: span 2;
}

@media (max-width: 1024px) {
    .home-featured-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-featured-card:first-child {
        grid-column: span 2;
    }
}

.home-featured-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.home-featured-card:hover {
    background-color: #f0f4f9;
}

.home-featured-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.home-featured-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-featured-card-icon {
    width: 20px;
    height: 20px;
    color: var(--theme-color);
    flex-shrink: 0;
}

.home-featured-card-icon-red {
    color: #ff4444;
}

.home-featured-card-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.home-featured-card-link {
    font-size: 14px;
    color: var(--theme-color);
    text-align: right;
    margin-top: auto;
    font-weight: 500;
}

.home-featured-card-link i {
    font-size: 12px;
    margin-left: 4px;
}

.home-help-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.home-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.home-help-card:hover {
    background-color: #f0f4f9;
}

.home-help-card-text {
    font-size: 15px;
    color: #333;
    flex: 1;
}

.home-help-card i {
    font-size: 14px;
    color: var(--theme-color);
    margin-left: 12px;
}

/* 홈 페이지 반응형 */
@media (max-width: 768px) {
    .home-container {
        padding: 0 12px;
    }

    .home-section {
        padding: 32px 0;
    }

    .home-section-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .home-featured-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-featured-card {
        padding: 20px;
    }

    .home-featured-card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .home-featured-card-subtitle {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .home-featured-card-link {
        font-size: 13px;
    }

    .home-help-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-help-card {
        padding: 18px;
    }

    .home-help-card-text {
        font-size: 14px;
    }
}

/* 신고 페이지 */
.report-entry-cards {
    grid-template-columns: repeat(2, 1fr);
}

.report-entry-cards .home-featured-card:first-child {
    grid-column: span 1;
}

.report-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.report-head-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-head-link {
    text-decoration: none;
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 600;
}

.report-head-link:hover {
    text-decoration: underline;
}

.report-form-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

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

.report-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.report-input {
    width: 100%;
    background: #fff;
    border: 1px solid #d9dce3;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.report-input:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(0, 111, 214, 0.12);
}

.report-textarea {
    resize: vertical;
    min-height: 90px;
}

.report-player-verify {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.report-help-text {
    font-size: 13px;
    color: #666;
}

.report-help-text.ok {
    color: #0f8a42;
}

.report-help-text.fail {
    color: #c62020;
}

.report-primary-btn,
.report-secondary-btn {
    border: none;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.report-primary-btn {
    background: var(--theme-color);
    color: #fff;
}

.report-primary-btn:hover {
    background: color-mix(in srgb, var(--theme-color) 85%, black);
}

.report-secondary-btn {
    background: #eaf3fb;
    color: #1d5f93;
}

.report-secondary-btn:hover {
    background: #dcecf8;
}

.report-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-cancel-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.report-cancel-link:hover {
    text-decoration: underline;
}

.report-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #eceff4;
}

.report-list-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: #fff;
}

.report-list-table th,
.report-list-table td {
    border-bottom: 1px solid #eceff4;
    padding: 12px 10px;
    text-align: left;
    font-size: 13px;
    color: #333;
}

.report-list-table th {
    background: #f8f9fa;
    font-size: 12px;
    color: #667085;
    font-weight: 700;
}

.report-empty {
    text-align: center !important;
    color: #6b7280 !important;
}

.report-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
}

.report-status.new {
    color: #1d4ed8;
    background: #dbeafe;
}

.report-status.progress {
    color: #7c3aed;
    background: #ede9fe;
}

.report-status.done {
    color: #047857;
    background: #d1fae5;
}

.report-status.reject {
    color: #b91c1c;
    background: #fee2e2;
}

@media (max-width: 1024px) {
    .report-entry-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .report-page-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }

    .report-player-verify {
        grid-template-columns: 1fr;
    }
}
