body {
    background-color: white;
    color: #6C6C72;
    font-family: 'Hellix', 'Helvetica Neue', Arial, sans-serif;
}

/* Navigation Bar */
.navbar {
    padding: 20px 0;
    background-color: white;
}

.navbar > .container {
	position: relative;
}

.navbar-brand img {
	height: 80px;
}

.language-selector {
	position: absolute;
	right: .75rem;
}

.btn-language {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6C6C72;
    color: #6C6C72;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-language:hover {
    border-color: #f5f5f5;
}

/* Hero Section */
.hero-section {
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	max-width: 580px;
    text-align: center;
}
.hero-section h1, h2 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	text-transform: uppercase;
}

.hero-section h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.hero-section .inline-logo {
    height: 14px;
    vertical-align: middle;
    display: inline-block;
}

/* Phone Showcase */
.phone-showcase {
    padding: 40px 0;
}

.phone {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 218px;
	height: 440px;
}

.phone .phone-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/phone-frame.png');
	background-size: 100%;
	background-repeat: no-repeat;
	border-radius: 36px;
    box-shadow: 117.45px 23.49px 117.45px 0px #09143226;
}
.phone .phone-screen {
	position: absolute;
	top: 1.5%;
    left: 4.5%;
    width: 91%;
    height: 97%;
	border-radius: 1rem;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}
html[lang=en] .phone .phone-screen {
	background-image: url('../images/phone-content-en-20250729.png');
}
html[lang=zh_Hant] .phone .phone-screen {
	background-image: url('../images/phone-content-zh-20250729.png');
}

/* App Download Section */
.app-download {
	padding: 30px 0;
}
.download-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.google-play-button,
.app-store-button {
	margin: .5rem;
}
.google-play-button img {
	display: block;
	width: 150px;
    height: 50px;
}
.app-store-button img {
	display: block;
	width: 150px;
    height: 50px;
}


article {
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	max-width: 580px;
    text-align: center;
	font-size: .875rem;
	font-weight: 400;
	line-height: 1.5rem;
}
article > .container {
	margin-bottom: 1.5rem;
}
article h2 {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}
article a {
	text-decoration: underline;
	color: #6C6C72;
}


/* Footer */
.footer {
    padding: 40px 0;
    margin-top: 60px;
}
