/* ===== CSS Custom Properties ===== */
:root {
    --gold: #D4AF37;
    --deep-red: #8B0000;
    --soft-blue: #1E90FF;
    --black: #000;
    --rich-black: #0A0A0A;
    --color-white: #fff;
    --color-red: #8B0000;
    --color-gold: #D4AF37;
    --color-black: #000;
    --earth-brown: #8B7355;
    --warm-cream: #F5F1E6;
    --soft-green: #3A5F49;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --orange-500: #F97316;
    --orange-600: #EA580C;
    --purple-600: #9333EA;
    --teal-500: #14B8A6;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Roboto Condensed', 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    background-color: var(--rich-black);
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6,
.impact-font,
.nav-link,
button,
.gold-text {
    font-family: 'Bebas Neue', 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
}
h1 { font-size: 5rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 1.8rem; }

.pixel-font,
.release-badge,
.new-badge,
.blog-meta {
    font-family: 'Press Start 2P', cursive;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.7rem;
    line-height: 1.4;
}

/* ===== Utility Helpers (kept minimal) ===== */
.text-gold { color: var(--gold); }
.text-white { color: #fff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-black { color: #000; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.font-bold { font-weight: 700; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }

/* ===== Layout Containers ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== Skip Navigation ===== */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--gold);
    color: var(--black);
    padding: 8px;
    text-decoration: none;
    font-weight: bold;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s ease;
}
.skip-nav:focus { top: 0; }

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: rgba(10,10,10,0.95);
    border-bottom: 1px solid #1F2937;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: var(--gold);
}
.nav-links {
    display: none; /* hidden on mobile */
    gap: 2rem;
}
@media (min-width: 768px) {
    .nav-links { display: flex; }
}
.nav-link {
    font-size: 1.2rem;
    color: #fff;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--gold), var(--deep-red));
    transition: width 0.4s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-social-desktop {
    display: none; /* hidden on mobile */
    align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .nav-social-desktop { display: flex; }
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}
@media (min-width: 768px) {
    .mobile-menu-toggle { display: none; }
}

/* Mobile dropdown */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(10,10,10,0.95);
    border-top: 1px solid #1F2937;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { color: var(--gold); }
.mobile-menu .nav-link:hover { color: #fff; }
.mobile-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
}

/* Social icons (reusable) */
.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
}
.social-icon:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--gold);
    color: black;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(rgba(10,10,10,0.65), rgba(10,10,10,0.85)), url('/images/hero.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    padding-top: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn--gold {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn--gold:hover {
    background: rgba(212,175,55,0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}
.btn--orange {
    border-color: var(--orange-500);
    color: var(--orange-500);
    background: transparent;
}
.btn--orange:hover {
    background: rgba(249,115,22,0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(249,115,22,0.3);
}
.btn--audiomack {
    background-color: #ff6900;
    color: white;
}
.btn--audiomack:hover {
    background-color: #e65c00;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255,105,0,0.3);
}
.btn--bandcamp {
    background-color: #629aa9;
    color: white;
}
.btn--bandcamp:hover {
    background-color: #4f7e8a;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(98,154,169,0.3);
}
.btn--purple {
    border-color: var(--purple-600);
    color: white;
    background: transparent;
}
.btn--purple:hover {
    background: rgba(147,51,234,0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(147,51,234,0.3);
}
.btn--subscribe {
    background: linear-gradient(to right, #D4AF37, #ca8a04);
    color: black;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn--subscribe:hover {
    background: linear-gradient(to right, #e5c158, #dba108);
    transform: translateY(-2px);
}

/* ===== Music Cards ===== */
.music-card {
    background: rgba(20,20,20,0.7);
    border: 1px solid rgba(212,175,55,0.1);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (min-width: 768px) {
    .music-card {
        flex-direction: row;
        text-align: left;
    }
}
.music-card:hover {
    transform: translateY(-8px);
    background: rgba(30,30,30,0.9);
    box-shadow: 0 15px 30px rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.3);
}
.music-card__image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}
.music-card__content {
    flex: 1;
}

/* ===== EP Card ===== */
.ep-card {
    display: block;
    text-align: center;
    background: rgba(15,15,15,0.9);
    border-top: 4px solid var(--deep-red);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.4s ease;
}
.ep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139,0,0,0.2);
    border-top: 4px solid var(--gold);
}

/* ===== Blog Card ===== */
.blog-card {
    background: rgba(20,20,20,0.8);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.2);
    border-color: var(--gold);
}
.blog-card__image {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.blog-card__body {
    padding: 1.5rem;
}
.read-more {
    color: var(--gold);
    font-weight: bold;
    transition: all 0.3s ease;
}
.read-more:hover {
    color: #fff;
    transform: translateX(5px);
    display: inline-block;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    overflow-y: auto;
}
.modal.active { display: block; }
.modal-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 2rem;
    background: var(--rich-black);
    border: 1px solid var(--gold);
    border-radius: 8px;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.close-modal:hover { transform: scale(1.2); }

/* ===== Footer ===== */
.footer {
    border-top: 1px solid #1F2937;
    background-color: rgba(10,10,10,0.95);
    padding: 2rem 0;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-copyright {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .footer-copyright { text-align: left; margin-bottom: 0; }
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: #6b7280;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }

/* ===== Newsletter Popup ===== */
.newsletter-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
    transition: opacity 0.3s ease;
}
.newsletter-overlay.hidden { display: none; }
.newsletter-box {
    background: var(--rich-black);
    border: 1px solid var(--gold);
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 28rem;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.newsletter-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
.newsletter-close:hover { color: var(--gold); }
.newsletter-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1F2937;
    border: none;
    border-radius: 0.5rem;
    color: white;
    margin-bottom: 1rem;
}
.newsletter-form input:focus {
    outline: 2px solid var(--gold);
}

/* ===== Work Page Overrides (scoped) ===== */
body.work-page {
    background-color: var(--warm-cream);
    color: #333;
}
.work-page h1,
.work-page h2,
.work-page h3,
.work-page .nav-link {
    color: var(--earth-brown);
}
.work-page .nav-link::after {
    background: linear-gradient(90deg, var(--earth-brown), var(--soft-green));
}
.work-page .section-title {
    font-size: 2rem;
    margin: 4rem 0 2rem;
    color: var(--soft-green);
    border-bottom: 2px solid rgba(139,115,85,0.1);
    padding-bottom: 0.5rem;
}
.work-page .content-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.work-page .quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--earth-brown);
    border-left: 3px solid var(--soft-green);
    padding-left: 1.5rem;
    margin: 2rem 0;
}
.work-page .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}
@media (min-width: 768px) {
    .work-page .action-buttons { flex-direction: row; justify-content: center; }
}
.work-page .btn-music {
    background: linear-gradient(135deg, var(--earth-brown), #A68A64);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}
.work-page .btn-donate {
    background: linear-gradient(135deg, var(--soft-green), #4A7D5E);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}
.work-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.work-page .value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ===== Animations & Effects ===== */
.fade-in { animation: fadeIn 1.2s ease-out forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s cubic-bezier(0.22,0.61,0.36,1) forwards;
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

.btn-pulse {
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}
.btn-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
@keyframes shine {
    100% { transform: translateX(100%); }
}

@keyframes bounce {
    0%,20%,50%,80%,100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}
.animate-bounce { animation: bounce 2s infinite; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--rich-black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #c9a227; }

/* ===== Additional utility classes used by index.html and others ===== */
.bg-deep-red { background-color: var(--deep-red); }
.bg-rich-black { background-color: var(--rich-black); }
.bg-gray-900 { background-color: var(--gray-900); }
.gold-border { border-color: var(--gold); }
.border-gold-500 { border-color: var(--gold); }
.hover\:text-gold-500:hover { color: var(--gold); }
.text-gold-500 { color: var(--gold); }

/* ===== Missing utility classes (commonly used in the site) ===== */

/* Font Sizes */
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
.text-7xl  { font-size: 4.5rem; }
.text-8xl  { font-size: 6rem; }

@media (min-width: 768px) {
    .md\:text-2xl  { font-size: 1.5rem; }
    .md\:text-4xl  { font-size: 2.25rem; }
    .md\:text-5xl  { font-size: 3rem; }
    .md\:text-7xl  { font-size: 4.5rem; }
    .md\:text-8xl  { font-size: 6rem; }
}

/* Letter Spacing */
.tracking-wider { letter-spacing: 0.05em; }
.tracking-tight { letter-spacing: -0.025em; }

/* Line Height */
.leading-relaxed { line-height: 1.625; }

/* Grid helpers */
.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)); }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Additional margin/padding helpers */
.mx-auto { margin-left: auto; margin-right: auto; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.pt-24 { padding-top: 6rem; }
.pb-20 { padding-bottom: 5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Background opacity helpers */
.bg-opacity-50 { background-color: rgba(0,0,0,0.5); }
.bg-opacity-95 { background-color: rgba(10,10,10,0.95); }

/* Hover transform helpers */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.hover\:shadow-yellow-500\/30:hover { box-shadow: 0 10px 15px -3px rgba(212,175,55,0.3); }
.hover\:shadow-purple-500\/30:hover { box-shadow: 0 10px 15px -3px rgba(147,51,234,0.3); }
.hover\:shadow-orange-500\/30:hover { box-shadow: 0 10px 15px -3px rgba(249,115,22,0.3); }
.hover\:shadow-green-500\/30:hover { box-shadow: 0 10px 15px -3px rgba(34,197,94,0.3); }
.hover\:shadow-red-500\/30:hover { box-shadow: 0 10px 15px -3px rgba(239,68,68,0.3); }

/* More hover colors */
.hover\:bg-yellow-900:hover { background-color: rgba(120,53,15,0.2); }
.hover\:bg-purple-900:hover { background-color: rgba(88,28,135,0.2); }
.hover\:bg-orange-900:hover { background-color: rgba(124,45,18,0.2); }
.hover\:bg-gray-700:hover { background-color: #374151; }

/* Transform helpers */
.rotate-0 { transform: rotate(0deg); }
.hover\:rotate-1:hover { transform: rotate(1deg); }
.active\:scale-95:active { transform: scale(0.95); }
.active\:translate-y-0:active { transform: translateY(0); }

/* Gradient backgrounds */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-from), var(--tw-gradient-to)); }
.from-yellow-500 { --tw-gradient-from: #eab308; }
.from-yellow-600 { --tw-gradient-from: #ca8a04; }
.to-yellow-600 { --tw-gradient-to: #ca8a04; }
.to-yellow-800 { --tw-gradient-to: #854d0e; }
.from-green-600 { --tw-gradient-from: #16a34a; }
.to-green-800 { --tw-gradient-to: #166534; }
.from-red-800 { --tw-gradient-from: #991b1b; }
.to-red-900 { --tw-gradient-to: #7f1d1d; }
.from-rich-black { --tw-gradient-from: var(--rich-black); }
.to-gray-900 { --tw-gradient-to: var(--gray-900); }

/* General transition */
.transition { transition: all 0.3s ease; }
.transition-all { transition: all 0.3s ease; }
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }

/* Border helpers */
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-gray-800 { border-color: #1F2937; }
.border-gray-200 { border-color: #e5e7eb; }
.border-white { border-color: #fff; }
.border-orange-500 { border-color: var(--orange-500); }
.border-purple-500 { border-color: #8b5cf6; }
.border-orange-300 { border-color: #fdba74; }

/* Ring for focus */
.focus\:ring-2:focus { outline: 2px solid var(--tw-ring-color); }
.focus\:ring-gold-500:focus { --tw-ring-color: var(--gold); }

/* Text colors */
.text-orange-500 { color: #f97316; }
.text-purple-500 { color: #8b5cf6; }
.text-teal-500 { color: #14b8a6; }
.text-green-400 { color: #4ade80; }
.text-orange-300 { color: #fdba74; }
.text-orange-200 { color: #fed7aa; }
.text-warm-cream { color: var(--warm-cream); }
.text-earth-brown { color: var(--earth-brown); }

/* Width helpers */
.max-w-xs { max-width: 20rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-6xl { max-width: 72rem; }

/* Height and shadow helpers for the progress bar */
.h-6 { height: 1.5rem; }
.shadow-inner { box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); }

/* Animation */
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Group hover */
.group:hover .group-hover\:text-gold-500 { color: var(--gold); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:underline { text-decoration: underline; }

/* Additional margin top */
.mt-2 { margin-top: 0.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-24 { margin-top: 6rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.ml-2 { margin-left: 0.5rem; }

/* Padding helpers */
.pt-32 { padding-top: 8rem; }
.pt-4 { padding-top: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

/* Override some default heading sizes for smaller screens */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
}
/* ===== Override browser autofill styles ===== */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #1F2937 inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    transition: background-color 5000s ease-in-out 0s;
}