@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap'); body { scroll-behavior: smooth; background: #1a1a2e; } .countdown-item { display: flex; flex-direction: column; align-items: center; padding: 0.5rem; } .countdown-number { font-size: 1.5rem; font-weight: bold; color: white; min-width: 2.5rem; text-align: center; } .countdown-label { font-size: 0.7rem; color: rgba(255, 255, 255, 0.8); text-transform: uppercase; letter-spacing: 1px; } .video-container { aspect-ratio: 9/16; background-color: #000; position: relative; } video { width: 100%; height: 100%; background-color: #000; object-fit: cover; } video[poster] { object-fit: cover; background-size: cover; background-position: center; } article img { transition: transform 0.3s ease; width: 100%; height: 300px; object-fit: cover; border-radius: 8px; } article img:hover { transform: scale(1.02); } article p { font-size: 1.1rem; line-height: 1.6; } article h3 { font-size: 1.4rem; margin-bottom: 1rem; } .grid.md\:grid-cols-2 { align-items: start; } .social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; transition: transform 0.3s ease; } .social-icon:hover { transform: scale(1.1); } /* Custom scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #16213e; } ::-webkit-scrollbar-thumb { background: #0f3460; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #0a264e; }