Spaces:
Running
Running
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| :root { | |
| --background: #F6F6F8; | |
| --foreground: #333333; | |
| --primary: #FF9900; | |
| --primary-hover: #FFB333; | |
| --muted: #E8E8EB; | |
| --muted-foreground: #878789; | |
| --border: #E0E0E0; | |
| --card: #FFFFFF; | |
| --radius: 0.5rem; | |
| } | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: var(--background); | |
| color: var(--foreground); | |
| line-height: 1.6; | |
| -webkit-font-smoothing: antialiased; | |
| } | |
| .container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| padding: 0 1.5rem; | |
| } | |
| /* Hero Section */ | |
| .hero { | |
| padding: 4rem 0; | |
| } | |
| .hero-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 3rem; | |
| align-items: center; | |
| } | |
| .hero-image { | |
| width: 100%; | |
| max-width: 500px; | |
| height: auto; | |
| border-radius: var(--radius); | |
| display: block; | |
| margin: 0 auto; | |
| } | |
| @media (max-width: 768px) { | |
| .hero-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| } | |
| .hero-content { | |
| text-align: left; | |
| } | |
| .hero-header { | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 1rem; | |
| margin-bottom: 1.5rem; | |
| } | |
| .hero-sticker { | |
| height: 7rem; | |
| object-fit: contain; | |
| } | |
| .hero-title { | |
| font-size: 3rem; | |
| font-weight: 700; | |
| color: var(--foreground); | |
| } | |
| .tags { | |
| display: flex; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| gap: 0.5rem; | |
| margin-bottom: 1.5rem; | |
| } | |
| .tag { | |
| display: inline-flex; | |
| align-items: center; | |
| padding: 0.25rem 0.75rem; | |
| font-size: 0.75rem; | |
| font-weight: 500; | |
| border-radius: 9999px; | |
| background-color: var(--muted); | |
| color: var(--muted-foreground); | |
| } | |
| .hero-description { | |
| font-size: 1.125rem; | |
| color: var(--muted-foreground); | |
| max-width: 600px; | |
| margin: 0 auto 2rem; | |
| } | |
| /* Technical Section */ | |
| .technical { | |
| padding: 4rem 0; | |
| background-color: var(--card); | |
| } | |
| .technical-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 4rem; | |
| align-items: start; | |
| } | |
| @media (max-width: 768px) { | |
| .technical-grid { | |
| grid-template-columns: 1fr; | |
| gap: 2rem; | |
| } | |
| } | |
| .section-title { | |
| font-size: 1.5rem; | |
| font-weight: 700; | |
| color: var(--foreground); | |
| margin-bottom: 1.5rem; | |
| } | |
| /* Controls list */ | |
| .controls-list { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 1.5rem; | |
| } | |
| .control-item { | |
| display: flex; | |
| align-items: flex-start; | |
| gap: 1rem; | |
| } | |
| .control-icon { | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| min-width: 1.25rem; | |
| height: 1.25rem; | |
| border-radius: 50%; | |
| background-color: var(--primary); | |
| margin-top: 0.4rem; | |
| } | |
| .control-item h4 { | |
| font-size: 1rem; | |
| font-weight: 600; | |
| color: var(--foreground); | |
| margin-bottom: 0.25rem; | |
| } | |
| .control-item p { | |
| font-size: 0.9rem; | |
| color: var(--muted-foreground); | |
| } | |
| /* Install steps */ | |
| .install-steps { | |
| list-style: none; | |
| counter-reset: step; | |
| } | |
| .install-steps li { | |
| counter-increment: step; | |
| display: flex; | |
| align-items: flex-start; | |
| gap: 1rem; | |
| margin-bottom: 1rem; | |
| color: var(--muted-foreground); | |
| } | |
| .install-steps li::before { | |
| content: counter(step); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| min-width: 1.75rem; | |
| height: 1.75rem; | |
| border-radius: 50%; | |
| background-color: var(--primary); | |
| color: white; | |
| font-size: 0.875rem; | |
| font-weight: 600; | |
| } | |
| .link-tertiary { | |
| color: var(--muted-foreground); | |
| text-decoration: underline; | |
| transition: color 0.2s; | |
| } | |
| .link-tertiary:hover { | |
| color: var(--primary); | |
| } | |
| .link-skin { | |
| color: var(--primary); | |
| font-weight: 700; | |
| text-decoration: underline; | |
| } | |
| .link-skin:hover { | |
| color: var(--primary-hover); | |
| text-decoration: underline; | |
| } | |
| /* How to play section */ | |
| .how-to-play { | |
| padding: 4rem 0; | |
| } | |
| /* Placeholder images */ | |
| .placeholder-image { | |
| width: 100%; | |
| height: 350px; | |
| border-radius: var(--radius); | |
| background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: rgba(255, 255, 255, 0.4); | |
| font-size: 1.2rem; | |
| font-weight: 500; | |
| } | |
| .demo-video { | |
| width: 100%; | |
| height: auto; | |
| border-radius: var(--radius); | |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); | |
| } | |
| /* Build CTA */ | |
| .build-cta { | |
| margin-top: 2rem; | |
| padding: 1.25rem; | |
| background: var(--background); | |
| border-radius: var(--radius); | |
| border: 1px solid var(--border); | |
| } | |
| .build-cta p { | |
| font-size: 0.9rem; | |
| color: var(--muted-foreground); | |
| margin-bottom: 0.5rem; | |
| } | |
| .build-link { | |
| color: var(--primary); | |
| font-weight: 600; | |
| text-decoration: none; | |
| font-size: 0.9rem; | |
| transition: color 0.2s; | |
| } | |
| .build-link:hover { | |
| color: var(--primary-hover); | |
| } | |
| /* Footer */ | |
| .footer { | |
| background-color: #F6F6F8; | |
| border-top: 1px solid var(--border); | |
| padding: 2rem 0; | |
| } | |
| .footer-content { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| gap: 1rem; | |
| text-align: center; | |
| } | |
| .footer-links { | |
| display: flex; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| gap: 1.5rem; | |
| font-size: 0.875rem; | |
| } | |
| .footer-links a { | |
| color: var(--muted-foreground); | |
| text-decoration: none; | |
| transition: color 0.2s; | |
| } | |
| .footer-links a:hover { | |
| color: var(--primary); | |
| } | |
| .footer-help { | |
| font-size: 0.875rem; | |
| color: var(--muted-foreground); | |
| } | |
| .footer-help a { | |
| color: var(--primary); | |
| text-decoration: underline; | |
| } | |
| .footer-help a:hover { | |
| color: var(--primary-hover); | |
| } | |