.slayly-logo-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    text-decoration: none;
}

.slayly-icon-link,
.slayly-logo-link {
    text-decoration: none;
    display: block;
    border-bottom: none !important;
}

/* --- THE ICON BOX --- */
.slayly-icon-box {
    width: 36px;
    height: 36px;
    /* Deep dark gradient with a hint of purple at the bottom-right */
    background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Animated shiny sheen effect */
.slayly-icon-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: 1;
}

/* --- THE LETTER S --- */
.slayly-icon-letter {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1;
    z-index: 2;
    transition: 0.4s;

    /* Brand Gradient for the Letter S */
    background: linear-gradient(180deg, #ffffff 20%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* Subtle text shadow for depth */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* --- HOVER EFFECTS --- */

/* On hover, box glows Cyan/Purple */
.slayly-logo-container:hover .slayly-icon-box {
    border-color: #00E5FF;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3), inset 0 0 10px rgba(0, 229, 255, 0.1);
    transform: translateY(-2px) rotate(0deg);
    /* Removed rotation for a cleaner lift */
}

/* Sheen passes through */
.slayly-logo-container:hover .slayly-icon-box::before {
    top: 100%;
}

/* Letter brightens up */
.slayly-logo-container:hover .slayly-icon-letter {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.8));
    transform: scale(1.1);
}

/* --- TEXT LOGO --- */
.slayly-text {
    display: inline-flex;
    gap: 1px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1;
}

.slay-part {
    background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #e0e0e0;
    position: relative;
    transition: 0.3s;
}

.ly-part {
    /* Brand Purple to Cyan Gradient for the 'LY' */
    background: linear-gradient(135deg, #00E5FF 0%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #7000ff;
    position: relative;
    transition: 0.3s;
    filter: drop-shadow(0 0 0px rgba(112, 0, 255, 0));
}

.slayly-logo-link:hover .slay-part {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.slayly-logo-link:hover .ly-part {
    filter: drop-shadow(0 0 12px rgba(112, 0, 255, 0.8));
    transform: translateX(2px);
}