@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --fire-50: #fff7ed;
    --fire-100: #ffedd5;
    --fire-200: #fed7aa;
    --fire-300: #fdba74;
    --fire-400: #fb923c;
    --fire-500: #f97316;
    --fire-600: #ea580c;
    --fire-700: #c2410c;
    --fire-800: #9a3412;
    --fire-900: #7c2d12;
}

body {
    font-family: 'Poppins', sans-serif;
}

.font-rpg {
    font-family: 'MedievalSharp', cursive;
}

/* Fire Text Animation */
.fire-text-animation {
    position: relative;
    display: inline-block;
}

.fire-text-animation::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fire-400), var(--fire-600));
    border-radius: 3px;
    animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--fire-400), var(--fire-600));
    border-radius: 3px;
}

/* Member Card Hover Effect */
.member-card:hover img {
    transform: scale(1.05);
}

/* Dice Roller Animation */
.dice-roll-animation {
    animation: roll 0.5s ease-out;
}

@keyframes roll {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Particle Background */
.particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.social-card {
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.social-card:hover {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 20px rgba(234, 88, 12, 0.3);
}

.social-card:hover i {
    transform: scale(1.2);
}

.social-card i {
    transition: transform 0.3s ease;
}

.fire-overlay {
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Ajuste para todas as seções terem fundo semi-transparente */
section {
    position: relative;
    background-color: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(2px);
}

/* Cards e elementos com fundo mais escuro */
.bg-gray-800, .bg-gray-900, .bg-black {
    background-color: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(4px);
}

.highlight-card {
    position: relative;
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.highlight-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 30px rgba(234,88,12,0.12);
}

/* Comentários dentro do destaque */
.highlight-card ul { padding-left: 1rem; margin: 0; }
.highlight-card li { list-style: disc; margin-left: 0.5rem; }

/* Ajustes responsivos (opcional) */
@media (max-width: 1024px) {
    .highlight-card .aspect-video { height: auto; }
}

.video-controls button {
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.04);
}
.video-controls button:hover {
  transform: translateY(-2px);
  transition: transform .15s ease;
}

