body {
    color: white;
    background-color: black;
}

.wordlinks {
    width: 60%;
    height: auto;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

.wordlinks:hover {
    box-shadow:
        0 15px 30px rgba(255, 255, 255, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.wordlinks a {
    color: white;
    padding: 20px;
    text-decoration: none;
}

.wordlinks a img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}

.code {
    width: 60%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
    border-radius: 25px;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    /* background: rgba(255, 255, 255, 0.5); */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar:hover {
    background: rgba(255, 255, 255,0.7);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    height: 80px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url(.././image/headshot.jpg);
    background-size: cover;
    background-position: center;  
    background-repeat: no-repeat; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-right: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.top-bar:hover .avatar {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.title-container {
    flex: 1;
    max-width: 60%;
    padding: 0 20px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.top-bar:hover .page-title {
    color: #ADD8E6;
    transform: translateX(5px);
}

.subtitle {
    font-size: 12px;
    color: #ffffff;
    margin-top: 4px;
    transition: all 0.3s ease;
    text-align: left;
}

.top-bar:hover .subtitle {
    color: #89CFF0;
}

.right-space {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0 20px;
        height: 60px;
    }

    .top-bar:hover {
        height: 70px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .page-title {
        font-size: 18px;
    }

    .title-container {
        max-width: 55%;
    }
}

.info-panel {
    max-width: 800px;
    margin: 100px auto 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 220px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.feature i {
    font-size: 2.5rem;
    color: #4dff56;
    margin-bottom: 15px;
}

.feature h3 {
    color: white;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.95rem;
}

.highlight {
    color: #ffcc00;
    font-weight: bold;
}

.end-hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgb(255, 255, 255),
            transparent
        );
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.end{
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
}

.headshot{
    text-align: center;
}

.headshot img{
    width: 15%;
    height: auto;
    border-radius: 50%;
}

.cover {
    background-color: #ffffff;
    transition: background-color 0.5s;
}

.cover:hover{
    background-color: #000000;
}

.imagediv {
    text-align: center;
}

.imagediv p {
    font-size: 15px;
    color: #ffffff2d;
}

.end a {
    color: rgba(255, 255, 255, 0.2);
}