@charset "UTF-8";
/**
 * 마나토끼 · 북토끼 · 뉴토끼 주소 안내
 * 사이트 커스텀 스타일
 */

/* ========================================
   기본 스타일
   ======================================== */

body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    background-color: #181818;
    font-family: HelveticaNeue-Light, AppleSDGothicNeo-Light, 'Noto Sans', 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-weight: 400;
    color: #dadada;
}

p {
    margin: 0;
    padding: 0;
    word-break: break-all;
}

/* ========================================
   링크 스타일
   ======================================== */

a {
    color: #e0d779;
    text-decoration: none;
}

a:link,
a:visited {
    color: #e0d779;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    color: #e0d779;
    text-decoration: none;
}

/* ========================================
   스크롤바 스타일
   ======================================== */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #161616;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ========================================
   카드 컴포넌트
   ======================================== */

.card {
    background-color: #17202c;
}

.card-body,
.card-footer {
    text-align: center;
}

/* ========================================
   버튼 스타일
   ======================================== */

.btn {
    color: #ffffff !important;
}

/* ========================================
   서브 페이지 스타일
   ======================================== */

.domain {
    font-family: 'Archivo Black', serif;
    color: #a6c5ff;
}

.page-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.logo-area {
    margin-bottom: 30px;
}

.logo-area img {
    max-width: 280px;
    height: auto;
}

.page-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-desc {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cards-area {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .cards-area {
        gap: 48px;
    }
}

.cards-area .card {
    width: 250px;
    min-height: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.cards-area .card-body {
    flex: 1;
}

.back-link {
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* ========================================
   메인 페이지 섹션 스타일
   ======================================== */

.info-section,
.site-detail-section,
.guide-section,
.faq-section,
.footer-nav-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
}

.info-section h2,
.site-detail-section h2,
.guide-section h2,
.faq-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.info-section p {
    line-height: 1.9;
    color: #b0b0b0;
}

/* ========================================
   사이트별 상세 소개
   ======================================== */

.site-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.site-detail-item {
    display: flex;
    gap: 20px;
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.2s ease;
}

.site-detail-item:hover {
    transform: translateX(5px);
}

img.site-detail-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.site-detail-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-detail-content p {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.site-detail-content ul {
    margin: 0;
    padding-left: 20px;
}

.site-detail-content ul li {
    color: #8a8a8a;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .site-detail-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   안전한 접속 가이드
   ======================================== */

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

.guide-item {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    border-left: 3px solid #a6c5ff;
}

.guide-number {
    font-family: 'Archivo Black', serif;
    font-size: 2rem;
    color: #2a3a4a;
    position: absolute;
    top: 15px;
    right: 20px;
}

.guide-item h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #ffffff;
}

.guide-item p {
    color: #a0a0a0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.guide-item strong {
    color: #a6c5ff;
}

/* ========================================
   FAQ 섹션
   ======================================== */

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background-color: #1e1e1e;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    color: #ffffff;
    background-color: #242424;
}

.faq-answer {
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #a0a0a0;
    line-height: 1.7;
}

.faq-q,
.faq-a {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
}

.faq-q {
    background-color: #a6c5ff;
    color: #181818;
}

.faq-a {
    background-color: #3a3a3a;
    color: #ffffff;
}

/* ========================================
   하단 네비게이션
   ======================================== */

.footer-nav-section {
    text-align: center;
    padding-bottom: 40px;
}

.footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    margin-bottom: 30px;
}

.footer-nav-links a {
    color: #888888;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav-links a:hover {
    color: #a6c5ff;
}

.footer-copyright {
    color: #555555;
    font-size: 0.85rem;
}
