body{
    margin:0;
    font-family:'Pretendard','Noto Sans KR',sans-serif;
    background:#0e0e13;
    color:#fff;
    overflow-x:hidden;
}


/* 기본 숨김 */
.mobile-top-logo {
    display: none;
}

/* 모바일에서만 표시 */
@media (max-width: 768px) {

    .navbar {
        display: none; /* 기존 PC 네비 숨김 */
    }

    .mobile-top-logo {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 55px;
        background: rgba(15,15,20,0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        border-bottom: 1px solid #222;
    }

    .mobile-top-logo img {
        height: 32px;
    }

    body {
        padding-top: 55px; /* 로고 높이만큼 밀어줌 */
        padding-bottom: 65px; /* 하단바 높이 */
    }
}

/* 글로우 + 배경 강화 */
body::before{
    content:'';
    position:fixed;
    width:800px;
    height:800px;
    background:radial-gradient(circle, rgba(255,0,80,0.35) 0%, rgba(0,0,0,0) 70%);
    top:-250px; right:-250px;
    z-index:-1;
}
body::after{
    content:'';
    position:fixed;
    width:1200px;
    height:1200px;
    background:radial-gradient(circle, rgba(255,0,40,0.2) 0%, rgba(0,0,0,0) 80%);
    bottom:-300px; left:-300px;
    z-index:-2;
}

/* ========================
   데스크톱 상단 네비바
   ======================== */
   .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.navbar .logo img {
    height: 40px;
    width: auto;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a, .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.85;
    transition: 0.2s;
}

.menu a:hover, .nav-link:hover {
    color: #e10600;
}

.nav-item {
    position: relative;
}

/* 드롭다운 */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20,20,30,0.95);
    min-width: 180px;
    padding: 0.5rem 0;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 500;
}

.dropdown-scroll {
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
}

.dropdown-link:hover {
    background: rgba(230,6,0,0.8);
}

.nav-item:hover > .dropdown {
    display: block;
}

/* ========================
   모바일 하단 메뉴
   ======================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 5px 0;
    z-index: 2000;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    padding: 5px;
}

.bottom-nav-item .icon {
    font-size: 20px;
}

.dropdown-wrapper {
    position: relative;
}

.dropdown-mobile {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20,20,30,0.95);
    border-radius: 8px;
    padding: 5px 0;
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 500;
    flex-direction: column;
}

.dropdown-mobile .dropdown-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: #fff;
    text-decoration: none;
}

.dropdown-mobile .dropdown-link:hover {
    background: rgba(230,6,0,0.8);
}

/* 터치 시 열기 */
.dropdown-wrapper.active .dropdown-mobile {
    display: flex;
	flex-direction: column;
}

.mobile-bottom-nav {
    display: none;
}

/* 모바일 전용 표시 */
@media (max-width: 768px) {
	.navbar { display: none; }

	.mobile-bottom-nav {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background: rgba(15,15,20,0.95);
		backdrop-filter: blur(10px);
		display: flex;
		justify-content: space-around;
		align-items: center;
		padding: 8px 0;
		z-index: 1000;
		border-top: 1px solid #222;
	}

	.bottom-item {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		font-size: 12px;
		color: #fff;
		text-decoration: none;
		cursor: pointer;
	}

	.bottom-item .icon {
		font-size: 18px;
		margin-bottom: 2px;
	}

	/* =========================
	드롭다운
	========================= */

	.dropdown-mobile {
		position: absolute;
		bottom: 60px;
		left: 50%;
		transform: translateX(-50%) translateY(10px);
		background: rgba(25,25,35,0.98);
		border-radius: 12px;
		padding: 8px 0;
		min-width: 160px;
		max-height: 260px;
		overflow-y: auto;
		box-shadow: 0 10px 25px rgba(0,0,0,0.4);
		opacity: 0;
		visibility: hidden;
		transition: all 0.25s ease;
	}

	.dropdown-wrapper.active .dropdown-mobile {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}

	.dropdown-link {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 8px 14px;
		font-size: 14px;
		color: #fff;
		text-decoration: none;
	}

	.dropdown-link:hover {
		background: rgba(230,6,0,0.9);
	}

	.view-all {
		border-top: 1px solid #333;
		margin-top: 6px;
		padding-top: 10px;
		font-weight: bold;
		color: #e94560;
	}
}
/* HERO */
.section{padding:100px 20px;}
.container{max-width:1100px;margin:auto;}
.center{text-align:center;}
.hero h1{font-size:38px;margin-bottom:20px;}
.hero p{opacity:0.85;margin-bottom:40px;}
.btn-primary{
    display:inline-block;
    background:#e10600;
    color:#fff;
    padding:20px 50px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    font-size:20px;
    position:relative;
    overflow:hidden;
    transition:0.3s;
}
.btn-primary:hover{background:#ff2b2b;transform:translateY(-3px);}
.btn-primary::after{
    content:'';
    position:absolute;top:0;left:-75%;
    width:50%;height:100%;
    background:rgba(255,255,255,0.3);
    transform:skewX(-25deg);
}
.btn-primary:hover::after{animation:shine 0.8s forwards;}
@keyframes shine{100%{left:125%;}}

/* 카드 영역 */
.feature-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
    justify-items: center; /* 마지막 줄도 가운데 정렬 */
}
.feature-box {
    background:#181822;
    padding:30px;
    border-radius:12px;
    transition:0.3s;
    text-align: left; /* ← 가운데 정렬 제거, 왼쪽 기준으로 정렬 */
}

