
/* Custom styles and keyframes */
body {
    background-color: #000000;
    font-family: 'Inter', sans-serif;
    color: #E5E7EB;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile menu slide */
}
.font-anton {
    font-family: 'Anton', sans-serif;
}
.font-inter {
    font-family: 'Inter', sans-serif;
}
#hero {
    background-color: #000;
}
#flame-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
@keyframes slide-in-right {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
.animate-slide-in-right {
    animation: slide-in-right 0.3s ease-out forwards;
}
*:focus-visible {
    outline: 2px solid #ef4444; /* Red-600 */
    outline-offset: 2px;
    border-radius: 4px; /* Match rounded corners */
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem; /* rounded-lg */
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
