/* Black Box Wolf3D Game Styles v1.1.0 */

/* ── Launch Button ─────────────────────────────────────────────── */
#bbp-wolf3d-launcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

#bbp-wolf3d-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 50px;
    padding: 14px 28px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212,175,55,0.4), 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    animation: bbp-pulse 2.5s ease-in-out infinite;
}

#bbp-wolf3d-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f0c040 100%);
    color: #1a1a1a;
    box-shadow: 0 0 35px rgba(212,175,55,0.9), 0 6px 20px rgba(0,0,0,0.6);
    transform: translateY(-2px) scale(1.03);
}

.bbp-wolf3d-icon {
    font-size: 20px;
    display: inline-block;
    animation: bbp-spin 4s linear infinite;
}

@keyframes bbp-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.4), 0 4px 15px rgba(0,0,0,0.5); }
    50%       { box-shadow: 0 0 35px rgba(212,175,55,0.8), 0 4px 15px rgba(0,0,0,0.5); }
}

@keyframes bbp-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Game Overlay ──────────────────────────────────────────────── */
#bbp-wolf3d-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
}

/* Main game canvas - fills entire screen */
#bbp-wolf3d-canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* Minimap is hidden - drawn offscreen and blitted to main canvas */
#bbp-wolf3d-minimap {
    display: none !important;
}

/* ── Close Button ──────────────────────────────────────────────── */
#bbp-wolf3d-close {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(139,0,0,0.85);
    color: #fff;
    border: 1px solid #ff4444;
    border-radius: 5px;
    padding: 7px 16px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 100001;
    transition: background 0.2s;
}

#bbp-wolf3d-close:hover {
    background: rgba(204,0,0,0.95);
}

/* ── Message Box ───────────────────────────────────────────────── */
#bbp-wolf3d-msg {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.88);
    border: 2px solid #d4af37;
    border-radius: 8px;
    color: #d4af37;
    font-family: 'Courier New', monospace;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 24px 44px;
    letter-spacing: 2px;
    z-index: 100002;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(212,175,55,0.5);
    max-width: 80vw;
    line-height: 1.5;
}

/* ── Shortcode Button ──────────────────────────────────────────── */
.bbp-wolf3d-shortcode-btn {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.bbp-wolf3d-shortcode-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}
