/* Background video */
#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(1.15) contrast(1.1);
    animation: zoomVideo 60s linear infinite;
}

@keyframes zoomVideo {
    0% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.05) translate(2%,1%); }
    100% { transform: scale(1) translate(0,0); }
}

/* Dark mystical overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.25), rgba(0,0,0,0.5));
    z-index: -1;
}

body {
    margin: 0;
    font-family: 'Cinzel', serif;
    color: #d4af37;
}

/* Container bottom-right with fade-in */
.container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 420px;
    padding: 30px;
    background: rgba(20, 15, 5, 0.85);
    border: 2px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Glow for h1 */
h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(212,175,55,0.6);
    animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px rgba(212,175,55,0.6); }
    to { text-shadow: 0 0 20px rgba(212,175,55,1); }
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #f5deb3;
}

/* Inputs */
input[type="text"], select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    background: rgba(40, 30, 10, 0.9);
    border: 1px solid #d4af37;
    color: #f5deb3;
    border-radius: 6px;
}

/* Buttons */
button.btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(145deg, #b8860b, #d4af37);
    border: none;
    border-radius: 6px;
    color: #1a1203;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button.btn:hover {
    box-shadow: 0 0 15px #d4af37;
    transform: scale(1.05);
}

/* Reviews */
#reviews {
    max-height: 150px;
    overflow-y: auto;
    font-size: 14px;
}

/* Stars */
.fa-star { color: #5a4a1f; }
.fa-star.filled { color: #ffd700; }

/* Fade-in for reviews */
.review-card {
    opacity: 0;
    transform: translateY(20px);
    animation: reviewFadeIn 0.8s forwards;
}

@keyframes reviewFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Sound button */
#sound-toggle {
    position: fixed;
    bottom: 40px;
    left: 40px;
    padding: 10px 15px;
    background: rgba(20,15,5,0.85);
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    z-index: 2;
    transition: 0.3s;
}

#sound-toggle:hover { box-shadow: 0 0 15px #d4af37; }
