:root {
    /* Primary Colors */
    --clr-primary: #7A8C66; /* Serene Olive */
    --clr-bg: #F8F6F2;      /* Warm Sand */
    --clr-beige: #EDE6DD;   /* Soft Beige */

    /* Neutrals */
    --clr-text-dark: #3A3530; /* Espresso Dark */
    --clr-text-muted: #6B6158; /* Muted Pebble */
    --clr-meta: #9B8E82;      /* Soft Clay */
    --clr-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(58,53,48,0.06);
    --shadow-btn-primary: 0 4px 20px rgba(122,140,102,0.3);
}

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

body {
    font-family: var(--font-body);
    color: var(--clr-text-muted);
    background-color: var(--clr-bg);
    line-height: 1.6;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.text-center {
    text-align: center;
}

/* Badge */
.badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background-color: var(--clr-beige);
    color: var(--clr-primary);
    padding: 6px 12px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    color: var(--clr-text-dark);
    font-weight: 700;
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.highlight {
    color: var(--clr-primary);
    position: relative;
    white-space: nowrap;
    text-shadow: 0 0 15px rgba(122, 140, 102, 0.4);
    font-weight: 800; /* Extra bold to stand out */
}

/* Capture Screen Layout */
.capture-screen {
    width: 100%;
    max-width: 650px; /* Increased from 500px */
}

.capture-card {
    background-color: var(--clr-white);
    padding: 60px; /* Increased padding */
    border-radius: 32px;
    box-shadow: var(--shadow-card);
}

@media (max-width: 480px) {
    .capture-card {
        padding: 32px 20px;
    }
}

.event-details {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background-color: var(--clr-bg);
    padding: 16px;
    border-radius: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-text-dark);
    font-weight: 600;
    font-size: 17px; /* Larger font */
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--clr-text-dark);
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group input {
    width: 100%;
    padding: 18px 20px; /* Larger inputs */
    border: 1px solid var(--clr-beige);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 18px; /* Larger font */
    color: var(--clr-text-dark);
    transition: all 0.3s ease;
    background-color: var(--clr-bg);
}

.form-group input:focus {
    outline: none;
    border-color: var(--clr-primary);
    background-color: var(--clr-white);
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 20px 40px; /* Increased */
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 18px; /* Increased */
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: var(--shadow-btn-primary);
}

.btn-primary:hover {
    background-color: #5E6E4E;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

.microcopy {
    font-size: 13px;
    color: var(--clr-meta);
    margin-top: 16px;
}