Changed around line 1
+ :root {
+ --primary-color: #1a73e8;
+ --secondary-color: #202124;
+ --background-color: #ffffff;
+ --text-color: #202124;
+ --accent-color: #fbbc05;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ .hero {
+ height: 60vh;
+ background: linear-gradient(135deg, var(--primary-color), #0043a0);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: white;
+ padding: 0 2rem;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
+ }
+
+ .video-gallery {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .video-container {
+ display: grid;
+ grid-template-columns: 1fr;
+ gap: 2rem;
+ margin-bottom: 3rem;
+ }
+
+ .featured-video {
+ width: 100%;
+ border-radius: 12px;
+ box-shadow: 0 4px 12px rgba(0,0,0,0.15);
+ }
+
+ .video-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .video-card {
+ background: white;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 2px 8px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .video-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .video-card video {
+ width: 100%;
+ display: block;
+ }
+
+ .video-card h3 {
+ padding: 1rem;
+ font-size: 1.1rem;
+ text-align: center;
+ }
+
+ .site-footer {
+ background: var(--secondary-color);
+ color: white;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .site-footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ }
+
+ .site-footer a {
+ color: white;
+ text-decoration: none;
+ transition: opacity 0.3s ease;
+ }
+
+ .site-footer a:hover {
+ opacity: 0.8;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .video-container {
+ grid-template-columns: 1fr;
+ }
+ }