/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    /*background-color: var(--secondary-bg);*/
    color: var(--text-dark);
    padding: 0;
    line-height: 1.5;
}

#app {
    max-width: 100%;
    overflow-x: hidden;
}

.page-content {
    padding-bottom: 4rem;
}

/* Navigation Bar */
.navigationBar {
    background-color: var(--primary-bg);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    height: 64px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

/* User Profile Section */
.home-head {
    background-color: var(--primary-bg);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: var(--shadow-sm);
}

.header_right {
    text-align: right;
    margin-bottom: 1rem;
}

.header_right a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.header_right i.unit {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--accent-blue);
    mask: url(./images/ranking-icon.svg) no-repeat center;
    -webkit-mask: url(./images/ranking-icon.svg) no-repeat center;
    margin-right: 0.5rem;
}

.newbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avator {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
    margin-right: 1rem;
}

.new-right {
    flex: 1;
}

.username {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.svip {
    background-color: var(--accent-blue);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin-bottom: 0.25rem;
}

.top-line {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* Account Balance Section */
.ac-title {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.tixian {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.new-wri {
    background-color: var(--accent-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.name-p {
    display: flex;
    justify-content: space-between;
    background-color: var(--secondary-bg);
    padding: 1rem;
    border-radius: 0.5rem;
}

.name {
    text-align: center;
    flex: 1;
}

.kk-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 0.25rem;
}

.kk-label {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* Feature List */
.ft-list {
    background-color: var(--primary-bg);
    border-radius: 1rem;
    padding: 0 1rem;
    margin: 1rem;
    box-shadow: var(--shadow-sm);
}

.ft-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.ft-item:last-child {
    border-bottom: none;
}

.dd {
    display: flex;
    align-items: center;
}

.left-ii {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent-blue);
}

.you {
    color: var(--text-light);
    font-size: 1rem;
}