/* --- Header Base Styles --- */
header {
    background: linear-gradient(to bottom, #2a3556, var(--primary-blue));
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

header img {
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.header-images .main-logo {
    max-width: 300px;
    height: auto;
}

.header-images .side-image {
    max-width: 200px;
    height: auto;
}

.side-image {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 85% 85% at center, black 40%, transparent 100%);
}

/* --- Swag + Sponsor Container --- */
.header-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
    flex-wrap: wrap;
}

/* Swag button */
.swag-button {
    display: inline-block;
    background: #1a1a1a;
    color: var(--accent-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.swag-button:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,.5);
}

/* Sponsor button */
.sponsor-button-container {
    text-align: center;
}

.sponsor-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sponsor-button:hover {
    background-color: #ffaa00;
}

/* --- Accolades --- */
.accolades {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-blue);
    line-height: 1.8;
    text-align: center;
}

/* --- Intro Section --- */
.intro-section {
    max-width: 1200px;
    margin: 1.5rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.intro-section p {
    font-size: 1.1rem;
    color: var(--text-blue);
    margin-bottom: 1rem;
}

.intro-section img {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

/* --- Animations --- */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
