body {
    font-family: 'Quicksand', sans-serif;
    background: #ffffff;
    color: #333;
}

body::before {
    content: "";
    display: block;
    height: calc(60px + env(safe-area-inset-top) + 10px);
}

.ios-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: rgba(0, 0, 0, .45);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: calc(60px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    padding-left: 20px;
    padding-right: 20px;
    z-index: 9999;
    box-sizing: border-box;
    isolation: isolate;
}

.menu-toggle {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3.5px;
    background: #fff;
    border-radius: 10px;
    transition: .25s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    text-align: center;
}
.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 15px auto 20px;
    display: block;
    box-shadow: 0 8px 16px rgba(71, 71, 71, 0.562);
}

.verify {
    height: 31px;
    margin-left: 2px;
    vertical-align: -3px;
}

.iam {
    margin-bottom: 10px;
    text-align: center;
    color: #2b2b2b;
}

h1, h2 {
    margin: 0;
    text-align: center;
    color: #2b2b2b;
}

.headline {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    margin: 10px 0 20px;
}

.gradient-text {
    background: linear-gradient(to right, #4a6cf7, #b983ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.section-divider hr {
    flex: 1;
    height: 2px;
    border: none;
    background: linear-gradient(to right, #007BFF, transparent);
}

.section-divider span {
    color: #007BFF;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.divider-line {
    flex: 1;
    height: 2px;
}

.divider-line.left {
    background: linear-gradient(to right, #007BFF, transparent);
}

.divider-line.right {
    background: linear-gradient(to left, #007BFF, transparent);
}

.divider-title {
    color: #007BFF;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
}

.divider-title i {
    margin-right: 6px;
}

.lqimg img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin: 10px 0;
}

.subtitle {
    font-size: 14px;
    color: red;
    display: block;
    margin-top: 1px;
}

.info {
    font-size: 17px;
    margin: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.info span {
    flex: 1;
    text-align: left;
    word-break: break-word;
}

.label {
    font-weight: 600;
    color: #555;
}

.copy-icon {
    cursor: pointer;
    font-size: 20px;
    color: #007bff;
    user-select: none;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.copy-icon:hover {
    color: #0056b3;
}

#loadicon {
    all: unset;
    font-size: 30px;
    color: #007bff;
    cursor: pointer;
    display: inline-block;
    margin-top: 15px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.sponsor {
    text-align: center;
    margin: 40px 0 20px;
    -webkit-tap-highlight-color: transparent;
}

.sponsor-gif {
    max-width: 250px;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gif-click:hover .sponsor-gif {
    transform: scale(1.01);
}

.skill {
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 70px;
}

.skill-item {
    text-align: center;
}

.skill-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 10px;
    -webkit-tap-highlight-color: transparent;
}

.copy-icon,
.menu-toggle,
.fa-refresh,
.sponsor,
.skill-img {
    transition:.15s ease;
}

.copy-icon:active,
.menu-toggle:active,
.fa-refresh:active,
.sponsor:active,
.skill-img:active {
    transform:scale(.85);
}

.contact {
    font-weight: 600;
    text-align: center;
    background: #f1f3f5;
    padding: 0.5rem;
}