/* GENERAL */
.text-orange { color: var(--orange); }
.outline-style { color: transparent; -webkit-text-stroke: 1px var(--orange); }
.btn { background-color: var(--orange) !important; font-weight: bolder; color: #ffffff; border-radius: 0 !important; }
.form-control { border-radius: 0 !important; box-shadow: none !important; }


/* SIGNUP */
#signup-wrap { position: relative; min-height: 100vh; background: #000; overflow-y: hidden; }

#signup-wrap::before { content: ""; position: absolute; inset: 0; background-image: url('../img/gui/form-bg-bottom.jpg'); background-repeat: no-repeat; background-position: bottom center; background-size: 100%; opacity: 1; z-index: 0; pointer-events: none; }

#signup-wrap::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.45); z-index: 1; pointer-events: none; }

#signup-wrap > .container { position: relative; z-index: 2; }

#signup-title p { transform: scaleY(80%); line-height: 1; }
#signup-title p.outline-style { font-size: 4rem; }
#signup-wrap form .form-check-input:checked { background-color: var(--orange); border-color: var(--orange); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M13.485 1.929a1 1 0 0 1 0 1.414l-7.07 7.071a1 1 0 0 1-1.415 0L2.515 7.93a1 1 0 1 1 1.414-1.414l1.768 1.768 6.364-6.364a1 1 0 0 1 1.414 0z'/%3e%3c/svg%3e"); }



/* LOGIN */
#login-wrap { min-height: 100vh; display: flex; align-items: center; }
#login-wrap .container-sm { min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between; }
#login-wrap header img, #login-wrap #login-footer img { width: 100%; max-width: 50%; margin: 0 auto; }
#login-wrap form { width: 100%; max-width: 600px; margin: -4rem auto 0 auto; }




/* GAME */
.game-wrap { min-height: 100vh; padding: 24px; background: transparent url('../img/gui/game-bg.jpg') no-repeat center; background-size: cover; }
.game-wrap::before { content: ''; position: absolute; z-index: 0; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,.5); }

.game-wrap .container { z-index: 1; position: relative; }

/*#game-header { position: absolute; z-index: 0; left: 50%; top: 0; transform: translateX(-50%); }*/
#game-header img { width: 100%; max-width: 300px; }

.screen-select, .screen-confirm, .screen-ready, .screen-finished { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }

.raffle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; min-height: 70vh; }

.reel { height: 480px; overflow: hidden; position: relative; }
.reel-track { will-change: transform; }

.reel-item { display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 8px; text-align: center; }

.reel-prize .reel-item { height: 480px; color: var(--orange); }
.reel-prize .prize-img { max-height: 320px; width: auto; }
.reel-prize .prize-name { margin-top: 12px; font-size: 1.6rem; }

.reel-winner { height: 100px; }
.reel-winner .reel-item { height: 96px; font-size: 2.5rem; font-weight: 600; color: var(--orange); }
.reel-winner .reel-item.is-winner { animation: winnerPulse 0.6s ease-in-out infinite alternate; background: var(--orange); color: #000000; }

@keyframes winnerPulse { from { opacity: 0.65; transform: scale(1); } to { opacity: 1; transform: scale(1.06); } }

.raffle-controls { margin-top: 25px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; }

#bottom-btns { position: fixed; z-index: 1; bottom: 2rem; right: 2rem; }

#game-footer { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 0; width: 100%; max-width: 50%; }
#game-footer img { width: 100%; }