/* Home tab specific font sizes */
#home h1 {
    font-size: 31px;
}

#home .intro {
    font-size: 15px;
    max-width: 453px;
}

#home .stat-item {
    font-size: 15px;
}

#home .description {
    font-size: 15px;
    max-width: 630px;
}

h3 {
    color: #ffffff;
    margin: 24px 0 12px 0;
}

.intro {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 500px;
}

.intro strong {
    color: #ffffff;
    font-weight: 600;
}

/* Profile Section */
.profile-section {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #1a1a1a;
    flex-shrink: 0;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 4px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999999;
    font-size: 16px;
}

.stat-item svg {
    color: #666666;
    flex-shrink: 0;
}

/* Description */
.description {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 100px;
    max-width: 700px;
}

/* Email copy functionality */
#copy-email {
    text-decoration: underline;
    color: #999999;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

#copy-tooltip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    background: #1a1a1a;
    color: #999999;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    margin-top: 4px;
    border: 1px solid #333;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%) translateY(-4px);
}

#copy-tooltip.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
