
/* Boss Kills Specific Styles */

/* --- LUXURY BUTTONS (Copied from Vorasius) --- */
.luxury-btn-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.luxury-btn {
    position: relative;
    padding: 12px 30px;
    /* Texture Background */
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 6px
        ),
        linear-gradient(180deg, #0a0a0e 0%, #050507 100%);
    color: #ad9459; /* Muted Gold */
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: 220px; /* Slightly wider for the text */
    text-align: center;
    border-radius: 2px;
    text-decoration: none; /* Ensure no underline for links */
    display: inline-block;
}

/* Golden Border Gradient via pseudo element */
.luxury-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2px; 
    padding: 1px; /* Keeps border thin */
    background: linear-gradient(45deg, #563810, #C68A2C, #F5ECC3, #C68A2C, #563810);
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

/* Hover Shine Effect */
.luxury-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.luxury-btn:hover {
    color: #fff;
    background-color: #0f0f12; 
    text-shadow: 0 0 8px rgba(198, 138, 44, 0.6);
    box-shadow: 0 0 20px rgba(198, 138, 44, 0.15);
}

.luxury-btn:hover::before {
    opacity: 1;
}

.luxury-btn:hover::after {
    left: 100%;
}