.feature-box h3 {
    margin-bottom:10px;
}

.feature-box p {
    margin-bottom:8px; /* 줄 간격 조절 */
    line-height:1.5;   /* 가독성 향상 */
}

.feature-box:hover{
    background:#222232;transform:translateY(-8px);box-shadow:0 10px 30px rgba(0,0,0,0.6);
}
.icon{font-size:30px;color:#e10600;margin-bottom:18px;}

/* 광고 배너 */
.ad-banner{margin:50px auto;display:flex;flex-wrap:wrap;gap:20px;justify-content:center;}
.ad-banner a{display:block;border-radius:14px;overflow:hidden;transition:0.3s;}
.ad-banner a img{width:300px;height:150px;object-fit:cover;display:block;}
.ad-banner a:hover{transform:scale(1.05);}

/* 접속자 카운트 */
.visitor-count{font-size:24px;font-weight:700;color:#ff2b2b;margin-top:10px;}

/* 반응형 */
@media(max-width:768px){
    .hero h1{font-size:28px;}
    .section{padding:120px 20px;}
    .navbar{padding:12px 20px;}
    .ad-banner a img{width:90%;height:auto;}
}

/* =========================
   추천 서비스 박스
========================= */
.container .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
	padding-left: 10px;
	padding-right: 10px;
}

.brand-card {
    background: #181822;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-card:hover {
    background: #222232;
    transform: translateY(-5px);
}

.brand-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.brand-status {
    font-size: 12px;
	color: #00c853; /* 녹색 계열 */
    font-weight: 600;
}

/* 반응형 */
@media(max-width:768px){
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}


.faq-item {
    border-bottom: 1px solid #333;
    padding: 15px 0;
}

.faq-item h4 {
    color: #e10600;
    cursor: pointer;
    position: relative;
    margin: 0;
    font-size: 1.1rem;
}

.faq-item h4::after {
    content: '+';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.faq-item.active h4::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    padding-left: 5px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* 충분히 큰 값 */
    opacity: 1;
}
.site-footer {
    background: #0e0e13;
    color: #ccc;
    padding: 60px 20px 30px;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.site-footer a:hover {
    color: #e10600;
}

.site-footer .container {
    max-width: 1100px;
    margin: auto;
}

.site-footer h4 {
    color: #e10600;
    margin-bottom: 15px;
}

.site-footer .footer-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background: #e10600;
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}

.site-footer .footer-btn:hover {
    background: #ff2b2b;
}

.site-footer .footer-brands ul {
    list-style: none;
    padding: 0;
}

.site-footer .footer-brands li {
    margin-bottom: 8px;
}

.site-footer .verified {
    color: #00ff6c; /* 실시간 검증 녹색 */
    font-weight: 600;
}

.site-footer .footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #888;
}