-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (97 loc) · 4.76 KB
/
Copy pathindex.html
File metadata and controls
103 lines (97 loc) · 4.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Novafall — Support</title>
<meta name="description" content="Support and contact for Novafall, the idle space empire game for iOS.">
<style>
:root { color-scheme: dark; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #060B14; color: #C9D6E5;
font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.65; min-height: 100vh;
}
main { max-width: 640px; margin: 0 auto; padding: 56px 24px 80px; }
.logo { font-size: 56px; }
h1 {
color: #E8F0FA; font-size: 34px; letter-spacing: 2px; margin: 12px 0 4px;
font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
.tagline { color: #54779C; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
p { margin: 14px 0; }
.card {
background: #0A1428; border: 1px solid #1C2C44; border-radius: 14px;
padding: 22px 24px; margin-top: 28px;
}
.card h2 { color: #E8F0FA; font-size: 16px; margin-bottom: 8px;
font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; letter-spacing: 1px; }
a { color: #4DA3FF; text-decoration: none; }
a:hover { text-decoration: underline; }
.email {
display: inline-block; margin-top: 6px; padding: 10px 18px; border-radius: 10px;
background: #12305A; border: 1px solid #2A4A7A; color: #9CC4F0; font-weight: 600;
}
.play {
display: block; margin-top: 26px; padding: 20px 24px; border-radius: 14px;
background: linear-gradient(135deg, #0B2E4A, #10203C);
border: 1px solid #00C8FF; color: #E8F0FA; text-align: center;
}
.play:hover { text-decoration: none; border-color: #66DFFF; }
.play strong { display: block; font-size: 19px; letter-spacing: 1px; color: #00C8FF;
font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
.play span { display: block; margin-top: 6px; font-size: 13px; color: #A9C3DE; }
.stores { margin-top: 14px; font-size: 13px; }
footer { margin-top: 48px; color: #54779C; font-size: 12px; }
ul { margin: 10px 0 0 20px; }
li { margin: 6px 0; }
</style>
</head>
<body>
<main>
<div class="logo">🌌</div>
<h1>NOVAFALL</h1>
<div class="tagline">Idle Space Empire Builder</div>
<p style="margin-top:22px">
Build a fleet, colonize the galaxy, and ascend — your empire grows even
while you're away. Rival empires besiege your borders, alien species offer
alliances, and every collapsed galaxy makes the next one stronger.
</p>
<a class="play" href="play/">
<strong>▶ PLAY FREE IN YOUR BROWSER</strong>
<span>The full game. No account, no install, no ads. Your progress saves to this browser.</span>
</a>
<p class="stores">
Prefer it on your phone? <a href="https://apps.apple.com/app/id6789433150">Get Novafall on the App Store</a>
— adds offline progress while the app is closed, iCloud save backup, and notifications.
</p>
<div class="card">
<h2>📮 SUPPORT</h2>
<p>
Found a bug, lost progress, or have a question about a purchase?
Email us and include your device model and iOS version — we read everything.
</p>
<a class="email" href="mailto:rvg2151@gmail.com">rvg2151@gmail.com</a>
</div>
<div class="card">
<h2>❓ COMMON QUESTIONS</h2>
<ul>
<li><strong>Is my save backed up?</strong> In the iOS app, yes — to your own iCloud, automatically. Check Settings → Save Data in-game for sync status. iCloud Drive must be enabled on your device. The browser version saves to that browser only, and clearing your site data erases it.</li>
<li><strong>I reinstalled and my empire is gone.</strong> Give it a minute on the title screen — iCloud can take a moment to download after a fresh install. Purchases can always be recovered via Shop → Restore Purchases.</li>
<li><strong>Do I have to watch ads or pay?</strong> No. There are no forced ads, and everything in the game can be earned by playing. The browser version has no ads at all.</li>
<li><strong>Why can't I buy anything in the browser?</strong> In-app purchases are iOS-only. Nothing is locked away from web players — everything the shop sells can also be earned.</li>
</ul>
<p style="margin-top:14px">More answers — and a full how-to-play tutorial — in the
<a href="guide.html">Commander's Guide & FAQ</a>.</p>
</div>
<div class="card">
<h2>🔒 PRIVACY</h2>
<p>No accounts. No data selling. Your save is yours. Full details:
<a href="privacy.html">Privacy Policy</a></p>
</div>
<footer>© 2026 Robert Gonzales · <a href="guide.html">Guide & FAQ</a> · <a href="privacy.html">Privacy Policy</a></footer>
</main>
</body>
</html>