/* ==========================================================================
   FRAME CONTAINER & LAYOUT
   ========================================================================== */
.frame {
    background: #2c2c44;
    border: 1px solid #3d3d55;
    border-radius: 20px;
    padding: 30px;
    width: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden auto;
    animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.frameHeader {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 2px solid #3d3d55;
    padding-bottom: 16px;
    text-align: left;
    height: 64px;
}

.frameBack {
    font-size: 24px;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}


.frameBack:hover {
    transform: translateX(-5px) scale(1.1);
    color: #ff4e88;
}

.frameID {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.frameText {
    line-height: 1.5;
    word-wrap: break-word;
    white-space: wrap;
}

/* ==========================================================================
   FRAME NAVIGATION INTERACTION LIST
   ========================================================================== */
.frameLinkList {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.frameLinkListItem {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #3d3d55;
    border-radius: 12px;
    border: 1px solid transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.frameLinkListItem img {
    top: 0;
}

.frameLinkListItem span {
    font-weight: bold;
    font-size: 16px;
}

.frameLinkListItem:hover {
    background: #4b4b7a;
    border-color: #bb2a66;
    transform: scale(1.02);
    box-shadow: 0 5px 16px rgba(255, 78, 136, 0.2);
}

.frameLinkListItem:active {
    transform: scale(0.98);
}