/* Base style setup */
body {
    background-color: #000000;
    color: #F5F5F5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* --- Page Navigation System --- */
/* Hides all "pages" by default */
.page {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
/* Shows only the "active" page */
.page.active {
    display: block;
    opacity: 1;
}

/* --- Custom Forms --- */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db; /* gray-300 */
}
.form-input, .form-select {
    display: block;
    width: 100%;
    border-radius: 0.5rem; /* rounded-lg */
    background-color: #1a1a1a; /* darker */
    border: 1px solid #374151; /* border-gray-700 */
    padding: 0.75rem 1rem;
    color: #f3f4f6; /* gray-100 */
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}
.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #D4AF37; /* gold */
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* --- Luxury Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #D4AF37; }

/* --- Title Shimmer Animation --- */
@keyframes shimmer {
    0% { background-position: -800px 0; }
    100% { background-position: 800px 0; }
}
.title-shimmer {
    background: linear-gradient(to right, #F5F5F5 20%, #ffffff 40%, #F5F5F5 60%);
    background-size: 800px 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: shimmer 10s linear infinite;
}

/* --- Scroll-in Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* --- Pulsing Gold Badge --- */
.pulse-gold { animation: pulse-gold 3s infinite ease-in-out; }
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 15px 0px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 25px 8px rgba(212, 175, 55, 0.7); }
}

/* --- Interactive Card Hover Effect --- */
.interactive-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.interactive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(212, 175, 55, 0.1);
}

/* --- Mobile Menu --- */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* --- Awards Spotlight --- */
.awards-spotlight-card {
    display: flex;
    flex-direction: column;
    height: auto;
    align-self: start;
    padding: 1.25rem 1.25rem 1.5rem;
    border: 1px solid #1f2937;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(17, 17, 17, 0.98));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.awards-spotlight-image-shell {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.5rem;
    background: #1f2937;
    margin: 0 auto 1rem;
    width: 100%;
    max-width: 300px;
}

.awards-spotlight-image-shell--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top, rgba(255, 79, 147, 0.15), transparent 38%),
        linear-gradient(180deg, #151515, #0a0a0a);
}

.awards-spotlight-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.awards-spotlight-image--placeholder {
    object-fit: contain;
    padding: 1.25rem;
}

.awards-spotlight-kicker {
    margin: 0 0 0.65rem;
    color: #ff7bb1;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.awards-spotlight-details {
    margin-top: 0.85rem;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    padding-top: 0.9rem;
}

.awards-spotlight-details summary {
    cursor: pointer;
    list-style: none;
    color: #d4af37;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.awards-spotlight-details summary::-webkit-details-marker {
    display: none;
}

.awards-spotlight-details[open] summary {
    margin-bottom: 1rem;
}

.awards-spotlight-copy p {
    margin: 0 0 0.9rem;
    color: #d1d5db;
    line-height: 1.7;
}

.awards-spotlight-copy p:last-child {
    margin-bottom: 0;
}

.legacy-award-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .legacy-award-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .legacy-award-card-grid > .awards-spotlight-card {
        grid-column: 2;
    }
}
