/* gamelicensor.com */
/* Colors: #8B7355, #4A3F35, #5C5A3E, #2C2416, #F2E8D5, #3A3228, #A08860, #D4C8A8, #E8DCC0, #1A1610 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Space Grotesk', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.7; background: #F2E8D5; color: #2C2416; }
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: #E8DCC0; }
.hero-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.5rem, 8vw, 5rem); color: #2C2416; opacity: 0; animation: fadeIn 1.5s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.hero-sub { font-size: 16px; color: #8B7355; 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: #F2E8D5; }
.section-alt { background: #E8DCC0; }
.section-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); color: #2C2416; margin-bottom: 20px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 700px; width: 100%; }
.svc { border: 1px solid #D4C8A8; padding: 24px; text-align: left; transition: border-color 0.3s ease; }
.svc:hover { border-color: #5C5A3E; }
.svc h3 { font-size: 18px; color: #4A3F35; margin-bottom: 8px; }
.svc p { font-size: 14px; color: #8B7355; }
.steps { display: flex; flex-direction: column; gap: 16px; max-width: 500px; width: 100%; }
.step { display: flex; align-items: center; gap: 16px; text-align: left; padding: 12px 0; border-bottom: 1px solid #D4C8A8; }
.step span { font-family: 'IBM Plex Mono', monospace; font-size: 24px; color: #5C5A3E; flex-shrink: 0; }
.step p { font-size: 15px; color: #4A3F35; }
.site-footer { text-align: center; padding: 40px; background: #2C2416; color: #4A3F35; font-size: 12px; }
@media (max-width: 768px) { .section { padding: 60px 24px; } .service-grid { grid-template-columns: 1fr; } }
