:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #c5a017;
    /* Noble Gold */
    --accent-glow: rgba(197, 160, 23, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(197, 160, 23, 0.2);
    --card-bg: rgba(255, 255, 255, 0.9);
    --font-main: 'Atkinson Hyperlegible Next', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('assets/fonts/AtkinsonHyperlegibleNext-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('assets/fonts/AtkinsonHyperlegibleNext-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('assets/fonts/AtkinsonHyperlegibleNext-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Atkinson Hyperlegible Next';
    src: url('assets/fonts/AtkinsonHyperlegibleNext-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(197, 160, 23, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(200, 200, 200, 0.1) 0%, transparent 40%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #a08000;
    text-decoration: underline;
}

.container {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 0 2rem;
    flex-direction: column;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
    position: relative;
    /* Soft gold shadow instead of glow */
    filter: drop-shadow(0 0 15px rgba(197, 160, 23, 0.4));
}

.logo-container img {
    height: 140px;
    width: auto;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover img {
    transform: scale(1.02);
}

.wordmark {
    margin-top: 1rem;
    height: 50px;
    opacity: 0.9;
    filter: invert(0);
    /* Wordmark is likely white; if it's black locally, good. If it is an SVG, check fill. Assuming it needs to be visible on white. */
}




.tagline {
    font-size: 1.4rem;
    font-weight: 400;
    color: #555;
    max-width: 600px;
    line-height: 1.5;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Clean Simple Cards (Not Heavy Glass) */
.card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 160, 23, 0.15);
    border-color: var(--glass-border);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    /* Remove gradient text, simpler, starker */
    background: none;
    -webkit-text-fill-color: initial;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

strong {
    color: #000;
    font-weight: 700;
}

/* Footer & Support */
.support-section {
    text-align: center;
    margin-top: auto;
    padding-bottom: 4rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
    border-top: 1px solid #f0f0f0;
    padding-top: 3rem;
    width: 100%;
}

.support-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.support-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    color: #666;
}

.support-link strong {
    color: #333;
    font-size: 1.1rem;
}

.support-link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.support-link:hover strong {
    color: var(--accent-color);
}


/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container {
        gap: 2rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }
}