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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

:root {
  --berkeley-blue: #003262;
  --berkeley-gold: #FDB515;
  --berkeley-light-blue: #C4D8E2;
  --berkeley-dark-blue: #1B365D;
  --berkeley-gray: #6B6B6B;
  --berkeley-light-gray: #F5F5F5;
}

.site-header {
  background: linear-gradient(135deg, var(--berkeley-blue) 0%, var(--berkeley-dark-blue) 100%);
  border-bottom: 3px solid var(--berkeley-gold);
  padding: 1rem 0;
}
.site-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .site-title {
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-size: 1.5rem;
}
.site-header .site-nav .nav-trigger {
  display: none;
}
.site-header .site-nav .trigger {
  display: flex;
  gap: 2rem;
}
.site-header .site-nav .page-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-header .site-nav .page-link:hover {
  color: var(--berkeley-gold);
}

.page-content {
  background-color: var(--berkeley-light-gray);
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.site-footer {
  background-color: var(--berkeley-blue);
  color: white;
  border-top: 3px solid var(--berkeley-gold);
  padding: 2rem 0;
}
.site-footer .footer-col-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.site-footer .footer-heading {
  color: var(--berkeley-gold);
  margin-bottom: 1rem;
}
.site-footer .social-media-list {
  list-style: none;
}
.site-footer .social-media-list a {
  color: white;
  text-decoration: none;
}
.site-footer .social-media-list a:hover {
  color: var(--berkeley-gold);
}

.hero {
  background: linear-gradient(rgba(0, 50, 98, 0.7), rgba(27, 54, 93, 0.7)), url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80") center/cover;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  margin: 2rem 0;
  border-radius: 10px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card .card-content {
  padding: 1.5rem;
}
.card .card-content h3 {
  color: var(--berkeley-blue);
  margin-bottom: 0.5rem;
}
.card .card-content p {
  color: var(--berkeley-gray);
  line-height: 1.6;
}

.ad-container {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  margin: 2rem 0;
  text-align: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.ad-container.ad-loaded {
  border: none;
  background: white;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ad-container.ad-winner {
  border: 2px solid var(--berkeley-gold);
  box-shadow: 0 4px 12px rgba(253, 181, 21, 0.3);
}
@media (max-width: 768px) {
  .ad-container {
    min-height: 200px;
    margin: 1rem 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: var(--berkeley-blue);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

.icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  background-color: var(--berkeley-light-gray);
}

.outstream-video-page {
  background-color: var(--berkeley-light-gray);
  min-height: 100vh;
}
.outstream-video-page .video-header {
  text-align: center;
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--berkeley-blue), var(--berkeley-dark-blue));
  color: white;
  margin-bottom: 2rem;
}
.outstream-video-page .video-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.outstream-video-page .video-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.outstream-video-page .outstream-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
  width: 100%;
}
.outstream-video-page .outstream-container .outstream-ad-container {
  width: 800px;
  height: 450px;
  flex-shrink: 0;
}
.outstream-video-page .outstream-ad-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.outstream-video-page .outstream-ad-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}
.outstream-video-page .outstream-ad-container .ad-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 10;
}
.outstream-video-page .outstream-ad-container .video-ad-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.outstream-video-page .outstream-ad-container .video-ad-wrapper .outstream-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.outstream-video-page .outstream-ad-container .video-ad-wrapper .video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.outstream-video-page .outstream-ad-container .video-ad-wrapper .video-overlay:hover {
  opacity: 0.9;
}
.outstream-video-page .outstream-ad-container .video-ad-wrapper .video-overlay .video-info h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.outstream-video-page .outstream-ad-container .video-ad-wrapper .video-overlay .video-info p {
  opacity: 0.9;
  font-size: 0.9rem;
  line-height: 1.4;
}
.outstream-video-page .video-info-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.outstream-video-page .video-info-section .video-details h2 {
  color: var(--berkeley-blue);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.outstream-video-page .video-info-section .video-details p {
  color: var(--berkeley-dark-gray);
  line-height: 1.6;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .outstream-video-page .outstream-container {
    padding: 0 0.5rem;
  }
  .outstream-video-page .outstream-container .outstream-ad-container {
    width: 100%;
    height: 300px;
    max-width: 600px;
  }
  .outstream-video-page .outstream-ad-container .video-ad-wrapper .video-overlay {
    padding: 1rem;
  }
  .outstream-video-page .outstream-ad-container .video-ad-wrapper .video-overlay .video-info h3 {
    font-size: 1.1rem;
  }
  .outstream-video-page .outstream-ad-container .video-ad-wrapper .video-overlay .video-info p {
    font-size: 0.85rem;
  }
  .outstream-video-page .video-info-section {
    padding: 1.5rem;
    margin: 0 0.5rem 2rem;
  }
}
@media (max-width: 480px) {
  .outstream-video-page .outstream-container .outstream-ad-container {
    width: 100%;
    height: 250px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .site-nav .trigger {
    background-color: var(--berkeley-blue);
    border-radius: 5px;
    padding: 1rem;
  }
  .site-header .wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .site-footer .footer-col-wrapper {
    grid-template-columns: 1fr;
  }
  .outstream-video-page .video-header h1 {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=main.css.map */