/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    background: #f8f9fd;
    min-height: 100vh;
    color: #333;
    line-height: 1.5;
}

/* Header styles */
#header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: transparent;
}

.hd_top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 32px;
    width: auto;
}



.container {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}



/* Login title */
.lo_title01 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

/* Login form */
#login_frm {
    width: 100%;
}

.login_fields__user00,
.login_fields__user001 {
    margin-bottom: 16px;
}

.frm_input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #f8f9fa;
}

.frm_input:focus {
    border-color: #4A90E2;
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Checkbox style */
.form-check {
    margin: 12px 0;
    display: flex;
    align-items: center;
}

.form-check-input {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
}

.form-check-label {
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

/* Login button */
.btn_submit {
    width: 100%;
    padding: 14px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 16px 0;
}

.btn_submit:hover {
    background: #357ABD;
    transform: translateY(-1px);
}

.btn_submit:active {
    transform: translateY(0);
}

/* Links list */
.lo_ul {
    display: flex;
    justify-content: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.lo_ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-block;
}

.lo_ul li a:hover {
    background: #e9ecef;
    color: #2c3e50;
}

/* Footer fixed menu */


.footer_fixed_table {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 12px 0;
}

.ff_td {
    flex: 1;
    text-align: center;
}

.ff_td a {
    
    padding: 4px;
}





/* Mobile optimizations */
@media (max-width: 480px) {
    .con_inner {
       
    }
    
    .lo_title01 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .frm_input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .btn_submit {
        padding: 12px;
        font-size: 14px;
    }
    
    .lo_ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .lo_ul li {
        flex: 1;
        
        text-align: center;
    }
    
    .lo_ul li a {
        width: 100%;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .footer_fixed_table {
        padding: 8px 0;
    }
    
    .ff_td a {
        font-size: 11px;
    }
    
    .ff_img img {
        width: 20px;
        height: 20px;
    }
}

/* Smooth animations */
.con_inner {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Hide unnecessary elements */
hr {
    display: none;
}

.sound_only {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

/* Menu trigger styles */
.menu-trigger {
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.menu-trigger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-trigger span:nth-child(1) { top: 0; }
.menu-trigger span:nth-child(2) { top: 9px; }
.menu-trigger span:nth-child(3) { bottom: 0; }

.menu-trigger.active-1 span:nth-child(1) {
    transform: translateY(9px) rotate(-45deg);
}

.menu-trigger.active-1 span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active-1 span:nth-child(3) {
    transform: translateY(-9px) rotate(45deg);
}


.main_images {
margin: 32px auto;
    width: 100%;
    max-width: 540px;
	}
.main_images img {width:100%; border-radius:10px;}

@media (max-width: 480px) { 
.main_images {
padding:20px;
 }

}

/* 회원가입 */
/* Sign Up Container styles */
.index_wrap {
    min-height: 100vh;
    display: flex;
   
    justify-content: center;
    padding: 20px;
    background: #f8f9fd;
}

.container {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.con_inner {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Title styling */
.lo_title01 {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-bottom: 35px;
    text-align: center;
}

/* Form fields styling */
.join_fields__user {
    position: relative;
    margin-bottom: 24px;
}

.join_fields__user input {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #f8f9fa;
}

.join_fields__user input:focus {
    border-color: #4A90E2;
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Phone number fields */
.reg_mb_id {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.reg_mb_id input {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    border: 1.5px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
}

/* Agreement section */
.form-check {
    padding: 20px 0;
    margin: 24px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.form-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.form-check-label a {
    margin-left: auto;
    color: #4A90E2;
    text-decoration: none;
}

/* Sign up button */
.btn_submit {
    width: 100%;
    height: 52px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(74, 144, 226, 0.1);
}

.btn_submit:hover {
    background: #357ABD;
    transform: translateY(-1px);
    box-shadow: 0 6px 8px rgba(74, 144, 226, 0.2);
}

/* Login link */
.lo_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

.lo_ul li {
    font-size: 14px;
    text-align: center;
}



.lo_ul li a:hover {
    background: #e9ecef;
    color: #4A90E2;
    transform: translateY(-1px);
}

.lo_ul li:first-child a {
    color: #999;
}

.lo_ul li:last-child a {
    background: #4A90E2;
    color: #999;
}

.lo_ul li:last-child a:hover {
    background: #357ABD;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .con_inner {
        padding: 30px 24px;
    }
    
    .lo_title01 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .join_fields__user input {
        padding: 14px;
        font-size: 14px;
    }
    
    .btn_submit {
        height: 48px;
        font-size: 15px;
    }
	.lo_ul {
        gap: 12px;
    }
    
    .lo_ul li a {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Animation */
.con_inner {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 전체 컨테이너 스타일링 */
.all_wrap {
    min-height: 100vh;
    background: #f8f9fd;
   
    
}

/* 메인 컨테이너 */
.mbskin {
    width: 100%;
    max-width: 460px;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin: 60px auto;
}

/* 타이틀 스타일 */
.lo_title01 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/* 이미지 스타일링 */
.mbskin img {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto;
}

/* 안내 메시지 스타일링 */
.mbskin p {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

/* 하단 메뉴 스타일링 */
.footer_fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer_fixed_table {
    display: flex;
    justify-content: space-around;
    max-width: 520px;
    margin: 0 auto;
}




.txt_block {
    font-size: 12px;
    color: #666;
}

/* 모바일 반응형 */
@media (max-width: 480px) {
    .mbskin {
        padding: 30px 20px;
        margin: 40px auto;
    }

    .lo_title01 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .mbskin img {
        width: 180px;
    }

    .mbskin p {
        font-size: 14px;
        padding: 16px;
        line-height: 1.5;
    }
}

/* 애니메이션 효과 */
.mbskin {
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 메인 레이아웃 */
/* 메인 레이아웃 */
.index_wrap {
   padding: 15px;
   background: #f8f9fd;
}

/* 컨테이너 기본 설정 */
.content, .lbank, .buyrem, .rection01, .news_con {
   width: 100%;
   margin-bottom: 20px;
}

/* 메인 배너 */
.content img {
   width: 100%;
   border-radius: 15px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 시세 정보 박스 */
.lbank ul {
   background: linear-gradient(45deg, #4A90E2, #5977e7);
   border-radius: 12px;
   padding: 12px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.lbank ul li {
   color: white;
   text-align: center;
   font-size: 14px;
   padding: 8px 0;
   border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lbank ul li:last-child {
   border-bottom: none;
}

/* REM 구매 섹션 */
.buyrem {
   background: white;
   border-radius: 12px;
   padding: 20px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.buyrem h3 {
   font-size: 16px;
   margin-bottom: 15px;
   text-align: center;
}

.buyrem ul {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 15px;
}

.buyrem ul li {
   width: 100%;
}

.buyrem ul li a {
   display: block;
   background: #ffcf00;
   padding: 12px;
   border-radius: 8px;
   text-align: center;
}

/* 자산 정보 카드 */
.assers_bx {
   display: flex;
   flex-direction: column;
   gap: 15px;
}

.as_ul02 {
   background: white !important;
   border-radius: 12px;
   padding: 15px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.asser_top {
   display: flex;
   align-items: center;
   margin-bottom: 12px;
}

.asser_top .left img {
   width: 32px;
   height: 32px;
   margin-right: 12px;
}

/* FAQ 섹션 */
.news_con dt {
   padding: 15px;
   border-bottom: 1px solid #eee;
   font-size: 14px;
}

.news_con dd {
   padding: 15px;
   background: #f8f9fa;
   font-size: 13px;
   line-height: 1.6;
   display: none;
}

/* 푸터 고정 메뉴 */







.txt_block {
   font-size: 11px;
   color: #666;
}

/* 스크롤을 위한 하단 여백 */
.all_wrap {
   padding-bottom: 70px;
}

/* 애니메이션 효과 */
.as_ul02, .buyrem, .news_con {
   transition: transform 0.2s ease;
}

.as_ul02:active, .buyrem:active, .news_con dt:active {
   transform: scale(0.98);
}





/* Modern Header */
#header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hd_top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 2.5rem;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}



/* Card Components */
.card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
}

/* Statistics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
}

.stat-card h3 {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.stat-card .value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Modern Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 1rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(67, 97, 238, 0.1);
}

/* Footer Navigation */




.ff_td a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.ff_td a:hover {
  color: var(--primary-color);
}

.ff_img img {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.ff_td a:hover .ff_img img {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1rem;
  }

  .nav-menu {
    display: none;
  }

  .menu-trigger {
    display: block;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}

/* Modern Form Elements */
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e9ecef;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: var(--background-light);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
  outline: none;
}

/* Card Layouts */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-card__description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}


