.futuristic-btn {
    position: relative;
    padding: 8px 20px;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff200;  /* Bright yellow text */
    background: rgba(40, 30, 0, 0.8);  /* Dark yellow/orange background */
    border: none;
    border-radius: 25px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.15s ease;
    box-shadow: 
        0 0 8px #ffeb3b,  /* Yellow glow */
        inset 0 0 5px rgba(255, 235, 59, 0.4);  /* Yellow inner glow */
}

.futuristic-btn:hover {
    background: rgba(60, 45, 0, 0.9);
    box-shadow: 
        0 0 15px #ffeb3b,
        inset 0 0 10px rgba(255, 235, 59, 0.6);
    transform: translateY(-2px);
}

.futuristic-btn:active {
    transform: translateY(1px);
    transition: all 0.05s ease;
}

.futuristic-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent 45%,
        rgba(255, 235, 59, 0.4) 50%,  /* Yellow shine */
        transparent 55%
    );
    transform: rotate(30deg);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.btn-text {
    position: relative;
    z-index: 1;
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.8);  /* Yellow glow */
}

.btn-glare {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 0, 0.3)  /* Yellow glare */
    );
    transform: skewX(-20deg);
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}