:root {
    --ufa-gold: #f5e900;
    --ufa-card: #111111;
    --bg-main: #050505;
    --text-zinc-400: #a1a1aa;
    --text-zinc-300: #d4d4d8;
    --zinc-500: #71717a;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Prompt', sans-serif;
    background-color: var(--bg-main);
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

/* Layout & Utilities */
.max-w-7xl { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.text-ufa-gold { color: var(--ufa-gold); }
.bg-ufa-gold { background-color: var(--ufa-gold); }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.text-transparent { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.7); }
.text-white { color: #fff; }
.text-zinc-400 { color: var(--text-zinc-400); }
.uppercase { text-transform: uppercase; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:flex-row { flex-direction: row; }
    .lg\:flex-row-reverse { flex-direction: row-reverse; }
    .lg\:w-1\/2 { width: 50%; }
    .lg\:w-1\/3 { width: 33.333%; }
    .lg\:w-2\/3 { width: 66.666%; }
}

/* Sections & Spacing */
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-6 { margin-top: 1.5rem; }

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background: #121212;
    border-bottom: 3px solid var(--ufa-gold);
    height: 80px;
}
.clip-bg {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    background: #1e1e1e;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    padding-right: 3rem;
}

/* Buttons */
.clip-btn {
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 900;
}
.btn-gold {
    background: var(--ufa-gold);
    color: black;
    padding: 1rem 2rem;
    box-shadow: 0 0 15px rgba(245,233,0,0.2);
}
.btn-dark {
    background: #18181b;
    color: var(--ufa-gold);
    border: 2px solid var(--ufa-gold);
    padding: 1rem 2rem;
}
.btn-header {
    background: var(--ufa-gold);
    color: black;
    padding: 0.625rem 1.5rem;
    box-shadow: 0 0 15px rgba(245,233,0,0.2);
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 1rem 5rem;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-bg, .hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img, .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
}
.hero h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1.2;
    z-index: 10;
    position: relative;
    margin-bottom: 1.5rem;
}
.hero-desc {
    color: var(--text-zinc-400);
    font-size: 1rem;
    max-width: 42rem;
    margin: 1rem auto 2.5rem;
}
@media (min-width: 768px) {
    .hero h1 { font-size: 4rem; }
    .hero-desc { font-size: 1.125rem; }
}

/* Marquee */
.marquee-bar {
    background: var(--ufa-gold);
    padding: 10px 0;
    border-bottom: 4px solid #d4ca00;
    position: relative;
    z-index: 20;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.marquee-label {
    background: black;
    color: var(--ufa-gold);
    padding: 10px 24px;
    position: absolute;
    left: 0;
    z-index: 10;
    font-weight: 900;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    padding-left: 120px;
    font-weight: bold;
    color: black;
}
@keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* Cards & Styling */
.card {
    background: var(--ufa-card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #27272a;
}
.bg-black { background: black; }
.border-zinc-800 { border-color: #27272a; border-width: 1px; border-style: solid; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

/* Tables */
table { width: 100%; border-collapse: collapse; text-align: center; }
th { padding: 1rem; color: var(--text-zinc-300); border-bottom: 1px solid #27272a; }
td { padding: 1rem; border-bottom: 1px solid #27272a; border-right: 1px solid #27272a; }
td:last-child, th:last-child { border-right: none; }

.table-wrapper {
    overflow-x: auto;
    border-radius: 0.75rem;
    border: 1px solid var(--zinc-800);
}
.ufa-table { text-align: left; }
.ufa-table th { background-color: #111; color: var(--ufa-gold); font-weight: 700; border-bottom: 2px solid #333; padding: 1rem 1.5rem; }
.ufa-table td { color: #d4d4d8; padding: 1rem 1.5rem; border-bottom: 1px solid #222; border-right: none; }
.ufa-table tr:hover td { background-color: #1a1a1a; }

/* Mobile Bottom Nav */
.bottom-nav { display: none; }
@media (max-width: 767px) {
    body { padding-bottom: 90px; }
    .hidden-mobile { display: none !important; }
    .bottom-nav {
        display: flex; position: fixed; bottom: 0; left: 0; width: 100%; height: 75px;
        background: #050505; border-top: 2px solid var(--ufa-gold); z-index: 99999;
        justify-content: space-between; padding: 0 10px; box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
    }
    .nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ufa-gold); font-size: 11px; font-weight: bold; }
    .nav-center { position: relative; top: -12px; }
    .nav-center-icon {
        width: 48px; height: 48px; background: var(--ufa-gold); color: black; border-radius: 50%;
        display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 4px; box-shadow: 0 0 10px rgba(245,233,0,0.5);
    }
}
@media (min-width: 768px) { .hidden-desktop { display: none !important; } }
