/* -------------------------------
   ✅ 기본 초기화 및 베이스 스타일
-------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    color: white;
    background: linear-gradient(135deg, #000000 0%, #021c3d 30%, #080502 70%, #070818 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 768px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
}

.sub_container {
	max-width: 768px;
	margin: 0 auto;
	min-height: 100vh;
	position: relative;
	padding: 13px;
	padding-bottom: 50px;
	overflow-y: auto;
	overflow-x: hidden;
}

a { outline: 0 none; transition: all 0.5s; color: #ffffff; }

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

a:hover, a:focus, a:active { outline: 0; color: #ffffff; }

h1, .h1, .fz-1 { font-size: 1.75rem; }

h2, .h2, .fz-2 { font-size: 1.35rem; }

h3, .h3, .fz-3 { font-size: 1.25rem; }

h4, .h4, .fz-4 { font-size: 1.2rem; }

h5, .h5, .fz-5 { font-size: 1.2rem; }

h6, .h6, .fz-6 { font-size: 0.94rem; }


/* -------------------------------
   ✅ Swiper 슬라이드 구성
-------------------------------- */
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    min-height: 100vh;
    padding: 20px;
    padding-bottom: 140px;
    overflow-y: auto;
    overflow-x: hidden;

    /* 스크롤바 숨기기 (브라우저 호환 포함) */
    scrollbar-width: none;         /* Firefox */
    -ms-overflow-style: none;      /* IE/Edge */
}
.swiper-slide::-webkit-scrollbar {
    display: none;                 /* Chrome/Safari */
}

/* -------------------------------
   ✅ 헤더 및 프로필 영역
-------------------------------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    margin-bottom: 20px;
	padding: 10px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-img {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
	
}



.profile-img img {
    width: 100%;
    height: 100%;
    padding: 5px;
    border-radius: 38%;
    
}



.welcome-text h2 {
    font-size: 16px;
    margin-bottom: 5px;
}

.welcome-text p {
    font-size: 14px;
    color: #aaa;
}

.left-section {
	display: flex;
	align-items: center;
	gap: 15px;
}
/* -------------------------------
   ✅ 기타 구성 요소
-------------------------------- */
.section-title {
    margin-bottom: 15px;
    font-size: 18px;
}

.hamburger-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-btn:hover {
    background: rgb(255 202 0 / 30%);
    border-color: #ffe066;
    transform: scale(1.1);
    color: #ffcb00;
    box-shadow: 0 0 15px rgb(237 112 0 / 40%);
}

.copy-btn {
    padding: 14px 20px;
    background: linear-gradient(135deg, #c37808 0%, #ffa500 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
   box-shadow: 0 6px 30px rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
	justify-content: center;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #e54305 0%, #ff9a03 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.1);
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 15px rgba(59, 130, 246, 0.3);
}

.copy-btn i {
    font-size: 16px;
}



/* ✅ Bio Authentication Button */
.auth-btn {
    background: linear-gradient(135deg, #D0FB85 0%, #8BC34A 100%);
    color: #2E7D32;
    border: none;
    border-radius: 25px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4);
    transition: all 0.3s ease;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.6);
}

/* ✅ Bio Authentication Popup Overlay */
/*.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ✅ Bio Authentication Popup */
/*.popup {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 728px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.8);
    z-index: 3001;
    padding: 30px 25px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup.active {
    bottom: 0;
}

.popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.popup-progress {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin: 0 auto 30px;
}

.popup-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.popup-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 40px;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ✅ Popup Buttons */
/*.activate-btn {
    background: linear-gradient(135deg, #D0FB85 0%, #8BC34A 100%);
    color: #2E7D32;
    border: none;
    border-radius: 50px;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.activate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.4);
}

.later-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.later-btn:hover {
    color: white;
}/*

/* ✅ Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.closing {
    animation: fadeOut 0.3s ease;
}

/* ✅ Popup Container */
.popup-container {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    animation: popupSlideIn 0.3s ease forwards;
}

.popup-overlay.closing .popup-container {
    animation: popupSlideOut 0.3s ease forwards;
}

/* ✅ Popup Header */
.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.popup-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #D0FB85 0%, #8BC34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2E7D32;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.popup-title h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

.popup-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ✅ Popup Content */
.popup-content {
    padding: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    max-height: 400px;
    overflow-y: auto;
}

