/* 
   SUPREME PREMIUM BUTTONS SYSTEM 
   Professional Branding Framework
*/

* { box-sizing: border-box; }

:root {
    --p-gold: #c5a059;
    --p-gold-light: #dfc18c;
    --p-blue: #3b82f6;
    --p-white: #ffffff;
    --p-black: #080808;
    --p-border: rgba(255, 255, 255, 0.1);
}

.btn-premium {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--p-gold);
    color: var(--p-black) !important;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
    max-width: 100%;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-premium:hover {
    transform: translateY(-4px);
    background: var(--p-gold-light);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.4);
}

.btn-premium:hover::before {
    left: 100%;
}

/* OUTLINE VERSION - ELITE */
.btn-outline {
    background: transparent;
    color: var(--p-white) !important;
    border: 1px solid var(--p-border);
    padding: 12px 25px;
}

.btn-outline:hover {
    background: var(--p-white);
    color: var(--p-black) !important;
    border-color: var(--p-white);
}

/* LIVE STATUS BUTTONS */
.btn-live {
    background: #ef4444;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-live:hover {
    background: #ff5e5e;
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.5);
}

/* SMALL ACTION BUTTONS */
.btn-sm {
    padding: 8px 18px;
    font-size: 0.65rem;
    gap: 8px;
}
