@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    /* 1. Specify the image file path */
    background-image: url("images/LINEUP_no_logo.jpg");

    /* 2. Optional: Control how the image behaves */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    background-size: cover;      /* Scales image to cover the entire container */
    background-attachment: fixed;/* Keeps image fixed while scrolling content */
    background-position: center; /* Centers the image */

    /* Optional: Fallback background color if the image fails to load */
    background-color: #cccccc;
}

.coolVid{
    opacity: 0.5;
    filter: hue-rotate(180deg); 
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}
.font-darkmystic {
    font-family: 'DarkMystic', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}
/* Markdown content styles */
.markdown-content h1,
.markdown-content h2,
.markdown-content h3 {
    color: #dc2626;
    margin: 1.5rem 0 1rem;
}

.markdown-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.markdown-content ul,
.markdown-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.markdown-content li {
    margin-bottom: 0.5rem;
}

.markdown-content blockquote {
    border-left: 3px solid #dc2626;
    padding-left: 1rem;
    color: #9ca3af;
    margin: 1rem 0;
}

.markdown-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 1rem 0;
}

.markdown-content th,
.markdown-content td {
    border: 1px solid #374151;
    padding: 0.5rem;
    text-align: left;
}

.markdown-content th {
    background-color: #1f2937;
}

/* Animation for headings */
@keyframes pulse {
    0% { text-shadow: 0 0 5px rgba(220, 38, 38, 0.5); }
    50% { text-shadow: 0 0 20px rgba(220, 38, 38, 0.8); }
    100% { text-shadow: 0 0 5px rgba(220, 38, 38, 0.5); }
}

.text-red-600 {
    animation: pulse 3s infinite;
}

@font-face {
    font-family: 'DarkMystic';
    src: url('DarkMystic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}