.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ✅ Popup Footer */
.popup-footer {
    padding: 20px 25px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ✅ Popup Buttons */
.popup-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup-btn-secondary {
    background: linear-gradient(135deg, #D0FB85 0%, #8BC34A 100%);
    color: #2E7D32;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.popup-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.4);
}

.popup-btn-secondary:active {
    transform: translateY(0);
}

/* ✅ Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes popupSlideOut {
    from {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    to {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }
}

/* ✅ Responsive */
@media (max-width: 576px) {
    .popup-container {
        max-width: calc(100% - 40px);
        border-radius: 20px;
    }
    
    .popup-header {
        padding: 20px 20px 15px;
    }
    
    .popup-title h2 {
        font-size: 18px;
    }
    
    .popup-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .popup-content {
        padding: 20px;
        font-size: 14px;
        max-height: 300px;
    }
    
    .popup-footer {
        padding: 15px 20px 20px;
    }
    
    .popup-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* ✅ Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 728px;
    background: linear-gradient(135deg, #d55b04 0%, #ffc800 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 3000;
}

/* ✅ Back Button */
.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-btn:hover {
   background: rgb(155 107 15 / 30%);
    border-color: #ebc405;
    transform: scale(1.1);
    color: #cd7b12;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.back-btn:active {
    transform: scale(0.95) translateX(-2px);
}

        
/* Logout Button */
.logout-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #c37808 0%, #ffa500 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    
}

/* Shine effect on hover */
.logout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.logout-btn:hover::before {
    left: 100%;
}

/* Hover effect */
.logout-btn:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.6);
}

/* Active (press) effect */
.logout-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
}

 
.btn-date {
	padding: 10px 14px;
	font-size: 14px;
	border: none;
	border-radius: 6px;
	color: #fff;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease;
}

.btn-date_p {
	padding: 12px 14px;
	font-size: 14px;
	border: none;
	border-radius: 6px;
	color: #fff;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease;
}




