/* style.css */
/* Minimal custom CSS since Tailwind is handling most styling */

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #0a0a0a;
    scroll-behavior: smooth;
    /* Optional: Hide default cursor on desktop to enhance fire effect */
    cursor: crosshair;
}

/* Hide scrollbar for a cleaner immersive look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a; 
}
::-webkit-scrollbar-thumb {
    background: #d9480f; 
}
::-webkit-scrollbar-thumb:hover {
    background: #f59f00; 
}

/* Swiper Custom Styling */
.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: scale(1.02);
}

.swiper-pagination-bullet {
  background: #d9480f !important;
}

/* For vector animations */
.vector-element {
    width: 150px;
    height: 150px;
    opacity: 0.1;
    position: absolute;
    z-index: 0;
}

/* Better Realistic Flame Trail Particle */
.flame-trail-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    /* Fiery gradient core */
    background: radial-gradient(circle, rgba(255,200,0,1) 0%, rgba(255,69,0,0.8) 40%, rgba(255,0,0,0) 70%);
    mix-blend-mode: screen;
    filter: blur(3px);
    transform: translate(-50%, -50%);
    will-change: transform, opacity, scale;
}
