@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --color-bg-dark: #1a1a1d;
    --color-bg-marble: #2c2c2e;
    --color-gold: #c5a059;
    --color-gold-hover: #d4af6a;
    --color-blood-red: #8a0e0e;
    --color-text-main: #e0e0e0;
    --color-text-muted: #a0a0a0;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Playfair Display', serif;
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle texture overlay to mimic marble/stone grain could go here if using images, 
       but we will stick to CSS gradients for now to keep it light */
    background: radial-gradient(circle at center, #2e2e33 0%, #1a1a1d 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Header / Title */
h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #ffd700, #c5a059);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding: 1rem 0;
}

/* Card / Content Box */
.content-box {
    background: rgba(44, 44, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.5);
}

p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
    background: var(--color-gold);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn:hover {
    background: var(--color-gold-hover);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--color-gold-hover);
}

/* Utility */
.highlight {
    color: var(--color-blood-red);
    font-weight: bold;
}

footer {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.6;
}