/* Goldenpass Brand Standards */
:root {
    --gp-orange: #F59E0B;
    --gp-dark: #1F2937;
    --gp-glow: rgba(245, 158, 11, 0.4);
}

body {
    background-color: #0F172A;
    color: #E2E8F0;
}

.btn-warning {
    background-color: var(--gp-orange);
    border-color: var(--gp-orange);
    color: #000;
    font-weight: bold;
    box-shadow: 0 4px 14px 0 var(--gp-glow);
    transition: all 0.2s ease-in-out;
}

.btn-warning:hover {
    background-color: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.card {
    background-color: var(--gp-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-warning {
    background-color: var(--gp-orange) !important;
}

/* Glassmorphism for floating elements */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Streaming Player Style */
#gp-player {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
