:root { --time-col: 120px; }
body { margin:0; font-family:'Open Sans',sans-serif; background:#fff; color:#000; }
h1, h2, h3 { font-family:'Oswald',sans-serif; }
/* ===== HERO (full image, no crop) ===== */
.hero {
position: relative;
width: 100%;
aspect-ratio: 2000 / 1349; /* keeps correct height from width */
height: auto; /* let aspect-ratio drive height */
background: #000;
overflow: hidden;
margin-bottom: 20px;
}
.hero img {
width: 100%;
height: 100%;
object-fit: contain; /* full image visible */
object-position: center;
display: block;
}
.hero::after {
content: "";
position: absolute; inset: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.15) 40%, rgba(0,0,0,0));
pointer-events: none;
}
@media (min-width: 1200px) {
.hero { height: auto; aspect-ratio: 2000 / 1349; }
.hero img { object-fit: contain; }
}
/* ===== GAME META (details under hero) ===== */
.game-meta { background:#fff; padding: 12px 0 0; }
.game-meta .meta-grid {
display: grid;
gap: 12px;
padding: 0 0 16px;
grid-template-columns: repeat(1, 1fr);
}
@media (min-width:700px) { .game-meta .meta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width:1100px) { .game-meta .meta-grid { grid-template-columns: repeat(5, 1fr); } }
.game-meta .meta-grid.sixup {
padding: 0 0 20px;
grid-template-columns: 1fr;
gap: 16px;
}
@media (min-width:700px) { .game-meta .meta-grid.sixup { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width:900px) { .game-meta .meta-grid.sixup { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.meta-item {
border:1px solid #ddd;
border-left:4px solid #f3aa1c;
background:#e4e7ea;
padding: 10px 12px;
min-height: 64px;
display:flex; flex-direction:column; justify-content:center;
}
.meta-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color:#3768b2; font-weight:700; margin-bottom:4px; }
.meta-value { font-size: 16px; color:#111; line-height:1.3; font-weight:600; }
.game-meta .meta-grid.sixup .meta-item {
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
column-gap: 12px;
row-gap: 6px;
padding: 14px 16px;
border-radius: 10px;
}
.game-meta .meta-grid.sixup .meta-label { grid-column: 2; margin:0; }
.game-meta .meta-grid.sixup .meta-value { grid-column: 2; font-size: 18px; font-weight:700; }
.game-meta .meta-grid.sixup .meta-actions { grid-column: 2; }
.meta-icon {
width: 40px; height: 40px;
display: grid; place-items: center;
border-radius: 999px;
background: #eef3fb;
color: #3768b2;
flex-shrink: 0;
}
.meta-icon svg { width: 22px; height: 22px; }
.meta-actions .quick-link-button { padding: 10px 16px; font-size: 14px; margin-top: 0; }
/* ===== PRE-SCHEDULE SPLIT SECTION ===== */
.pre-schedule { padding: 2px 0px 15px; background: #fff; }
.info-split {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
margin-bottom: 30px;
}
.info-split:not(:last-of-type) { margin-bottom: 30px; }
@media (min-width: 900px) {
.info-split { grid-template-columns: 1fr 1fr; }
.info-split.reverse { direction: rtl; }
.info-split.reverse > * { direction: ltr; }
}
.info-media {
border: 1px solid #ddd;
background: #000;
aspect-ratio: 16 / 9;
overflow: hidden;
}
.info-media img { width:100%; height:100%; object-fit:cover; display:block; }
.info-body {
border: 1px solid #ddd;
border-left: 4px solid #3768b2;
background: #fff;
padding: 16px;
}
.info-body h2 { font-size: 28px; font-weight:700; color:#3768b2; margin:0 0 10px; }
.info-body p { margin:0 0 22px; line-height:1.55; color:#222; }
.info-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; }
.info-tag {
border: 1px solid #ddd;
padding: 4px 8px;
border-radius: 4px;
font-size: 13px;
font-weight: 400;
color: #555;
background: #f2f2f2;
cursor: default;
}
/* ===== SPOTLIGHT (featured items) ===== */
.spotlight { background: #fff; }
.spotlight-card {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto 1fr;
gap: 0;
border: 1px solid #ddd;
border-left: 4px solid #3768b2;
background: #fff;
overflow: hidden;
border-radius: 10px;
height: 100%;
}
.spotlight-media { width: 100%; aspect-ratio: 21 / 9; background: #000; }
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.spotlight-title { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: #3768b2; margin: 0 0 8px; }
.spotlight-text { margin: 0 0 12px; line-height: 1.55; color: #222; }
.spotlight-card.gold { border-left-color: #3768b2; }
.spotlight-grid {
display: grid;
grid-template-columns: 1fr; /* mobile */
gap: 16px;
padding: 0 0 30px;
}
@media (min-width: 900px) {
.spotlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } /* tablet */
}
@media (min-width: 1100px) {
.spotlight-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } /* desktop: 3-up */
}
/* ===== Gameday Maps (no captions) ===== */
.maps { background:#fff; padding: 0 0 40px; }
.maps-grid {
display:grid;
grid-template-columns: 1fr; /* mobile stacks */
gap:16px;
}
@media (min-width: 900px) {
.maps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.map-card {
position: relative;
border:1px solid #ddd;
border-left:4px solid #3768b2; /* UCLA blue accent */
background:#fff;
border-radius:10px;
overflow:hidden;
transition: transform 140ms ease, box-shadow 140ms ease, border-left-width 140ms ease;
}
.map-card:hover {
transform: translateY(-2px);
box-shadow:0 6px 18px rgba(0,0,0,0.08);
border-left-width:6px;
}
.map-media {
position: relative;
background:#000;
}
.map-media img {
width:100%;
height:100%;
object-fit: contain; /* show the full map, no cropping */
display:block;
}
/* Clickable area + "Enlarge" pill */
.map-link { position:absolute; inset:0; z-index:2; display:block; text-decoration:none; }
.map-overlay {
position:absolute; top:12px; right:12px;
display:flex; align-items:center; gap:6px;
padding:6px 10px;
border-radius:999px;
font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
background: rgba(55,104,178,.92);
color:#fff;
transition: transform 120ms ease;
}
.map-card:hover .map-overlay { transform: translateY(-1px); }
/* ===== BUTTONS (wrap when needed, left aligned) ===== */
.quick-links-buttons {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: flex-start;
align-content: flex-start;
}
.quick-link-button {
padding: 6px 12px;
border-radius: 6px;
background-color: #3768b2;
color: #fff !important;
border: 2px solid #fff;
text-decoration: none !important;
font-weight: bold;
transition: background-color 0.3s ease;
flex: 0 0 auto;
white-space: nowrap;
}
.quick-link-button:hover {
background-color: #f3aa1c;
border: 2px solid #f3aa1c;
color: #000 !important;
}
/* ===== GLOBAL PAGE HEADING ===== */
.page-heading {
font-size: 42px;
font-weight: 700;
text-transform: uppercase;
color: #fff;
padding: 20px 30px;
background: #3768b2; border-bottom: 4px solid #f3aa1c;
}
/* ===== LAYOUT (schedule split) ===== */
.schedule-container {
display: flex;
flex-direction: column;
}
/* use 768px so it behaves like desktop on more screens */
@media (min-width: 768px) {
.schedule-container {
flex-direction: row;
align-items: flex-start;
}
.schedule-left,
.schedule-right {
flex: 1 1 0;
width: auto;
}
.schedule-left {
padding-right: 30px; /* keeps your existing spacing vibe */
}
}
/* === OPTION A: Right photo panel === */
.schedule-right {
background: #fff !important; /* or: transparent */
overflow: visible; /* no need to crop if we're not filling */
}
.schedule-right img {
display: block;
width: 100%;
height: auto; /* keep intrinsic aspect ratio */
object-fit: contain; /* show entire image if any constraints appear */
}
/* Desktop: keep sticky, but don't force panel/image to 100vh */
@media (min-width: 900px) {
.schedule-right {
position: sticky;
top: 0;
height: auto !important; /* remove previous height:100vh */
align-self: flex-start; /* keep the sticky-in-flex fix */
}
.schedule-right img {
height: auto !important; /* undo previous height:100% */
object-fit: contain !important;
}
}
/* ===== SECTION HEADINGS (left column) ===== */
h2 {
font-size:28px;
margin:30px 0 8px;
font-weight:700;
padding-bottom:5px;
color:#3768b2;
}
.schedule-left h2:first-of-type { margin-top:0 !important; }
/* ===== GRID (Schedule) ===== */
.schedule-grid {
display:grid;
grid-template-columns: var(--time-col) 1fr;
border:1px solid #ddd;
}
.schedule-row { display:contents; }
.schedule-time {
background:#fdfdfd;
padding:12px;
font-weight:700;
border-bottom:1px solid #ddd;
position:sticky; left:0; z-index:1;
}
.schedule-event { padding:12px; border-bottom:1px solid #ddd; }
.schedule-time,
.schedule-row.no-time .schedule-event { border-left:4px solid #3768b2; }
.schedule-row:nth-child(even) .schedule-time,
.schedule-row:nth-child(even) .schedule-event { background:#f7f9fc; }
.schedule-row.no-time .schedule-time { display:none; }
.schedule-row.no-time .schedule-event { grid-column: 1 / -1; padding-left:12px; }
/* ===== EXTRAS (full-bleed) ===== */
.extras { padding: 0 0 40px; background:#fff; }
.extras h2 {
font-size:28px; font-weight:700; color:#3768b2;
padding: 0 30px 5px;
}
.feature-grid { display:grid; grid-template-columns:1fr; gap:16px; padding: 0 30px; }
@media (min-width:700px) { .feature-grid { grid-template-columns:repeat(2,1fr); } }
@media (min-width:1100px) { .feature-grid { grid-template-columns:repeat(3,1fr); } }
.feature-card {
display:flex; flex-direction:column;
border:1px solid #ddd; border-left:4px solid #3768b2;
background:#fff; overflow:hidden;
transition: transform 140ms ease, box-shadow 140ms ease, border-left-width 140ms ease;
}
.feature-card:nth-child(even) { background:#f7f9fc; }
.feature-card:hover { transform: translateY(-2px); box-shadow:0 6px 18px rgba(0,0,0,0.08); border-left-width:6px; }
.feature-media { width:100%; aspect-ratio:16/9; background:#000; }
.feature-media img { width:100%; height:100%; object-fit:cover; display:block; }
.feature-body { padding:12px; }
.feature-title { font-size:22px; margin:0 0 6px; line-height:1.2; }
.feature-text { margin:0; line-height:1.5; color:#222; }
/* ===== CALLOUT CARD ===== */
.notice {
margin: 16px 30px 30px; /* matches your page padding rhythm */
border: 1px solid #ddd;
border-left: 6px solid #3768b2; /* UCLA blue */
background: #fff;
border-radius: 10px;
padding: 14px 16px;
display: grid;
grid-template-columns: auto 1fr;
column-gap: 10px;
align-items: start;
}
.notice--gold { border-left-color: #f3aa1c; } /* gold accent option */
.notice-icon {
color: #3768b2;
display: grid; place-items: center;
width: 28px; height: 28px;
border-radius: 999px;
background: #eef3fb;
}
.notice-body { line-height: 1.45; color: #111; }
.notice-body strong { color: #3768b2; }
/* ===== ANNOUNCE BAR (FULL-BLEED) ===== */
.announce-bar {
background: linear-gradient(90deg, #3768b2, #2f5da0);
color: #fff;
border-bottom: 4px solid #f3aa1c;
padding: 10px 0;
}
.announce-inner {
padding: 0 30px;
display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.announce-pill {
background: rgba(255,255,255,.15);
border: 1px solid rgba(255,255,255,.35);
padding: 4px 10px;
border-radius: 999px;
font-weight: 700;
letter-spacing: .06em;
text-transform: uppercase;
font-size: 12px;
}
.announce-text { font-weight: 600; }
Opponent
Washington Huskies
Date/Time
Sat., Nov. 22 | 7:30 PM (PT)
Location
Rose Bowl Stadium
Radio
790 KABC / SiriusXM 85 /
Stream
GAMEDAY ESSENTIALS
Know Before You Go
In order to make the fan experience the best it can be, we suggest visiting UCLA's Gameday Information Page prior to visiting the Rose Bowl, as it contains a host of essential items including the Rose Bowl's clear bag policy, the fan code of conduct and a list of prohibited items not allowed in the stadium.
Tickets & Parking
The Bruins are back at the Rose Bowl for another exciting Big Ten matchup! UCLA does not print physical tickets for entrance into the Rose Bowl and instead has adopted a mobile-friendly option with access via your smart phone. Parking can also be purchased in advance and used for entrance to several lots surrounding the stadium. Visit the links below for all the pertinent information.
Make the Most of Your Gameday
Enjoy America’s Best Tailgating on the golf course or check out our great entertainment options! BruinFest features games, live music, a beer garden, and elevated tailgating experiences courtesy of REVELxp.
The Area H Fan Zone opens at 3:15 PM on Nov. 22 and features beer gardens, food trucks, private hospitality, and great activations with our many partners!
Bruin Walk + Light Show
Welcome the team in style with the new & improved Bruin Walk! Meet the team along the edge of the Area H fan zone at 5:00 PM. Bruin Walk will feature performances by the UCLA Marching Band, Spirit Squad and the UCLA Alumni Band as we welcome the Bruins to the Rose Bowl. Check out the map below for more info!
Also, don't forget to download the UCLA Bruins app to take part in the Gameday Light Show that will take place during the 3rd quarter break of this week's game.
Gameday Maps
Hospitality Options
REVELxp Elevated Tailgating
REVELxp offers premium full-service tailgate experiences conveniently located steps away from the stadium! They handle everything from setup to takedown of the tailgate gear, ensuring hassle-free experience for guests. Additionally, they will coordinate food and beverage services via a variety of premium catering options in the area. Whether it’s friends and family gatherings, university department outings, or corporate events, they have you covered! You just have to show up, have fun, and then head to the game!
Blue Moon Club
UCLA offers several hospitality experiences to make gameday at the Rose Bowl even better. The Blue Moon Club offers an exclusive premium lounge located in the Terry Donahue Pavilion with a view of the west concourse and arroyo. This exclusive club boasts numerous amenities and perks, including shaded lounge areas, complimentary snacks, TVs showing college football games from around the country, and cocktails for purchase. Blue Moon Club Membership is available for $60 per game.
Cutwater Cocktail Bar & Westside Lounge
The Cutwater Cocktail Bar (east concourse, near Tunnel 7) and the Westside Lounge (across from Tunnel 18) offer beer, wine, and cocktails, plus shaded areas and multiple big screen TVs. Access via the Wooden Athletic Fund or your Blue Moon Club membership.
UCLA GameDay TIMELINE
HONORARY CAPTAIN
PRE-GAME ENTERTAINMENT
1:30 PM
Rose Bowl Stadium Parking Lots Open
1:30 PM
BruinFest & REVELxp Tailgating Begins
3:15 PM
Area H Fan Zone Opens
5:00 PM
BruinFest Concert Series Begins
5:00 PM
Bruin Walk - Welcome the team to the Rose Bowl!
6:00 PM
UCLA Spirit Squad & Alumni Band Join Performance (Area H)
6:00 PM
Rose Bowl Stadium Gates Open
6:45 PM
Alumni Band Performance (Court of Champions)
7:05 PM
Senior Day Ceremony
7:24 PM
The Solid Gold Sound of the UCLA Marching Band National Anthem
7:32 PM
Bruins take the field!
7:36 PM
Kickoff. Beat the Huskies!
IN-GAME ENTERTAINMENT
Black Excellence Faculty/Staff Recognition
UCLA Black Student-Athlete Alliance Recognition
HALFTIME ENTERTAINMENT
Solid Gold Sound of the UCLA Marching Band