Changes to spellit.app1.TLD

root
root
2 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://spellit.app
+ metaTags
+ editButton /edit.html
+ title Spell-It: Master Your Spelling Skills
+ style.css
+
+ header
+ class hero
+ nav
+ div Spell-It
+ class logo
+ div
+ class nav-links
+ a How It Works
+ href #how-it-works
+ a Practice
+ href #practice
+ a Stats
+ href #stats
+ div
+ class hero-content
+ h1 Master Your Spelling Skills
+ p Practice spelling with audio cues and real-time feedback. Perfect for learners of all ages!
+ a Start Practicing
+ class primary-button
+ href #practice
+ main
+ section
+ id how-it-works
+ class features
+ h2 How It Works
+ div
+ class feature-grid
+ div
+ class feature-card
+ div 🔊
+ class feature-icon
+ h3 Listen & Spell
+ p Hear the word and type it out using your keyboard.
+ div
+ class feature-card
+ div ✅
+ class feature-icon
+ h3 Instant Feedback
+ p Get immediate confirmation or correction for your spelling.
+ div
+ class feature-card
+ class feature-card
+ div 📊
+ class feature-icon
+ h3 Track Progress
+ p See your spelling accuracy and improvement over time.
+ section
+ id practice
+ class practice-section
+ h2 Practice Spelling
+ div
+ class practice-container
+ div
+ class word-display
+ span
+ id word-to-spell
+ button
+ id play-button
+ class play-button
+ ▶️
+ div
+ class input-container
+ input
+ type text
+ id word-input
+ placeholder Type the word here
+ button
+ id enter-button
+ class enter-button
+ Enter
+ button
+ id hint-button
+ class hint-button
+ Hint
+ div
+ class feedback-message
+ span
+ id feedback-text
+ div
+ class stats-container
+ div
+ class stat
+ span
+ id correct-count
+ 0
+ p Correct
+ div
+ class stat
+ span
+ id total-count
+ 0
+ p Attempted
+ div
+ class stat
+ span
+ id accuracy-percent
+ 0%
+ p Accuracy
+ section
+ id stats
+ class stats-section
+ h2 Your Progress
+ div
+ class progress-chart
+ canvas
+ id progress-chart
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a About
+ href #about
+ a Contact
+ href #contact
+ a Privacy
+ href #privacy
+ p Spell-It: Helping you spell better, one word at a time.
prompt.json
Changed around line 1
+ {
+ "id": "7f29a321-3813-46f0-b6bd-41354a1c553c",
+ "object": "chat.completion",
+ "created": 1737991794,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nspellit.app\n---index.scroll---\nbuildHtml\nbaseUrl https://spellit.app\nmetaTags\neditButton /edit.html\ntitle Spell-It: Master Your Spelling Skills\nstyle.css\n\nheader\n class hero\n nav\n div Spell-It\n class logo\n div\n class nav-links\n a How It Works\n href #how-it-works\n a Practice\n href #practice\n a Stats\n href #stats\n div\n class hero-content\n h1 Master Your Spelling Skills\n p Practice spelling with audio cues and real-time feedback. Perfect for learners of all ages!\n a Start Practicing\n class primary-button\n href #practice\nmain\n section\n id how-it-works\n class features\n h2 How It Works\n div\n class feature-grid\n div\n class feature-card\n div 🔊\n class feature-icon\n h3 Listen & Spell\n p Hear the word and type it out using your keyboard.\n div\n class feature-card\n div ✅\n class feature-icon\n h3 Instant Feedback\n p Get immediate confirmation or correction for your spelling.\n div\n class feature-card\n class feature-card\n div 📊\n class feature-icon\n h3 Track Progress\n p See your spelling accuracy and improvement over time.\n section\n id practice\n class practice-section\n h2 Practice Spelling\n div\n class practice-container\n div\n class word-display\n span\n id word-to-spell\n button\n id play-button\n class play-button\n ▶️\n div\n class input-container\n input\n type text\n id word-input\n placeholder Type the word here\n button\n id enter-button\n class enter-button\n Enter\n button\n id hint-button\n class hint-button\n Hint\n div\n class feedback-message\n span\n id feedback-text\n div\n class stats-container\n div\n class stat\n span\n id correct-count\n 0\n p Correct\n div\n class stat\n span\n id total-count\n 0\n p Attempted\n div\n class stat\n span\n id accuracy-percent\n 0%\n p Accuracy\n section\n id stats\n class stats-section\n h2 Your Progress\n div\n class progress-chart\n canvas\n id progress-chart\nfooter\n div\n class footer-content\n div\n class footer-links\n a About\n href #about\n a Contact\n href #contact\n a Privacy\n href #privacy\n p Spell-It: Helping you spell better, one word at a time.\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #f5a623;\n --background-color: #f8f9fa;\n --text-color: #333;\n --success-color: #7ed321;\n --error-color: #d0021b;\n --font-family: 'Arial', sans-serif;\n}\n\nbody {\n font-family: var(--font-family);\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n}\n\n.hero {\n background: var(--primary-color);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\n.hero-content h1 {\n font-size: 2.5rem;\n margin-bottom: 1rem;\n}\n\n.hero-content p {\n font-size: 1.2rem;\n margin-bottom: 2rem;\n}\n\n.primary-button {\n background: var(--secondary-color);\n color: white;\n padding: 0.75rem 1.5rem;\n border: none;\n border-radius: 5px;\n font-size: 1rem;\n cursor: pointer;\n text-decoration: none;\n}\n\n.features {\n padding: 2rem;\n text-align: center;\n}\n\n.feature-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 1rem;\n margin-top: 2rem;\n}\n\n.feature-card {\n background: white;\n padding: 1.5rem;\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.feature-icon {\n font-size: 2rem;\n margin-bottom: 1rem;\n}\n\n.practice-section {\n padding: 2rem;\n text-align: center;\n}\n\n.practice-container {\n max-width: 600px;\n margin: 0 auto;\n}\n\n.word-display {\n font-size: 2rem;\n margin-bottom: 1rem;\n}\n\n.play-button {\n background: var(--primary-color);\n color: white;\n border: none;\n border-radius: 50%;\n width: 50px;\n height: 50px;\n font-size: 1.5rem;\n cursor: pointer;\n}\n\n.input-container {\n display: flex;\n gap: 0.5rem;\n margin-top: 1rem;\n}\n\n#word-input {\n flex: 1;\n padding: 0.75rem;\n border: 1px solid #ccc;\n border-radius: 5px;\n font-size: 1rem;\n}\n\n.enter-button, .hint-button {\n background: var(--primary-color);\n color: white;\n border: none;\n border-radius: 5px;\n padding: 0.75rem 1.5rem;\n font-size: 1rem;\n cursor: pointer;\n}\n\n.feedback-message {\n margin-top: 1rem;\n font-size: 1.2rem;\n}\n\n.stats-container {\n display: flex;\n justify-content: space-around;\n margin-top: 2rem;\n}\n\n.stat {\n text-align: center;\n}\n\n.stat span {\n font-size: 2rem;\n font-weight: bold;\n}\n\n.stat p {\n margin-top: 0.5rem;\n font-size: 1rem;\n}\n\n.stats-section {\n padding: 2rem;\n text-align: center;\n}\n\n.progress-chart {\n max-width: 600px;\n margin: 0 auto;\n}\n\nfooter {\n background: var(--primary-color);\n color: white;\n padding: 1rem;\n text-align: center;\n}\n\n.footer-links {\n display: flex;\n justify-content: center;\n gap: 1rem;\n margin-bottom: 1rem;\n}\n\n.footer-links a {\n color: white;\n text-decoration: none;\n}\n\n@media (max-width: 768px) {\n .hero-content h1 {\n font-size: 2rem;\n }\n\n .hero-content p {\n font-size: 1rem;\n }\n\n .feature-grid {\n grid-template-columns: 1fr;\n }\n\n .input-container {\n flex-direction: column;\n }\n\n .enter-button, .hint-button {\n width: 100%;\n margin-top: 0.5rem;\n }\n}\n---script.js---\nconst wordListUrl = 'https://www.mit.edu/~ecprice/wordlist.10000';\nlet words = [];\nlet currentWord = '';\nlet correctCount = 0;\nlet totalCount = 0;\n\nconst wordToSpell = document.getElementById('word-to-spell');\nconst playButton = document.getElementById('play-button');\nconst wordInput = document.getElementById('word-input');\nconst enterButton = document.getElementById('enter-button');\nconst hintButton = document.getElementById('hint-button');\nconst feedbackText = document.getElementById('feedback-text');\nconst correctCountDisplay = document.getElementById('correct-count');\nconst totalCountDisplay = document.getElementById('total-count');\nconst accuracyPercentDisplay = document.getElementById('accuracy-percent');\n\nasync function fetchWords() {\n const response = await fetch(wordListUrl);\n const text = await response.text();\n words = text.split('\\n').filter(word => word.length > 3);\n getNewWord();\n}\n\nfunction getNewWord() {\n currentWord = words[Math.floor(Math.random() * words.length)];\n wordToSpell.textContent = currentWord;\n wordInput.value = '';\n feedbackText.textContent = '';\n}\n\nfunction playWord() {\n const utterance = new SpeechSynthesisUtterance(currentWord);\n speechSynthesis.speak(utterance);\n}\n\nfunction checkSpelling() {\n const userInput = wordInput.value.trim().toLowerCase();\n totalCount++;\n totalCountDisplay.textContent = totalCount;\n\n if (userInput === currentWord.toLowerCase()) {\n correctCount++;\n correctCountDisplay.textContent = correctCount;\n feedbackText.textContent = 'Correct!';\n feedbackText.style.color = 'var(--success-color)';\n playSuccessSound();\n } else {\n feedbackText.textContent = 'Incorrect. Try again!';\n feedbackText.style.color = 'var(--error-color)';\n playErrorSound();\n }\n\n updateAccuracy();\n getNewWord();\n}\n\nfunction updateAccuracy() {\n const accuracy = (correctCount / totalCount) * 100;\n accuracyPercentDisplay.textContent = `${accuracy.toFixed(1)}%`;\n}\n\nfunction playSuccessSound() {\n const audio = new Audio('success.mp3');\n audio.play();\n}\n\nfunction playErrorSound() {\n const audio = new Audio('error.mp3');\n audio.play();\n}\n\nfunction highlightIncorrectLetters() {\n const userInput = wordInput.value.trim().toLowerCase();\n const correctWord = currentWord.toLowerCase();\n let highlightedWord = '';\n\n for (let i = 0; i < correctWord.length; i++) {\n if (userInput[i] === correctWord[i]) {\n highlightedWord += `${correctWord[i]}`;\n } else {\n highlightedWord += `${correctWord[i]}`;\n }\n }\n\n wordToSpell.innerHTML = highlightedWord;\n}\n\nplayButton.addEventListener('click', playWord);\nenterButton.addEventListener('click', checkSpelling);\nhintButton.addEventListener('click', highlightIncorrectLetters);\nwordInput.addEventListener('keypress', (e) => {\n if (e.key === 'Enter') {\n checkSpelling();\n }\n});\n\nfetchWords();\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 1133,
+ "completion_tokens": 2271,
+ "total_tokens": 3404,
+ "prompt_tokens_details": {
+ "cached_tokens": 0
+ },
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 1133
+ },
+ "system_fingerprint": "fp_3a5770e1b4"
+ }
readme.scroll
Changed around line 1
+ # spellit.app1.TLD
+
+ Prompt: website
+ Agent: deepseek
+ Model: deepseek-chat
+
+ ## User prompt
+ Knowing how to spell is a fundamental part of being fluent in any language. Whether you are a youngster learning how to spell or an individual learning a new language being able to practice helps to solidify your language skills. The Spell-It app helps users practice their spelling by playing the audio recording of a word the user must then spell using the computer keyboard. User Stories * The universe of words that form the core library should be drawn from the following list: https://www.mit.edu/~ecprice/wordlist.10000 *  User can click the 'Play' button to hear the word that's to be entered *  User can see letters displayed in the word input text box as they are entered on the keyboard *  User can click the 'Enter' button to submit the word that has been typed in the word input text box *  User can see a confirmation message when the correct word is typed *  User can see a message requesting the word be typed again when it is spelled incorrectly *  User can see a tally of the number of correct spellings, total number of words attempted, and a percentage of successful entries. *  User can hear an confirmation sound when the word is correctly spelled *  User can hear a warning sound when the word is incorrectly spelled *  User can click the 'Hint' button to highlight the incorrect letters in the word input text box *  User can press the 'Enter' key on the keyboard to submit a typed word or click the 'Enter' button in the app window Here is a link to a description of the original Speak-and-spell: https://en.wikipedia.org/wiki/Speak_%26_Spell_(toy)
Please use the interface shown in the images. In case you need it, here is an example of a web audio API: https://codepen.io/2kool2/pen/RgKeyp And here is an example of click and speak: https://codepen.io/shangle/pen/Wvqqzq
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "Knowing how to spell is a fundamental part of being fluent in any language. Whether you are a youngster learning how to spell or an individual learning a new language being able to practice helps to solidify your language skills. The Spell-It app helps users practice their spelling by playing the audio recording of a word the user must then spell using the computer keyboard. User Stories * The universe of words that form the core library should be drawn from the following list: https://www.mit.edu/~ecprice/wordlist.10000 *  User can click the 'Play' button to hear the word that's to be entered *  User can see letters displayed in the word input text box as they are entered on the keyboard *  User can click the 'Enter' button to submit the word that has been typed in the word input text box *  User can see a confirmation message when the correct word is typed *  User can see a message requesting the word be typed again when it is spelled incorrectly *  User can see a tally of the number of correct spellings, total number of words attempted, and a percentage of successful entries. *  User can hear an confirmation sound when the word is correctly spelled *  User can hear a warning sound when the word is incorrectly spelled *  User can click the 'Hint' button to highlight the incorrect letters in the word input text box *  User can press the 'Enter' key on the keyboard to submit a typed word or click the 'Enter' button in the app window Here is a link to a description of the original Speak-and-spell: https://en.wikipedia.org/wiki/Speak_%26_Spell_(toy)
Please use the interface shown in the images. In case you need it, here is an example of a web audio API: https://codepen.io/2kool2/pen/RgKeyp And here is an example of click and speak: https://codepen.io/shangle/pen/Wvqqzq"
+
+ Requirements:
+ - Use only Scroll, CSS, and JavaScript (NO frameworks, NO external dependencies)
+ - Create clean, semantic HTML5
+ - Make it mobile-responsive
+ - Follow modern best practices and accessibility guidelines
+ - Keep it simple but professional
+ - Use only relative links and no external resources
+ - Do not put a copyright symbol or all rights reserved in the footer.
+ - Make it beautiful. Dazzling. Advanced used of CSS.
+
+ As a refresher, for doing the html body, Scroll is a whitespace based language that uses a single indented space to mark a line (aka particle) as a subparticle of a parent line.
+
+ For example:
+
+ header
+ class hero
+ nav
+ div Scroll
+ class logo
+ div
+ class nav-links
+ a Features
+ href #features
+ a Examples
+ href #examples
+ a Edit
+ href edit.html
+ a GitHub
+ class cta-button
+ href https://github.com/breck7/scroll
+ div
+ class hero-content
+ h1 Write Better with Scroll
+ p The extendible markup language that makes source beautiful and compiles to anything
+ a Get Started
+ class primary-button
+ href https://hub.scroll.pub/
+ main
+ section
+ id features
+ class features
+ h2 Why Scroll?
+ div
+ class feature-grid
+ div
+ class feature-card
+ div ⚡
+ class feature-icon
+ h3 Simple Syntax
+ p Like Markdown, but more powerful. No parentheses needed.
+ div
+ class feature-card
+ div 🧩
+ class feature-icon
+ h3 Extendible
+ p Build your own custom parsers.
+ div
+ class feature-card
+ div 🎨
+ class feature-icon
+ h3 Beautiful Output
+ p Create stunning documents with minimal effort.
+ div
+ class feature-card
+ div 🚀
+ class feature-icon
+ h3 Fast & Light
+ p Built on the efficient PPS Stack.
+ section
+ id examples
+ class code-demo
+ h2 See It In Action
+ div
+ class code-container
+ pre
+ class code-example
+ div
+ class code-output
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a Documentation
+ href https://scroll.pub/tutorial.html
+ a Community
+ href https://www.reddit.com/r/WorldWideScroll/
+ a Blog
+ href https://scroll.pub/blog
+ p Started by Breck Yunits. Evolved by a community.
+ https://twitter.com/breckyunits Breck Yunits
+ https://github.com/breck7/scroll/graphs/contributors community
+
+
+ First suggest a short, memorable domain name ending in TLD that represents this website. Then provide the website files. Use this exact format:
+
+ ---domain---
+ (domainTLD here)
+ ---index.scroll---
+ buildHtml
+ baseUrl https://(domainTLD here)
+ metaTags
+ editButton /edit.html
+ title (Title here)
+ style.css
+
+ (body content here. no blank lines please.)
+
+ script.js
+ ---style.css---
+ (CSS content here)
+ ---script.js---
+ (JavaScript content here)
+ ---end---
script.js
Changed around line 1
+ const wordListUrl = 'https://www.mit.edu/~ecprice/wordlist.10000';
+ let words = [];
+ let currentWord = '';
+ let correctCount = 0;
+ let totalCount = 0;
+
+ const wordToSpell = document.getElementById('word-to-spell');
+ const playButton = document.getElementById('play-button');
+ const wordInput = document.getElementById('word-input');
+ const enterButton = document.getElementById('enter-button');
+ const hintButton = document.getElementById('hint-button');
+ const feedbackText = document.getElementById('feedback-text');
+ const correctCountDisplay = document.getElementById('correct-count');
+ const totalCountDisplay = document.getElementById('total-count');
+ const accuracyPercentDisplay = document.getElementById('accuracy-percent');
+
+ async function fetchWords() {
+ const response = await fetch(wordListUrl);
+ const text = await response.text();
+ words = text.split('\n').filter(word => word.length > 3);
+ getNewWord();
+ }
+
+ function getNewWord() {
+ currentWord = words[Math.floor(Math.random() * words.length)];
+ wordToSpell.textContent = currentWord;
+ wordInput.value = '';
+ feedbackText.textContent = '';
+ }
+
+ function playWord() {
+ const utterance = new SpeechSynthesisUtterance(currentWord);
+ speechSynthesis.speak(utterance);
+ }
+
+ function checkSpelling() {
+ const userInput = wordInput.value.trim().toLowerCase();
+ totalCount++;
+ totalCountDisplay.textContent = totalCount;
+
+ if (userInput === currentWord.toLowerCase()) {
+ correctCount++;
+ correctCountDisplay.textContent = correctCount;
+ feedbackText.textContent = 'Correct!';
+ feedbackText.style.color = 'var(--success-color)';
+ playSuccessSound();
+ } else {
+ feedbackText.textContent = 'Incorrect. Try again!';
+ feedbackText.style.color = 'var(--error-color)';
+ playErrorSound();
+ }
+
+ updateAccuracy();
+ getNewWord();
+ }
+
+ function updateAccuracy() {
+ const accuracy = (correctCount / totalCount) * 100;
+ accuracyPercentDisplay.textContent = `${accuracy.toFixed(1)}%`;
+ }
+
+ function playSuccessSound() {
+ const audio = new Audio('success.mp3');
+ audio.play();
+ }
+
+ function playErrorSound() {
+ const audio = new Audio('error.mp3');
+ audio.play();
+ }
+
+ function highlightIncorrectLetters() {
+ const userInput = wordInput.value.trim().toLowerCase();
+ const correctWord = currentWord.toLowerCase();
+ let highlightedWord = '';
+
+ for (let i = 0; i < correctWord.length; i++) {
+ if (userInput[i] === correctWord[i]) {
+ highlightedWord += `${correctWord[i]}`;
+ } else {
+ highlightedWord += `${correctWord[i]}`;
+ }
+ }
+
+ wordToSpell.innerHTML = highlightedWord;
+ }
+
+ playButton.addEventListener('click', playWord);
+ enterButton.addEventListener('click', checkSpelling);
+ hintButton.addEventListener('click', highlightIncorrectLetters);
+ wordInput.addEventListener('keypress', (e) => {
+ if (e.key === 'Enter') {
+ checkSpelling();
+ }
+ });
+
+ fetchWords();
style.css
Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --secondary-color: #f5a623;
+ --background-color: #f8f9fa;
+ --text-color: #333;
+ --success-color: #7ed321;
+ --error-color: #d0021b;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ .hero {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ }
+
+ .primary-button {
+ background: var(--secondary-color);
+ color: white;
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 5px;
+ font-size: 1rem;
+ cursor: pointer;
+ text-decoration: none;
+ }
+
+ .features {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ margin-top: 2rem;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .practice-section {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .practice-container {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .word-display {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .play-button {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: 50%;
+ width: 50px;
+ height: 50px;
+ font-size: 1.5rem;
+ cursor: pointer;
+ }
+
+ .input-container {
+ display: flex;
+ gap: 0.5rem;
+ margin-top: 1rem;
+ }
+
+ #word-input {
+ flex: 1;
+ padding: 0.75rem;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ font-size: 1rem;
+ }
+
+ .enter-button, .hint-button {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: 5px;
+ padding: 0.75rem 1.5rem;
+ font-size: 1rem;
+ cursor: pointer;
+ }
+
+ .feedback-message {
+ margin-top: 1rem;
+ font-size: 1.2rem;
+ }
+
+ .stats-container {
+ display: flex;
+ justify-content: space-around;
+ margin-top: 2rem;
+ }
+
+ .stat {
+ text-align: center;
+ }
+
+ .stat span {
+ font-size: 2rem;
+ font-weight: bold;
+ }
+
+ .stat p {
+ margin-top: 0.5rem;
+ font-size: 1rem;
+ }
+
+ .stats-section {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .progress-chart {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .hero-content p {
+ font-size: 1rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .input-container {
+ flex-direction: column;
+ }
+
+ .enter-button, .hint-button {
+ width: 100%;
+ margin-top: 0.5rem;
+ }
+ }