:root {
    /* Industrial / Dark Palette */
    --bg-color: #4d2f18;
    /* Custom Brown */
    --surface-color: rgba(30, 30, 30, 0.5);
    /* More transparent for new BG */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;

    /* Metallic/Brass Accent - easily changeable */
    --accent-color: #f2a40c;
    /* Custom Golden/Orange */
    --accent-hover: #ffb833;
    --border-color: #333;

    --font-primary: 'BirthOfAHero',
        sans-serif;
    --font-ui: 'Lato',
        system-ui,
        -apple-system,
        sans-serif;
}

/* Font Face */
@font-face {
    font-family: 'BirthOfAHero';
    src: url('fonts/BIRTH_OF_A_HERO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Import Lato from Google Fonts (standard reliable source) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    /* Background Image Setup */
    background-image: url('assets/mammoth-isolated.png');
    /* Placeholder: Replace with custom SVG */
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Parallax effect */

    color: var(--text-primary);
    font-family: var(--font-ui);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
}

/* Overlay to darken background for readability if needed */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: -1;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-primary);
    font-weight: normal;
    /* Font already has weight */
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout */
.main-header {
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    max-width: 480px;
    padding: 0 20px;
}

.logo-container {
    /* Optional: Add a backing to logo if it needs to pop */
}

.logo-img {
    max-width: 150px;
    display: block;
    margin: 0 auto 15px auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.brand-title {
    font-size: 2.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.links-container {
    width: 100%;
    max-width: 480px;
    /* Mobile optimal max-width */
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    /* Push footer down */
}

/* Buttons / Links */
.btn-sharp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background-color: var(--surface-color);
    border: 2px solid var(--accent-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    /* Larger for display font readability */
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
    /* Glossy industrial glass effect */

    /* SHARP EDGES RULES */
    border-radius: 0 !important;
}

.btn-sharp:hover,
.btn-sharp:active {
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 164, 12, 0.4);
    /* Glow effect matching #f2a40c */
}

.btn-sharp:focus {
    outline: 2px dashed #fff;
    outline-offset: 4px;
}

/* Footer */
.main-footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-shadow: 1px 1px 2px black;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 30, 0.95);
    border-top: 2px solid var(--accent-color);
    padding: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-buttons .btn {
    flex: 1;
    max-width: 150px;
    font-size: 1.2rem;
    padding: 10px;
    cursor: pointer;
}

.btn-accept {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: var(--bg-color);
    font-family: var(--font-primary);
    border-radius: 0;
}

.btn-decline {
    background-color: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    border-radius: 0;
}

.btn-decline:hover {
    border-color: #fff;
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    body {
        background-position: center center;
        /* Ensure background starts from the top on mobile */
    }
}