@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;
}

ol {
  list-style-type: decimal; /* This will add numbers back to ALL <ol> elements */
}

.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;
}

.tattle-button {
    width: 100%;
    padding: 12px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.tattle-button:hover {
    background: #5568d3;
}

/* Dialog styles */
.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.2s ease-out;
}

.dialog-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.dialog h2 {
    color: #333;
    margin: 0;
    font-size: 24px;
}

.close-button {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.close-button:hover {
    background: #f0f0f0;
    color: #333;
}

.dialog-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.tattle-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tattle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tattle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fac { background: #1877f2; }
.twi { background: #000000; }
.lin { background: #0077b5; }
.wha { background: #25d366; }
.red { background: #ff4500; }
.email { background: #6c757d; }
.pin { background: #e60023; }
.tel { background: #0088cc; }
.copylink { background: #17ceceff; }

.icon {
    width: 18px;
    height: 18px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    ul, ol {
    list-style: revert;
    }
}