/* point-games.php 전용 스타일 */

/* 포털 컨테이너 - 메인 콘텐츠 너비 확장 */
body.page-point-games .portal-container,
body.page-point-games main .portal-container,
body.page-point-games .main .portal-container {
    display: grid !important;
    grid-template-columns: 280px 1fr 300px !important;
    gap: 1rem !important;
    max-width: 2000px !important;
    margin: 0 auto !important;
}

/* 왼쪽 사이드바 */
body.page-point-games .portal-container .left-sidebar,
body.page-point-games .left-sidebar,
body.page-point-games aside.left-sidebar {
    width: 280px !important;
    max-width: 280px !important;
    min-width: 280px !important;
    flex: 0 0 280px !important;
}

/* 오른쪽 사이드바 */
body.page-point-games .portal-container .right-sidebar,
body.page-point-games .right-sidebar,
body.page-point-games aside.right-sidebar {
    width: 300px !important;
    max-width: 300px !important;
    min-width: 300px !important;
    flex: 0 0 300px !important;
}

/* 메인 콘텐츠 영역 */
body.page-point-games .portal-container > .main-content,
body.page-point-games .main-content {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}

body.page-point-games .main-content > .content-section,
body.page-point-games .content-section {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* 페이지 헤더 */
body.page-point-games .content-section .page-header,
body.page-point-games .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 2.5rem 2rem !important;
    margin: 0 !important;
    border-radius: 12px 12px 0 0 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: none !important;
}

body.page-point-games .page-header h1 {
    color: white !important;
    font-size: 2.2rem !important;
    margin-bottom: 0.8rem !important;
}

body.page-point-games .page-header i {
    color: white !important;
}

body.page-point-games .page-header p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.1rem !important;
}

/* 콘텐츠 박스 */
body.page-point-games .content-section .privacy-content-box,
body.page-point-games .privacy-content-box {
    background: white !important;
    padding: 2.5rem !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 400px !important;
}

/* 반응형 디자인 */
@media (max-width: 1600px) {
    body.page-point-games .portal-container {
        grid-template-columns: 200px 1fr 220px !important;
    }
}

@media (max-width: 1400px) {
    body.page-point-games .portal-container {
        grid-template-columns: 180px 1fr 200px !important;
    }

    body.page-point-games .left-sidebar {
        width: 180px !important;
        max-width: 180px !important;
        min-width: 180px !important;
    }

    body.page-point-games .right-sidebar {
        width: 200px !important;
        max-width: 200px !important;
        min-width: 200px !important;
    }
}

@media (max-width: 1200px) {
    body.page-point-games .portal-container {
        grid-template-columns: 160px 1fr 180px !important;
    }

    body.page-point-games .left-sidebar {
        width: 160px !important;
        max-width: 160px !important;
        min-width: 160px !important;
    }

    body.page-point-games .right-sidebar {
        width: 180px !important;
        max-width: 180px !important;
        min-width: 180px !important;
    }
}

@media (max-width: 992px) {
    body.page-point-games .portal-container {
        grid-template-columns: 140px 1fr 160px !important;
    }

    body.page-point-games .left-sidebar {
        width: 140px !important;
        max-width: 140px !important;
        min-width: 140px !important;
    }

    body.page-point-games .right-sidebar {
        width: 160px !important;
        max-width: 160px !important;
        min-width: 160px !important;
    }
}

@media (max-width: 768px) {
    body.page-point-games .portal-container {
        grid-template-columns: 120px 1fr 140px !important;
    }

    body.page-point-games .left-sidebar {
        width: 120px !important;
        max-width: 120px !important;
        min-width: 120px !important;
    }

    body.page-point-games .right-sidebar {
        width: 140px !important;
        max-width: 140px !important;
        min-width: 140px !important;
    }
}

@media (max-width: 576px) {
    body.page-point-games .portal-container {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto;
    }

    body.page-point-games .left-sidebar,
    body.page-point-games .right-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
}