.btn-danger   { background-color: #e6604a; } 
.btn-primary   { background-color: #f48b03; }   /* Indigo */
.btn-success   { background-color: #10B981; }   /* Green */
.btn-info      { background-color: #3B82F6; }   /* Blue */
.btn-warning   { background-color: #F59E0B; }   /* Amber */
.btn-secondary { background-color: #6B7280; }   /* Gray */
.btn-dark      { background-color: #111827; }   /* Black-ish */

.btn-danger:hover   { background-color: #e6604a; }
.btn-primary:hover   { background-color:#df8746; }
.btn-success:hover   { background-color: #059669; }
.btn-info:hover      { background-color: #2563EB; }
.btn-warning:hover   { background-color: #D97706; }
.btn-secondary:hover { background-color: #4B5563; }
.btn-dark:hover      { background-color: #000000; }
/* -------------------------------
   ✅ 햄버거 메뉴 오버레이 + 슬라이드 메뉴 스타일
-------------------------------- */

/* 🔷 메뉴 오버레이 */
.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 🔷 슬라이드 메뉴 전체 */
.slide-menu {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 728px;
    background:linear-gradient(135deg, #120800 0%, #060459 50%, #0a0908 100%);
    border-radius: 0 0 25px 25px;
    border: 1px solid rgba(138, 123, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    top: 0;
}

/* 🔷 메뉴 헤더 */
.menu-header {
    padding: 30px 25px 20px;
    background: linear-gradient(135deg, rgba(138, 123, 246, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.menu-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* 🔷 닫기 버튼 */
.menu-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 35px; height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: rgba(255, 107, 107, 0.3);
    border-color: rgba(255, 107, 107, 0.5);
    color: #ff6b6b;
    transform: scale(1.1);
}

/* 🔷 메뉴 컨텐츠 영역 (스크롤 포함) */
.menu-content {
    padding: 20px 0;
    max-height: 82vh;
    overflow-y: auto;
    scrollbar-width: none;         /* Firefox */
    -ms-overflow-style: none;      /* IE */
}
.menu-content::-webkit-scrollbar {
    display: none;                 /* Chrome/Safari */
}

/* -------------------------------
   ✅ 메뉴 섹션 및 아이템
-------------------------------- */

/* 🔷 섹션 */
.menu-section {
    margin-bottom: 0px;
}

.menu-section-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255);
    padding: 10px 27px 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

/* 🔷 메뉴 아이템 */
.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 22px;
    position: relative;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ffbc00, #efff00);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    background:rgb(255 214 0 / 15%);
    padding-left: 35px;
    color: #ffffff;
}
.menu-item:hover::before {
    transform: scaleY(1);
}

/* 🔷 아이콘 */
.menu-item-icon {
    width: 24px; height: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgb(249 138 0 / 30%), rgb(0 0 0 / 20%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.menu-item:hover .menu-item-icon {
    background: linear-gradient(135deg, #ff8e01, #3f1f03);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgb(255 179 2 / 40%);
}

/* 🔷 컨텐츠 및 텍스트 */
.menu-item-content {
    flex: 1;
}

.menu-item-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.menu-item-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.menu-item:hover .menu-item-desc {
    color: rgb(255 214 0 / 70%);
}

/* 🔷 화살표 */
.menu-item-arrow {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.menu-item:hover .menu-item-arrow {
    color: #ffbf00;
    transform: translateX(5px);
}

/* ========================================
   ✅ 대시보드 카드
======================================== */
.points-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.points-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.points-title {
    font-size: 16px;
    color: #fff;
}

.btn-icon {
            width: 37px;
			height: 37px;
			border-radius: 16px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 24px;
			background: linear-gradient(135deg, #6d3e03, #e3a10c, #ffbc00);
			background-size: 200% 200%;
			animation: iconGradient 3s ease infinite;
			flex-shrink: 0;
			position: relative;
			z-index: 1;
			box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
			transform-style: preserve-3d;
			transition: transform 0.3s ease;
				}

        .action-btn:hover .btn-icon {
            transform: rotateY(10deg) rotateX(5deg);
        }

        @keyframes iconGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

.testnet-badge {
            background: linear-gradient(135deg, #ffd700, #ff8c00, #ff6b6b);
            color: white;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 
                0 6px 20px rgba(255, 215, 0, 0.4),
                0 0 30px rgba(255, 107, 107, 0.3);
            animation: pulse 2s ease-in-out infinite;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .testnet-badge span {
            font-size: 14px;
        }

        .points-value {
            margin-bottom: 10px;
        }

.points-row {
    display: flex;
            gap: 16px;
}

.point-left, .point-right {
            flex: 1;
            background: linear-gradient(135deg, #b75704 0%, #edb30d 30%, #6d3d00 70%, #ffe410 100%);
            background-size: 200% 200%;
            animation: gradientMove 4s ease infinite;
            color: #ffffff;
            padding: 18px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 
               0 8px 25px rgb(197 125 14 / 40%), 0 0 40px rgb(111 103 7 / 20%)
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .point-left::before, .point-right::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .point-left:hover::before, .point-right:hover::before {
            opacity: 1;
        }

        .point-left:hover, .point-right:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
               0 12px 35px rgba(255, 255, 255, 0.2)
        }

        .point-left u, .point-right u {
            text-decoration: none;
            font-size: 20px;
            font-weight: 800;
            display: block;
            margin-bottom: 6px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: numberPulse 2s ease-in-out infinite;
        }

        @keyframes numberPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

.unit {
            font-size: 14px;
            opacity: 0.9;
            font-weight: 500;
        }
		 .action-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
/* ========================================
   ✅ 공통 버튼 스타일 (.action-btn, .referral-info-btn 공통)
======================================== */
.action-btn,
.referral-info-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 20px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            min-height: 140px;
            box-shadow: 
                0 8px 25px rgba(0,0,0,0.1),
                0 0 40px rgba(102, 126, 234, 0.1);
        }

.action-btn::before,
.referral-info-btn::before {
  content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(255, 107, 107, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

.action-btn:hover::before,
.referral-info-btn:hover::before {
    opacity: 1;
}

.action-btn:hover,
.referral-info-btn:hover {
        transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2), 0 0 60px rgb(187 141 10 / 20%);
    border-color: #f17002;
}

.action-buttons,
.referral-info-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.referral-text {
	background: rgba(0, 0, 0, 0.3);
    padding: 2px 12px;
    border-radius: 26px;   
    color: #ffffff;
    word-break: break-word;
    margin-top: 10px;
    text-align: center;
}
.referral-text-sub {
	font-size:13px;
}

.point_check {
 font-size: 14px;
            font-weight: 800;
            color: #2d3748;
            background: #510e02;
            background-size: 200% 200%;
            animation: textShine 3s ease infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

 .btn-text {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
            font-size: 14px;
            font-weight: 400;
            color: #fff;
            line-height: 1.4;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

.chevron {
            font-size: 20px;
            color: #ffffff;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
           
            font-weight: bold;
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .action-btn:hover .chevron {
            color: #ff6b6b;
            transform: translateX(6px) scale(1.2);
        }

/* 버튼별 배경 설정 */
.action-btn:first-child,
.action-btn:last-child,
.action-btn:nth-child(2),
.action-btn:nth-child(3) {
    background: linear-gradient(135deg, #fbbf00, #5e3800);
}

.referral-info-btn:nth-child(1),
.referral-info-btn:nth-child(2) {
    background: linear-gradient(135deg, #fbbf00, #5e3800);
}

/* 상태 표시 점 */
.action-btn:first-child::after,
.action-btn:last-child::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: #FFE066;
    border-radius: 50%;
    box-shadow: 0 0 8px #FFE066;
}
.update-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #e2e378 0%, #f5c336 100%);
    border: none;
    border-radius: 15px;
    color: black;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(138, 123, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.update-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.update-btn:hover::before {
    left: 100%;
}

.update-btn:hover {
    background: linear-gradient(135deg, #c79609 0%, #ed7800 100%);
    transform: translateY(-3px);
    color: #f5f5f5;
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.1);
}

.update-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(138, 123, 246, 0.4);
}

.update-btn.success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.update-btn.success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* ========================================
   ✅ Profile 섹션 (Referral Section)
======================================== */

.profile-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Info Layout */
.basic-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-row {
    display: flex;
    gap: 20px;
	flex-direction: column;
}

.info-row .info-item {
    flex: 1;
    min-width: 0; /* 텍스트 줄바꿈 허용 */
}

/* Info Item Styling */
.info-item {
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding-bottom: 10px;   
    justify-content: space-between;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 13px;
    font-weight: 500;
    color: white;
    word-break: break-word;
    overflow-wrap: break-word;
}

.info-value.highlight {
    color: #ffffff;
    font-weight: 600;
}

/* Address Info Container */
.address-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.add-text {
	font-size: 16px;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
    padding-bottom: 10px;
}

/* Address Item */
.address-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icon Box */
.address-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffe066;
    background: linear-gradient(135deg, #f17002, #7b4e0a);
}
/* Text Box */
.address-text {
    flex: 1;
}

/* Label */
.address-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
}

/* Value */
.address-value {
    font-size: 15px;
    font-weight: 500;
    color: white;
}
/* ========================================
   ✅ 추천인 섹션 (Referral Section)
======================================== */
.referral-section {
    margin-bottom: 30px;
}

.referral-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 15px;
    backdrop-filter: blur(20px);
    border: 2px solid rgb(255 191 0);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: all 0.3s ease;
}



.referral-box::after {
    content: '›';
    position: absolute;
    right: 25px;
    top: 16%;
    transform: translateY(-50%);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.referral-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb100 0%, #c11f0e 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

.referral-image::before {
    content: '';
    position: absolute;
    top: 15%; left: 15%; right: 15%; bottom: 15%;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.1));
    border-radius: 50%;
    transform: rotate(-30deg);
}



.referral-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.referral-url-display {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: #fff900;    
    word-break: break-word;
}

/* 추천 정보 전체 박스 */
.referral-info-section {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 📌 Referral Header Box */
.referral-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 📌 Referral Icon Box */
.referral-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background:linear-gradient(135deg, #000000 0%, #e79a0c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}
.referral-row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 15px;
	flex-wrap: wrap; /* 모바일 대응 */
}

/* 📌 Referral Section Layout */


.referral-content {
    flex: 1;
}

.referral-item {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}
/* 📄 Referral Text Elements */
.referral-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.referral-label {
    font-size: 12px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.referral-value {
    font-size: 16px;
    font-weight: 600;
    color: #f9e903;
}

/* ========================================
   ✅ chain-links
======================================== */

.chain-links {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chain-link {
    position: absolute;
    font-size: 14px;
    animation: chainAnimation 2s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* 개별 애니메이션 딜레이와 투명도 설정 */
.chain-link:nth-child(1) {
    animation-delay: 0s;
    transform: rotateY(0deg) translateZ(5px);
}

.chain-link:nth-child(2) {
    animation-delay: 0.3s;
    transform: rotateY(60deg) translateZ(5px);
    opacity: 0.8;
}

.chain-link:nth-child(3) {
    animation-delay: 0.6s;
    transform: rotateY(120deg) translateZ(5px);
    opacity: 0.6;
}

/* 🔗 Chain Animation (3D Rotation with Opacity + Scale) */
@keyframes chainAnimation {
    0%, 100% {
        transform: rotateY(0deg) translateZ(5px) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotateY(180deg) translateZ(8px) scale(1.1);
        opacity: 0.7;
    }
}

/* ========================================
   ✅ 산하 그룹 정보 및 진행바
======================================== */
.group-info {
    margin-top: 20px;
	background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
}


.group-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.group-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.group-count {
    font-size: 15px;
    font-weight: 600;
    color: #fff902;
}

.progress-container {
    margin-bottom: 10px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #a809f9, #30cbb6);
    border-radius: 4px;
    transition: width 0.3s ease;
    animation: progressGlow 2s ease-in-out infinite;
}

.progress-fill_my {
    height: 100%;
    background: linear-gradient(90deg, #0a07ff, #0ce3c6);
    border-radius: 4px;
    transition: width 0.3s ease;
    animation: progressGlow 2s ease-in-out infinite;
}


/* ========================================
   ✅ 애니메이션
======================================== */

@keyframes progressGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 136, 0.6); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes glow {
    from { opacity: 0.7; transform: translateX(-50%) scale(0.8); }
    to   { opacity: 1; transform: translateX(-50%) scale(1.2); }
}


/* ========================================
   ✅ 해시 마커
======================================== */

.hash-markers {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2px;
}
.hash-marker {
    width: 1px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    position: relative;
}
.hash-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

/* ========================================
   ✅ 공지 & 화이트페이퍼 버튼
======================================== */

.info-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}
.info-btn {
    padding: 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.info-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}
.info-btn:hover::before { left: 100%; }
.info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.info-btn:nth-child(1) {
    background: linear-gradient(135deg, #ff0c00 0%, #ffb100 100%);
}
.info-btn:nth-child(2) {
    background: linear-gradient(135deg, #f72e00 0%, #F472B6 100%);
}
.info-btn .chevron {
    margin-left: auto;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    opacity: 0.7;
}

/* ========================================
   ✅ input
======================================== */

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  pointer-events: auto; /* ✅ 반드시 있어야 클릭됨 */
}

.form-input:focus + .input-icon {
    color: #ffdeab;
}

select.form-input {
    appearance: none;         /* 브라우저 기본 스타일 제거 */
    -webkit-appearance: none;
    -moz-appearance: none;
    
    background: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
    background-color: #a3670a; /* 배경색 (원래의 보라색) */
    padding-right: 30px; /* 오른쪽 패딩 확보 */
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}



/* 개별 옵션의 배경색과 글꼴색 (브라우저 호환성 주의) */
.form-input option {
  background-color: #000; /* 모든 옵션의 흰색 배경 */
  color: #ffffff; /* 모든 옵션의 검은색 글꼴 */
  
}

/* ========================================
   ✅ form
======================================== */

.form-container {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group:last-of-type {
    margin-bottom: 35px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    color: white;
    font-family: "Roboto", sans-serif;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #ebc405;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.address-group {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.address-group .form-input {
    flex: 1;
}
.address-search-btn {
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    background: linear-gradient(135deg, #8B7CF6 0%, #A855F7 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(138, 123, 246, 0.3);
}

.address-search-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(138, 123, 246, 0.5);
}

/* ========================================
   ✅ 에이전트 (에어드랍) 박스
======================================== */

.airdrop-section {
    margin-bottom: 30px;
}
.airdrop-box {
    border-radius: 20px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}
.airdrop-box::after {
    content: '›';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: rgba(255,255,255,0.5);
}
.airdrop-box:hover {
    background: rgb(245 184 2 / 20%);
    border-color: #ebc405;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(223 142 15 / 30%);
}
.airdrop-image {
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4 50%, #45b7d1);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}
.airdrop-image::before {
    content: '';
    position: absolute;
    top: 15%; left: 15%; right: 15%; bottom: 15%;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    border-radius: 50%;
    transform: rotate(-45deg);
}
.airdrop-content {
    flex: 1;
}
.airdrop-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.airdrop-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}
.airdrop-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.airdrop-points {
    color: #00ff88;
    font-weight: 600;
}

/* ========================================
   ✅ Banner 공통 스타일
======================================== */
/* Banner Styling */
.banner {
    margin-bottom: 20px;
}

.banner-img {
    overflow: hidden;
    position: relative;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Banner Content - 오른쪽 정렬 */
.banner-content {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    text-align: right;
    z-index: 10;
}

/* Banner Content - 왼쪽 정렬 */
.banner-content_a {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    text-align: left;
    z-index: 10;
}

/* 제목 및 부제목 (모바일 또는 작은 화면용) */
.banner-title {
    font-size: 40px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.banner-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ========================================
   ✅ SNS 공통 스타일
======================================== */
/* SNS 버튼 스타일 */
.sns-buttons {
    gap: 15px;
}

.sns-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
}
/* ✅ SNS Buttons Section */
.sns-section {
    margin-top: 40px;
    width: 100%;
    max-width: 400px;
}

.sns-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.sns-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ✅ 공통 SNS 버튼 스타일 */
.sns-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sns-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.sns-btn:hover::before {
    left: 100%;
}

.sns-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

/* ✅ SNS별 고유 배경 및 hover 효과 */
.sns-btn.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 50%, #FCAF45 100%);
}
.sns-btn.instagram:hover {
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5);
}

.sns-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
}
.sns-btn.twitter:hover {
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.5);
}

.sns-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #005f8c 100%);
}
.sns-btn.telegram:hover {
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

.sns-btn.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}
.sns-btn.youtube:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.sns-btn.discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}
.sns-btn.discord:hover {
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

/* ========================================
   ✅ 페이지 공통 스타일
======================================== */
.page-container {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 140px);
    text-align: center;
}
.page-header {
    margin-bottom: 30px;
}
.page-title-section {
	margin-bottom: 30px;
	text-align: center;
}
.page-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #f5c589 50%, #f59504);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}
.page-icon {
    font-size: 120px;
    margin-bottom: 20px;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}
.title-underline {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #b74f06 0%, #fdaf00 100%);
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(139, 124, 246, 0.5);
	margin: 0 auto;
}
/* ========================================
   ✅ 셀 데이터 강조 스타일
======================================== */
.usdt-amount {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0,255,136,0.3);
}

.hash-value {
    font-size: 15px;
    font-weight: 500;
    color: #8B7CF6;
    background: rgba(139,124,246,0.1);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(139,124,246,0.3);
}

.date-value {
    font-size: 14px;   
    font-weight: 400;
}

/* ========================================
   ✅ banner
======================================== */
.banner {
    margin-bottom: 20px;
}
.banner-img {
    width: 100%;    
    border-radius: 15px;
    overflow: hidden;
}

/* ========================================
   ✅ 네비게이션
======================================== */


.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 16px;
    border-radius: 20px;
    min-width: 60px;
    height: 60px;
    position: relative;
    overflow: hidden;
}
.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000, #8d300d 50%, #632f03);
    opacity: 0;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.nav-item:hover::before {
    opacity: 0.3;
    transform: scale(1.1);
}
.nav-item.active {
    transform: translateY(-3px);
    color: white;
}
.nav-item.active::before {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 20px rgba(139,124,246,0.6),
                0 0 40px rgba(168,85,247,0.4),
                inset 0 1px 0 rgba(255,255,255,0.2);
}
.nav-item.active::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 53%;
    transform: translateX(-50%);
    width: 6px; height: 6px;
    background: radial-gradient(circle, #FFE066, #FFC107);
    border-radius: 50%;
    box-shadow: 0 0 10px #FFE066, 0 0 20px #FFC107;
    animation: glow 2s ease-in-out infinite alternate;
}
.nav-icon {
    width: 24px;
    height: 24px;
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* ========================================
   ✅ 테이블 컨테이너
======================================== */
.sales-table-container {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.table-wrapper {
    overflow-x: auto;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ========================================
   ✅ summary
======================================== */
.summary-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-card-p {   
    padding: 5px;
    margin-bottom: 20px;   
    align-items: center;
	font-size: 13px;
}


.summary-item {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.summary-item_p {
	flex: 1;
    display: flex;
    align-items: center;    
    gap: 5px;
    justify-content: space-between;
}

.summary-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);    
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-value {
    font-size: 18px;
    font-weight: 600;
    color: #fff900;
}

.summary-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    margin: 0 20px;
}

/* ========================================
   ✅ Empty State
======================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.6);
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-message {
    font-size: 18px;
    margin-bottom: 10px;
}

.empty-submessage {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   ✅ 테이블 컨테이너
======================================== */
.sales-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}

.sales-table thead tr {
    background: linear-gradient(135deg, #fbbf00, #5e3800);
}

.sales-table th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    color: white;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
}
.sales-table th:first-child {
    border-radius: 15px 0 0 0;
}
.sales-table th:last-child {
    border-radius: 0 15px 0 0;
}


.sales-table tbody tr {
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}
.sales-table tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.05);
}
.sales-table tbody tr:hover {
    background: rgba(138,123,246,0.15);
    transform: scale(1.01);
    box-shadow: 0 4px 20px rgba(138,123,246,0.3);
}

.sales-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.sales-table tbody tr:last-child td {
    border-bottom: none;
}
.sales-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 15px;
}
.sales-table tbody tr:last-child td:last-child {
    border-radius: 0 0 15px 0;
}

/* ========================================
   ✅ 페이지네이션
======================================== */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pagination-btn:hover {
    background: rgba(138,123,246,0.3);
    border-color: rgba(138,123,246,0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138,123,246,0.4);
    color: #C084FC;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #8B7CF6, #A855F7);
    border-color: rgba(139,124,246,0.8);
    color: white;
    box-shadow: 0 0 20px rgba(139,124,246,0.6);
    transform: scale(1.1);
}
.pagination-btn.active:hover {
    transform: scale(1.15) translateY(-2px);
}
.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255,255,255,0.05);
}
.pagination-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}


/* ========================================
   ✅ 모바일 반응형 스타일
======================================== */

@media (max-width: 480px) {
    /* ✅ 기본 컨테이너 */
    .container {
        padding: 0;
        padding-bottom: 10px;
        overflow-y: auto;
    }

    /* ✅ 테이블 스타일 */
    .sales-table th,
    .sales-table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .sales-table th {
        font-size: 14px;
    }

    /* ✅ 데이터 글꼴 크기 */
    .usdt-amount,
    .summary-value {
        font-size: 14px;
    }

    .hash-value,
    .date-value {
        font-size: 12px;
    }

    .hash-value {
        padding: 6px 8px;
    }

    /* ✅ 페이지네이션 버튼 */
    .pagination-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    /* ✅ 요약 카드 */
    .summary-card {
        padding: 15px;
    }

    .summary-divider {
        margin: 0 10px;
    }

    /* ✅ 버튼 */
    .info-btn {
        padding: 14px;
    }

    /* ✅ 배너 텍스트 */
    .banner-title {
        font-size: 22px;
    }

    .banner-subtitle {
        font-size: 13px;
    }

    /* ✅ SNS 버튼 섹션 */
    .sns-buttons {
        gap: 15px;
    }

    .sns-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


@media (max-width: 480px) {

    .swiper-slide {
        padding: 13px;
        padding-bottom: 120px;
    }
    .points-value {
        font-size: 20px;
    }
    .nav-item {
        min-width: 50px;
        height: 50px;
        padding: 10px 12px;
    }
    .nav-icon {
        font-size: 20px;
    }
    .action-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .action-btn {
        padding: 18px 10px;
    }
	.referral-info-btn {
		 padding: 8px 10px;
	}
}


@media (max-width: 480px) {

    .form-container {
        padding: 20px;
    }

    .form-input {
        padding: 12px 15px;
        font-size: 13px;
    }

    .form-label {
        font-size: 13px;
    }

    .address-group {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .address-search-btn {
        padding: 12px 15px;
        font-size: 13px;
    }

    .update-btn {
        padding: 15px;
        font-size: 14px;
    }
}


/* ========================================
   ✅ alert
======================================== */
.alert { position: relative; font-weight: 400; color: #fff; padding: 0.75rem 1.25rem; border: none; }

.alert:last-child { margin-bottom: 0; }

.alert a, .alert .alert-link { color: inherit; font-weight: inherit; box-shadow: 0 1px 0 currentColor; transition: box-shadow .3s; }

.alert a:hover, .alert .alert-link:hover { box-shadow: 0 0 0; }

.alert .close { color: inherit; transition: all .4s; height: 30px; width: 30px; padding: 0; background: none; position: absolute; top: 50%; border: none; border-radius: 50%; transform: translateY(-50%); right: 10px; text-shadow: none; opacity: .7; }

.alert .close:not(:disabled):not(.disabled):focus, .alert .close:not(:disabled):not(.disabled):hover, .alert .close:hover, .alert .close:focus { color: currentColor; box-shadow: none; outline: none; opacity: 1; }

.alert .close:after { position: absolute; font-family: 'themify'; content: '\e646'; top: 0; left: 0; color: currentColor; font-size: 12px; line-height: 30px; text-align: center; width: 100%; }

.alert .close span { display: none; }

.alert-primary { color: #016aad; background: #b9e3ff; }

.alert-primary .close { background: #7ccbfe; }

.alert-primary-alt { background: #16a3fe; }

.alert-primary-alt .close { background: #0179c7; }

.alert-secondary { color: #147259; background: #a1efda; }

.alert-secondary .close { background: #aef1df; }

.alert-secondary-alt { background: #23c99d; }

.alert-secondary-alt .close { background: #18886a; }

.alert-success { color: #29cf77; background: #cef5e1; }

.alert-success .close { background: #64e09e; }

.alert-success-alt { background: #39d884; }

.alert-success-alt .close { background: #25b96b; }

.alert-danger { color: #e6604a; background: #f9d6d0; }

.alert-danger .close { background: #f2afa4; }

.alert-danger-alt { background: #e6604a; }

.alert-danger-alt .close { background: #9b2815; }

.alert-info { color: #026bfb; background: #cae0ff; }

.alert-info .close { background: #65a6fe; }

.alert-info-alt { background: #026bfb; }

.alert-info-alt .close { background: #014096; }

.alert-warning { color: #e0a609; background: #fef4db; }

.alert-warning .close { background: #f9d46f; }

.alert-warning-alt { background: #f6be26; }

.alert-warning-alt .close { background: #e0a609; }



/*추가*/
/* Enhanced Crypto Card Styles */
        .crypto-card {
            background: rgba(255,255,255,0.08);
            border-radius: 25px;
            padding: 20px;
            margin-bottom: 25px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .crypto-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 124, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 25px;
        }

        .crypto-card:hover::before {
            opacity: 1;
        }

        .crypto-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(139, 124, 246, 0.3);
            border-color: rgba(139, 124, 246, 0.4);
        }

        /* Blockchain-style header for each card */
        .crypto-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .crypto-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-right: 20px;
            position: relative;
            box-shadow: 0 0 20px rgba(255,255,255,0.1);
            animation: float 3s ease-in-out infinite;
        }

        .crypto-icon::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ffa500, #d33222, #c9630c, #ed9b00);
            border-radius: 50%;
            z-index: -1;
            animation: rotate 4s linear infinite;
        }

        .crypto-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            border-radius: 50%;
            z-index: -1;
        }

        /* Different colors for each crypto */
        .btc-icon {
            background: linear-gradient(135deg, #F7931A 0%, #FFB347 100%);
        }

        .xrp-icon {
            background: linear-gradient(135deg, #23292F 0%, #1A1A1A 50%, #00AAE4 100%);
        }

        .roam-icon {
            background: linear-gradient(135deg, #ecba05 0%, #b78206 50%, #bc6f01 100%);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-5px) rotate(180deg); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .crypto-title {
            flex: 1;
        }

        .crypto-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
            background: linear-gradient(135deg, #ffffff 0%, #C084FC 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .crypto-subtitle {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Enhanced price display */
        .crypto-price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0,0,0,0.3);
            border-radius: 15px;
            padding: 20px;
            position: relative;
            z-index: 2;
        }

        .crypto-price-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(139, 124, 246, 0.1), transparent);
            border-radius: 15px;
            animation: priceGlow 3s ease-in-out infinite;
        }

        @keyframes priceGlow {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

        .price-label {
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .price-label::before {
            content: '💎';
            font-size: 14px;
        }

        .price-value {
            font-size: 28px;
            font-weight: 700;
            color: #ffb300;
            font-family: 'Roboto Mono', monospace;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
            position: relative;
            z-index: 2;
        }
        

        /* Blockchain network effect */
        .blockchain-network {
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            opacity: 0.1;
            z-index: 1;
        }

        .network-node {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #8B7CF6;
            border-radius: 50%;
            animation: networkPulse 2s ease-in-out infinite;
        }

        .network-node:nth-child(1) { top: 20px; left: 20px; animation-delay: 0s; }
        .network-node:nth-child(2) { top: 20px; right: 20px; animation-delay: 0.5s; }
        .network-node:nth-child(3) { bottom: 20px; left: 20px; animation-delay: 1s; }
        .network-node:nth-child(4) { bottom: 20px; right: 20px; animation-delay: 1.5s; }

        .network-node::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 1px;
            background: linear-gradient(90deg, #8B7CF6, transparent);
            transform: translate(-50%, -50%) rotate(45deg);
        }

        @keyframes networkPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 5px #8B7CF6;
            }
            50% { 
                transform: scale(1.5);
                box-shadow: 0 0 15px #8B7CF6;
            }
        }

        /* Status indicator */
        .status-indicator {
                position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: #f7e600;
    border-radius: 50%;
    box-shadow: 0 0 10px #b9b506;
    z-index: 3;
    animation: statusBlink 2s 
ease-in-out infinite;
        }

        @keyframes statusBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            
            
            .crypto-card {
                padding: 20px;
                margin-bottom: 20px;
            }
            
            .crypto-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
                margin-right: 15px;
            }
            
            .crypto-name {
                font-size: 20px;
            }
            
            .price-value {
                font-size: 17px;
            }
        }
		
		
		/* Notice Card */
.notice-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.notice-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.notice-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* User Info Card */
.user-info-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.user-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.user-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
	padding: 0px 6px;
}

.profile-img-my {
	position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.profile-img-my img {
	width: 100%;
    height: 100%;
    border-radius: 38%;
    object-fit: cover;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #b75704 0%, #edb30d 30%, #6d3d00 70%, #ffe410 100%);
    border-radius: 38%;
    z-index: -1;
}
.profile-img-my::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #3a1483, #4e0af5, #000000, #000000);
    border-radius: 38%;
    z-index: -1;
}


.user-details {
    flex: 1;
    display: flex;
    flex-direction: row;    
    justify-content: space-between;
    align-items: center;
}

.user-id {
    font-size: 18px;
    font-weight: 600;
    color: white;    
}

.user-level {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.balance-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.balance-item:last-child {
    margin-bottom: 0;
}

.balance-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.balance-value {
    font-size: 16px;
    font-weight: 600;
    color: #00ff88;
}

.balance-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.balance-value.token {
    color: #FFE066;
}

.balance-value.usdt {
    color: #00ff88;
}

/* Action Card */
.action-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.main-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.main-action-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 20px;
    padding: 20px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgb(237 179 5 / 30%);
	    flex-direction: column;
}

.main-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.main-action-btn:hover::before {
    left: 100%;
}

.main-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.mining-btn {
    background: linear-gradient(135deg, #fbbf00, #5e3800);
}



.withdraw-btn {
    background: linear-gradient(135deg, #fbbf00, #5e3800);
}



.action-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.action-text {
    flex: 1;
    text-align: left;
}

.action-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}



/* Mobile Responsive */
@media (max-width: 480px) {
    .user-header {
        gap: 12px;
    }
	
	.notice-title {
		font-size: 14px;
	}
	.notice-date {
		    font-size: 12px;
	}
    
    .profile-img {
        width: 50px;
        height: 50px;
    }
    
    .user-id {
        font-size: 16px;
    }
	
	.user-level{
		font-size:16px;
		
	}
    
    .balance-section {
        padding: 15px;
    }
    
    .balance-label,
    .balance-value {
        font-size: 14px;
    }
    
    .main-actions {
        gap: 12px;
    }
    
    .main-action-btn {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .action-icon {
        font-size: 28px;
    }
    
    .action-title {
        font-size: 14px;
    }
    
    
    
    .notice-card,
    .user-info-card,
    .action-card {
        padding: 15px;
    }
}

.hashcount-group {
    display: flex;
    align-items: center;
    background: #a3670a;
    border-radius: 16px;
    padding: 0 10px;
    position: relative;
    height: 48px;
}

.count-btn {
    background: rgba(255,255,255,0.13);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 4px;
    transition: background 0.2s;
}
.count-btn:hover {
    background: rgba(255,255,255,0.22);
}

.hashcount-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 15px;
    flex: 1;
    padding: 8px 0;
}

.input-group .input-icon {
    position: absolute;
    right: 18px;
    color: #ffdeab;
    font-size: 19px;
    pointer-events: none;
}
.hashcount-input.warning {
    border: 2px solid #fff23e !important;
    background: rgba(255,0,0,0.07);
    color: #ff3e3e;
}
.hashcount-warning {
    color: #fff23e;
    font-size: 13px;
    margin-top: 7px;
    padding-left: 7px;
    font-weight: 500;
}

.hashcount-input.info {
    border: 2px solid #3eff55 !important;
    background: rgba(255,0,0,0.07);
    color: #ff3e3e;
}
.hashcount-info {
    color: #3eff55;
    font-size: 13px;
    margin-top: 7px;
    padding-left: 7px;
    font-weight: 500;
}

