body {
    margin: 0;
    background: #e8e9ea;
    font-family: "Inter", Arial, sans-serif;
    color: #555;
}

/* 1. Only underline text links (not buttons) */
a:not([class*="button"]):hover {
    text-decoration: underline;
}

/* 2. Change color AND underline on hover */
a:hover {
    text-decoration: underline;
    color: #444; 
}

/* 3. Smooth transition effect */
a {
    transition: text-decoration 0.2s ease;
     text-decoration: none;
    color: #444; 
}
a:hover {
    text-decoration: underline;
}

.wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
}

/* ---- BIG BACKGROUND LETTERS ---- */

.bg-text {
    position: absolute;
    font-size: 22vw;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    user-select: none;
    pointer-events: none;
    line-height: 0.8;
}

.bg-aura {
    top: 0;
    left: 0;
}

.bg-tot {
    bottom: 5%;
    right: 0;
}

/* ---- TITLE TOP RIGHT ---- */

.title-top {
    position: absolute;
    top: 90px;
    right: 160px;
    font-size: 48px;
    font-weight: 600;
    color: #777;
    line-height: 1.0;
    text-align: right;
}

.title-top .sub {
    font-size: 42px;
    margin-top: -8px;
}

/* ---- AVATAR ---- */

.avatar {
    position: absolute;
    top: 160px;
    right: 140px;
    width: 230px;
    height: 230px;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* ---- NAVIGATION ---- */

.nav {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 17px;
}

.item {
    text-align: center;
    width: 250px;
}

.item .name {
    font-size: 22px;
    font-weight: 700;
    color: #444;
    letter-spacing: 2px;
}

.item .desc {
    font-size: 14px;
    margin-top: 4px;
    color: #666;
}

.arrow {
    font-size: 28px;
    color: #777;
    margin: 0 10px;
}

/* ---- FOOTER ---- */

.footer {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 14px;
    color: #888;
}
