/* gamelicensor.info */
/* Colors: #2A2A38, #F5A623, #E0E0E0, #0A0A0F, #00E5FF, #1A1A28, #3A3A48, #8A8A9A, #C0C0C8, #F0F0F2, #161620, #5A5A68 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.7; background: #0A0A0F; color: #E0E0E0; overflow-x: hidden; }
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: radial-gradient(ellipse at center, #1A1A28 0%, #0A0A0F 70%); }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2.5rem, 8vw, 5rem); color: #F5A623; opacity: 0; animation: fadeIn 1.5s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.hero-sub { font-size: 16px; color: #8A8A9A; margin-top: 16px; opacity: 0; animation: fadeIn 1s 0.8s ease forwards; }
.section { padding: 100px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; background: #0A0A0F; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); color: #E0E0E0; margin-bottom: 20px; }
.section-text { font-weight: 300; font-size: 17px; color: #8A8A9A; max-width: 600px; margin-bottom: 40px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 700px; width: 100%; }
.info-card { border: 1px solid #2A2A38; padding: 24px; text-align: left; transition: border-color 0.3s ease; }
.info-card:hover { border-color: #00E5FF; }
.info-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; color: #F5A623; margin-bottom: 8px; }
.info-card p { font-size: 14px; color: #8A8A9A; }
.site-footer { text-align: center; padding: 40px; background: #0A0A0F; color: #2A2A38; font-family: 'IBM Plex Mono', monospace; font-size: 12px; }
@media (max-width: 768px) { .section { padding: 60px 24px; } .info-grid { grid-template-columns: 1fr; } }
