body {
    min-height: 100vh;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: 
        url("data:image/svg+xml;utf8,<svg width='100' height='100' xmlns='http://www.w3.org/2000/svg'><circle cx='10' cy='10' r='1.2' fill='white' opacity='0.8'/><circle cx='80' cy='30' r='1.5' fill='white' opacity='0.7'/><circle cx='60' cy='80' r='1' fill='white' opacity='0.6'/><circle cx='30' cy='60' r='0.8' fill='white' opacity='0.5'/><circle cx='50' cy='40' r='1.1' fill='white' opacity='0.7'/></svg>") repeat,
        linear-gradient(135deg, #1a0036 0%, #3a006e 60%, #7b00ff 100%);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero {
    width: 100%;
    padding: 3.5rem 0 2.5rem 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.2rem 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(124, 58, 237, 0.18);
}
.hero p {
    color: #ede9fe;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0;
    text-shadow: 0 2px 12px rgba(124, 58, 237, 0.12);
}
.hero-divider {
    width: 100vw;
    height: 90px;
    background: transparent;
    position: relative;
    z-index: 2;
    margin-bottom: -30px;
}
.tm-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.829);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.06);
    z-index: 1000;
    height: 64px;
    display: flex;
    align-items: center;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 64px;
}
.navbar-brand img {
    height: 40px;
    vertical-align: middle;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links li {
    display: flex;
    align-items: center;
}
.tm-nav-link {
    color: #7b00ff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08rem;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.tm-nav-link:hover,
.tm-nav-link.current {
    color: #ffffff;
    background: #7b00ff;
}
.terms-and-conditions-label {
    color: #ffffff;
    font-weight: 900;
    font-size: 0.6rem;
}
.help-section {
    width: 100%;
    width: 1000px;
    margin: 1.6rem auto 2.2rem auto;
    z-index: 3;
    padding: 0 1rem;
    box-sizing: border-box;
}
.help-card {
    box-sizing: border-box;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 14px;
    padding: 1.2rem 1.2rem;
    box-shadow: 0 6px 28px rgba(80, 0, 120, 0.06);
    border: 3px solid rgba(167,139,250,0.12);
}
.help-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 0.4rem;
}
.help-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.98), #fff);
	border-radius: 12px;
	padding: 0.9rem;
	box-shadow: 0 6px 18px rgba(120, 53, 200, 0.05);
	border: 1px solid rgba(167,139,250,0.08);
}
.help-card-title {
	margin: 0 0 0.6rem 0;
	font-size: 1rem;
	color: #4b006e;
	font-weight: 700;
}
details {
	background: rgba(247,246,255,0.8);
	border-radius: 10px;
	padding: 0.6rem;
	border: 1px solid rgba(167,139,250,0.06);
}
summary {
	list-style: none;
	cursor: pointer;
	padding: 0.45rem 0.6rem;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	font-weight: 700;
	color: #7b00ff;
	background: linear-gradient(90deg, rgba(123,0,255,0.06), transparent);
	box-shadow: 0 2px 8px rgba(124, 58, 237, 0.03);
	outline: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
	content: "▾";
	font-size: 0.9rem;
	color: #7b00ff;
	transition: transform 0.18s ease;
}

details[open] summary::after {
	transform: rotate(180deg);
}
.instruction {
	padding: 0.65rem 0.6rem 0.2rem 0.6rem;
	color: #3b0350;
	font-size: 0.96rem;
	line-height: 1.45;
}
.accordion-toggle {
	background: #7b00ff;
	color: white;
	border: none;
	padding: 0.45rem 0.7rem;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(123,0,255,0.12);
}
.accordion-toggle:hover { filter: brightness(0.98); }
@media (max-width: 600px) {
    .help-card {
        padding: 1rem 0.8rem;
    }
    .update-item {
        padding: 0.7rem 0.8rem;
    }
    .update-date {
        font-size: 0.9rem;
    }
	.help-card { padding: 0.7rem; }
	summary { padding: 0.45rem; font-size: 0.96rem; }
}
@media (max-width: 700px) {
    .help-section {
        padding: 0 0.8rem;
        max-width: 96vw;
    }
    .help-card {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
    .nav-container {
        padding: 0 1rem;
        box-sizing: border-box;
    }
}