* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg-dark: #0f1419;
--bg-card: #161b22;
--bg-hover: #1f2937;
--accent: #3b82f6;
--accent-muted: #64748b;
--text-primary: #e5e7eb;
--text-secondary: #9ca3af;
--border-color: #27303f;
}
body {
background: var(--bg-dark);
color: var(--text-primary);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
gap: 20px;
flex-wrap: wrap;
}
.doc-nav {
display: flex;
gap: 12px;
flex: 1;
margin-bottom: 0;
}
.doc-nav-btn {
display: flex;
align-items: center;
gap: 10px;
padding: 14px 28px;
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 10px;
color: var(--text-secondary);
font-size: 0.95rem;
font-weight: 600;
text-decoration: none;
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.doc-nav-btn .icon {
font-size: 1.2rem;
}
.doc-nav-btn:hover {
background: var(--bg-hover);
color: var(--text-primary);
}
.doc-nav-btn.active {
background: var(--bg-hover);
border-color: var(--accent);
color: var(--text-primary);
}
.language-selector {
position: relative;
flex-shrink: 0;
}
.lang-dropdown {
padding: 10px 35px 10px 18px;
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 20px;
color: var(--text-primary);
font-family: 'Inter', sans-serif;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
appearance: none;
transition: border-color 0.2s ease;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
background-size: 12px;
}
.lang-dropdown:hover,
.lang-dropdown:focus {
border-color: var(--accent);
outline: none;
}
.lang-dropdown option {
background: var(--bg-card);
color: var(--text-primary);
}
.header {
text-align: center;
margin-bottom: 20px;
}
.game-title {
font-family: 'Fredoka One', cursive;
font-size: 3rem;
color: var(--text-primary);
margin-bottom: 10px;
}
.subtitle {
font-size: 1.3rem;
color: var(--text-secondary);
font-weight: 500;
}
.divider {
height: 1px;
background: var(--border-color);
margin-bottom: 30px;
}
.content-divider {
height: 1px;
background: var(--border-color);
margin: 20px 0;
}
.document-box {
padding: 0;
}
.top-bar {
display: flex;
justify-content: flex-start;
align-items: center;
margin-bottom: 25px;
padding-bottom: 20px;
border-bottom: 1px solid var(--border-color);
}
.last-updated {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 20px;
padding: 8px 16px;
font-size: 0.9rem;
color: var(--text-secondary);
font-weight: 500;
}
.content h2 {
font-family: 'Inter', sans-serif;
color: var(--text-primary);
font-size: 1.7rem;
margin-top: 30px;
margin-bottom: 15px;
}
.content h2:first-child {
margin-top: 0;
}
.content h3 {
font-family: 'Inter', sans-serif;
color: var(--accent-muted);
font-size: 1.25rem;
margin-top: 25px;
margin-bottom: 12px;
}
.content p {
color: var(--text-primary);
margin-bottom: 16px;
font-size: 1rem;
line-height: 1.7;
}
.content ul:not(.why-play-list) {
margin: 15px 0;
padding-left: 30px;
}
.content li {
margin-bottom: 10px;
color: var(--text-secondary);
line-height: 1.6;
}
.content strong {
color: var(--text-primary);
font-weight: 600;
}
.content a {
color: var(--accent);
text-decoration: none;
}
.content a:hover {
text-decoration: underline;
}
.homepage-content {
margin-top: 20px;
}
.hero-section {
text-align: center;
margin-bottom: 50px;
}
.hero-text {
font-size: 1.15rem;
line-height: 1.8;
color: var(--text-secondary);
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.download-section {
display: flex;
justify-content: center;
margin-top: 25px;
}
.download-btn {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 16px 32px;
background: var(--accent);
color: #ffffff;
font-size: 1.05rem;
font-weight: 600;
text-decoration: none;
border-radius: 12px;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.download-btn:hover {
background: #2563eb;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
text-decoration: none;
}
.download-btn .icon {
font-size: 1.3rem;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 30px 0;
}
.feature-card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 24px;
transition: all 0.3s ease;
}
.feature-card:hover {
background: var(--bg-hover);
border-color: var(--accent);
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}
.feature-card h3 {
font-size: 1.1rem;
color: var(--text-primary);
margin-top: 0;
margin-bottom: 10px;
}
.feature-card p {
font-size: 0.95rem;
color: var(--text-secondary);
margin-bottom: 0;
line-height: 1.6;
}
.why-play-list {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 30px 30px 30px 55px;
margin: 20px 0;
}
.why-play-list li {
font-size: 1rem;
margin-bottom: 14px;
}
.why-play-list li:last-child {
margin-bottom: 0;
}
.cta-section {
text-align: center;
margin-top: 50px;
padding: 40px 30px;
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 16px;
}
.cta-section h2 {
margin-top: 0;
margin-bottom: 15px;
}
.cta-section p {
font-size: 1.05rem;
color: var(--text-secondary);
margin-bottom: 25px;
max-width: 650px;
margin-left: auto;
margin-right: auto;
}
.google-play-badge {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.google-play-badge:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
.social-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.social-section h2 {
    margin-top: 0;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.social-btn.discord:hover {
    border-color: #5865F2;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.social-btn.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.social-btn.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-emoji {
    font-size: 1.3rem;
}
.footer {
margin-top: 60px;
padding-top: 30px;
border-top: 1px solid var(--border-color);
text-align: center;
}
.footer-links {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
margin-bottom: 15px;
flex-wrap: wrap;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.95rem;
transition: color 0.2s ease;
}
.footer-links a:hover {
color: var(--accent);
text-decoration: underline;
}
.footer-links .separator {
color: var(--border-color);
}
.footer-copyright {
font-size: 0.9rem;
color: var(--text-secondary);
margin: 0;
}
@media (max-width: 768px) {
body {
padding: 10px;
}
.container {
padding: 20px 10px;
}
.game-title {
font-size: 2rem;
}
.subtitle {
font-size: 1.1rem;
}
.hero-text {
font-size: 1rem;
}
.nav-container {
flex-direction: column;
align-items: stretch;
}
.doc-nav {
flex-direction: column;
gap: 8px;
}
.doc-nav-btn {
width: 100%;
justify-content: center;
}
.language-selector {
width: 100%;
}
.lang-dropdown {
width: 100%;
}
.top-bar {
flex-direction: column;
align-items: stretch;
}
.last-updated {
width: 100%;
justify-content: center;
}
.features-grid {
grid-template-columns: 1fr;
gap: 15px;
}
.feature-card {
padding: 20px;
}
.why-play-list {
padding: 25px 20px 25px 40px;
}
.cta-section {
padding: 30px 20px;
}
.download-btn {
width: 100%;
justify-content: center;
}
.social-links {
flex-direction: column;
align-items: stretch;
}
.social-btn {
justify-content: center;
}
.google-play-badge {
height: 50px;
}
}
