		* { box-sizing: border-box; }

		html, body {
			margin: 0;
			padding: 0;
			background: #fff;
			font-family: "Pretendard", sans-serif;
		}

		body {
			display: flex;
			justify-content: center;
		}

		body.menu-open {
			overflow: hidden;
		}

		.mobile-wrap {
			width: 100%;
			max-width: 640px;
			min-height: 100vh;
			background: #fff;
			position: relative;
		}

		.mobile-wrap .main-content{ 
			width:100%;
			max-width: 640px;
			min-height: 100vh;
			background: #fff;
			position: relative; }

		.top-header {
			height: 65px;
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 0 20px;
			border-bottom: 1px solid #eee;
			position: relative;
			z-index: 20;
			background: #fff;
		}

		.logo-text {
			font-size: 24px;
			font-weight: 800;
			color: #243d78;
		}

		.logo {
			display: flex;
			align-items: center;
			gap: 8px;
		}

		.logo-img {
			height: 23px;
			width: auto;
			display: block;
		}

		.menu-btn {
			width: 32px;
			height: 32px;
			border: 0;
			background: transparent;
			padding: 0;
			cursor: pointer;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
		}

		.menu-btn span {
			display: block;
			width: 26px;
			height: 3px;
			background: #111;
			margin: 3px 0;
			border-radius: 2px;
		}

		.tab-menu {
			display: flex;
			justify-content: space-around;
			height: 60px;
			border-bottom: 1px solid #eee;
		}

	.tab-item {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		font-size: 15px;
		font-weight: 700;
		color: #7b7b7b;
		cursor: pointer;
		background: none;
		border: 0;
		padding: 0;
		margin: 0;
		outline: none;
		appearance: none;
		-webkit-appearance: none;
		border-radius: 0;
		-webkit-tap-highlight-color: transparent;
		user-select: none;
		-webkit-user-select: none;
		touch-action: manipulation;
	}

	.tab-item.active {
		color: #1a1a1a;
	}

	.tab-item.active::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 28px;
		height: 3px;
		background: #111;
		border-radius: 2px;
	}

	.tab-item:hover {
		color: #1a1a1a;
	}

		.top-area {
			background: #f8f8f8;
			padding: 10px 16px;
		}














		/* ===== drawer menu ===== */
		.drawer {
			position: fixed;
			inset: 0;
			z-index: 9999;
			pointer-events: none;
		}

		.drawer.open {
			pointer-events: auto;
		}

		.drawer-backdrop {
			position: absolute;
			inset: 0;
			background: rgba(0,0,0,0.35);
			opacity: 0;
			transition: opacity 0.25s ease;
		}

		.drawer.open .drawer-backdrop {
			opacity: 1;
		}

		.drawer-panel {
			position: absolute;
			top: 0;
			right: 0;
			width: min(82vw, 320px);
			height: 100%;
			background: #fff;
			box-shadow: -10px 0 28px rgba(0,0,0,0.14);
			transform: translateX(100%);
			transition: transform 0.28s ease;
			display: flex;
			flex-direction: column;
		}

		.drawer.open .drawer-panel {
			transform: translateX(0);
		}

		.drawer-top {
			height: 65px;
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 0 18px;
			border-bottom: 1px solid #eee;
		}

		.drawer-title {
			font-size: 20px;
			font-weight: 800;
			color: #111;
		}

		.drawer-sub {
			display: block;
			font-size: 12px;
			font-weight: 500;
			color: #3B7DBB;
			margin-top: 2px;
		}

		.drawer-close {
			border: 0;
			background: transparent;
			font-size: 24px;
			line-height: 1;
			cursor: pointer;
			color: #111;
			padding: 0;
		}

		.drawer-menu {
			list-style: none;
			margin: 0;
			padding: 8px 0;
		}

		.drawer-menu li {
			border-bottom: 1px solid #f1f1f1;
		}

		.drawer-menu li a {
			display: block;
			padding: 16px 20px;
			font-size: 16px;
			font-weight: 600;
			color: #222;
			text-decoration: none;
		}

		.drawer-menu li a:hover {
			background: #f8f8f8;
		}


    .profit { color: #d12020; font-weight: 600; }
    .loss { color: #066aeb; font-weight: 600; }




    .metric.right {
      text-align: right;
    }

    .metric-label {
      font-size: 14px;
      color: #7f8da1;
      margin-bottom: 8px;
      line-height: 1.35;
    }

    .metric-value {
      font-size: 18px;
      font-weight: 600;
      color: #4f4f4f;
      line-height: 1.1;
      letter-spacing: -0.04em;
      word-break: break-all;
    }

    .metric-value.negative {
      color: #066aeb;
    }


	.metric-value .metric-time{ font-size:17px; }

    .footer {
      padding: 30px 16px 40px;
      text-align: center;
      background: #fff;
      border-top: solid #eee 1px;
    }

    .footer p {
      margin: 0;
      font-size: 12px;
      color: #9aa0a6;
      letter-spacing: 0.02em;
    }

		.footer {
			padding: 30px 16px 40px;
			text-align: center;
			background: #fff;
			border-top: solid #eee 1px;
		}

		.footer p {
			margin: 0;
			font-size: 12px;
			color: #9aa0a6;
			letter-spacing: 0.02em;
		}




		.pagination {
			text-align: center;
			margin:20px 0;
		}

		.page-btn {
			background: #e9e9e9;
			border: none;
			padding: 6px 10px;
			margin: 0 4px;
			border-radius: 6px;
			cursor: pointer;
		}

		.page-btn.active {
			background: #bdbdbd;
			color: #fff;
			font-weight: 700;
		}