Changes to tradesim.scroll.pub

root
root
4 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://tradesim.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Trade Simulator - Risk Management Strategy Tester
+ header
+ class hero
+ nav
+ div TradeSim
+ class logo
+ div
+ class nav-links
+ a Simulator
+ href #simulator
+ a Strategies
+ href #strategies
+ a Stats
+ href #stats
+ main
+ section
+ id simulator
+ class simulator-container
+ h2 Trade Simulator
+ div
+ class sim-controls
+ div
+ class input-group
+ label Initial Balance:
+ input
+ type number
+ id initialBalance
+ value 10000
+ div
+ class input-group
+ label Risk Per Trade (%):
+ input
+ type number
+ id riskPerTrade
+ value 1
+ div
+ class strategy-select
+ label Strategy:
+ select
+ id strategySelect
+ option Martingale
+ value martingale
+ option Anti-Martingale
+ value antimartingale
+ option D'Alembert
+ value dalembert
+ option Fibonacci
+ value fibonacci
+ button Start Simulation
+ id startSim
+ class primary-button
+ div
+ class sim-results
+ div
+ class balance-display
+ h3 Current Balance:
+ span $10,000
+ id currentBalance
+ div
+ class trade-history
+ h3 Trade History
+ table
+ id tradeTable
+ thead
+ tr
+ th Trade #
+ th Amount
+ th Outcome
+ th Balance
+ tbody
+ section
+ id strategies
+ class strategies-info
+ h2 Trading Strategies
+ div
+ class strategy-grid
+ div
+ class strategy-card
+ h3 Martingale
+ p Double bet after each loss, reset after win
+ div
+ class strategy-card
+ h3 Anti-Martingale
+ p Double bet after each win, reset after loss
+ div
+ class strategy-card
+ h3 D'Alembert
+ p Increase bet by one unit after loss, decrease after win
+ div
+ class strategy-card
+ h3 Fibonacci
+ p Follow Fibonacci sequence for bet sizing
+ section
+ id stats
+ class statistics
+ h2 Performance Statistics
+ div
+ class stats-grid
+ div
+ class stat-card
+ h3 Win Rate
+ span 0%
+ id winRate
+ div
+ class stat-card
+ h3 Profit/Loss
+ span $0
+ id profitLoss
+ div
+ class stat-card
+ h3 Max Drawdown
+ span $0
+ id maxDrawdown
+ div
+ class stat-card
+ h3 Sharpe Ratio
+ span 0
+ id sharpeRatio
+ footer
+ div
+ class footer-content
+ p Trading simulator for educational purposes only. Past performance does not guarantee future results.
prompt.json
Changed around line 1
+ {
+ "id": "msg_019mu8LifZ6KRVZxSacUkkFv",
+ "type": "message",
+ "role": "assistant",
+ "model": "claude-3-5-sonnet-20241022",
+ "content": [
+ {
+ "type": "text",
+ "text": "I'll help create a trade simulator website. For the domain, I suggest:\n\n---domain---\ntradesim.scroll.pub\n\n---index.scroll---\nbuildHtml\nbaseUrl https://tradesim.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Trade Simulator - Risk Management Strategy Tester\nheader\n class hero\n nav\n div TradeSim\n class logo\n div\n class nav-links\n a Simulator\n href #simulator\n a Strategies\n href #strategies\n a Stats\n href #stats\nmain\n section\n id simulator\n class simulator-container\n h2 Trade Simulator\n div\n class sim-controls\n div\n class input-group\n label Initial Balance:\n input\n type number\n id initialBalance\n value 10000\n div\n class input-group\n label Risk Per Trade (%):\n input\n type number\n id riskPerTrade\n value 1\n div\n class strategy-select\n label Strategy:\n select\n id strategySelect\n option Martingale\n value martingale\n option Anti-Martingale\n value antimartingale\n option D'Alembert\n value dalembert\n option Fibonacci\n value fibonacci\n button Start Simulation\n id startSim\n class primary-button\n div\n class sim-results\n div\n class balance-display\n h3 Current Balance:\n span $10,000\n id currentBalance\n div\n class trade-history\n h3 Trade History\n table\n id tradeTable\n thead\n tr\n th Trade #\n th Amount\n th Outcome\n th Balance\n tbody\n section\n id strategies\n class strategies-info\n h2 Trading Strategies\n div\n class strategy-grid\n div\n class strategy-card\n h3 Martingale\n p Double bet after each loss, reset after win\n div\n class strategy-card\n h3 Anti-Martingale\n p Double bet after each win, reset after loss\n div\n class strategy-card\n h3 D'Alembert\n p Increase bet by one unit after loss, decrease after win\n div\n class strategy-card\n h3 Fibonacci\n p Follow Fibonacci sequence for bet sizing\n section\n id stats\n class statistics\n h2 Performance Statistics\n div\n class stats-grid\n div\n class stat-card\n h3 Win Rate\n span 0%\n id winRate\n div\n class stat-card\n h3 Profit/Loss\n span $0\n id profitLoss\n div\n class stat-card\n h3 Max Drawdown\n span $0\n id maxDrawdown\n div\n class stat-card\n h3 Sharpe Ratio\n span 0\n id sharpeRatio\nfooter\n div\n class footer-content\n p Trading simulator for educational purposes only. Past performance does not guarantee future results.\n\n---style.css---\n:root {\n --primary-color: #2a6ef5;\n --secondary-color: #1f2937;\n --accent-color: #4ade80;\n --background-color: #f8fafc;\n --text-color: #1f2937;\n --card-background: #ffffff;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\n.hero {\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n color: white;\n padding: 2rem;\n box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.logo {\n font-size: 1.5rem;\n font-weight: bold;\n background: linear-gradient(90deg, #fff, var(--accent-color));\n -webkit-background-clip: text;\n -webkit-text-fill-color: transparent;\n}\n\n.nav-links {\n display: flex;\n gap: 2rem;\n}\n\n.nav-links a {\n color: white;\n text-decoration: none;\n transition: color 0.3s ease;\n}\n\n.nav-links a:hover {\n color: var(--accent-color);\n}\n\n.simulator-container {\n max-width: 1200px;\n margin: 2rem auto;\n padding: 2rem;\n background: var(--card-background);\n border-radius: 1rem;\n box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);\n}\n\n.sim-controls {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 1rem;\n margin-bottom: 2rem;\n}\n\n.input-group {\n display: flex;\n flex-direction: column;\n gap: 0.5rem;\n}\n\ninput, select {\n padding: 0.5rem;\n border: 1px solid #e5e7eb;\n border-radius: 0.5rem;\n font-size: 1rem;\n}\n\n.primary-button {\n background-color: var(--primary-color);\n color: white;\n padding: 0.75rem 1.5rem;\n border: none;\n border-radius: 0.5rem;\n cursor: pointer;\n transition: background-color 0.3s ease;\n}\n\n.primary-button:hover {\n background-color: var(--secondary-color);\n}\n\n.trade-history {\n margin-top: 2rem;\n overflow-x: auto;\n}\n\ntable {\n width: 100%;\n border-collapse: collapse;\n}\n\nth, td {\n padding: 0.75rem;\n text-align: left;\n border-bottom: 1px solid #e5e7eb;\n}\n\n.strategy-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n margin: 2rem auto;\n max-width: 1200px;\n padding: 0 2rem;\n}\n\n.strategy-card {\n background: var(--card-background);\n padding: 1.5rem;\n border-radius: 1rem;\n box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);\n transition: transform 0.3s ease;\n}\n\n.strategy-card:hover {\n transform: translateY(-5px);\n}\n\n.stats-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 2rem;\n margin: 2rem auto;\n max-width: 1200px;\n padding: 0 2rem;\n}\n\n.stat-card {\n background: var(--card-background);\n padding: 1.5rem;\n border-radius: 1rem;\n text-align: center;\n box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);\n}\n\n@media (max-width: 768px) {\n .nav-links {\n display: none;\n }\n \n .sim-controls {\n grid-template-columns: 1fr;\n }\n}\n\n---script.js---\nclass TradeSimulator {\n constructor() {\n this.initialBalance = 10000;\n this.currentBalance = this.initialBalance;\n this.trades = [];\n this.strategy = 'martingale';\n this.currentBet = 100;\n this.baseRisk = 0.01;\n }\n\n setStrategy(strategy) {\n this.strategy = strategy;\n this.resetBet();\n }\n\n resetBet() {\n this.currentBet = this.currentBalance * this.baseRisk;\n }\n\n calculateNextBet(lastOutcome) {\n switch(this.strategy) {\n case 'martingale':\n return lastOutcome ? this.baseRisk : this.currentBet * 2;\n case 'antimartingale':\n return lastOutcome ? this.currentBet * 2 : this.baseRisk;\n case 'dalembert':\n return lastOutcome ? Math.max(this.currentBet - this.baseRisk, this.baseRisk) : this.currentBet + this.baseRisk;\n case 'fibonacci':\n return this.calculateFibonacciBet(lastOutcome);\n default:\n return this.baseRisk;\n }\n }\n\n calculateFibonacciBet(lastOutcome) {\n const fibSequence = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55];\n let currentIndex = this.trades.length % fibSequence.length;\n return this.baseRisk * fibSequence[currentIndex];\n }\n\n executeTrade() {\n const outcome = Math.random() >= 0.5;\n const profit = outcome ? this.currentBet : -this.currentBet;\n this.currentBalance += profit;\n \n this.trades.push({\n tradeNumber: this.trades.length + 1,\n amount: this.currentBet,\n outcome: outcome,\n balance: this.currentBalance\n });\n\n this.currentBet = this.calculateNextBet(outcome);\n this.updateUI();\n }\n\n updateUI() {\n document.getElementById('currentBalance').textContent = \n new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' })\n .format(this.currentBalance);\n\n const tradeTable = document.getElementById('tradeTable').getElementsByTagName('tbody')[0];\n const lastTrade = this.trades[this.trades.length - 1];\n \n const row = tradeTable.insertRow();\n row.innerHTML = `\n ${lastTrade.tradeNumber}\n ${new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(lastTrade.amount)}\n ${lastTrade.outcome ? 'Win' : 'Loss'}\n ${new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(lastTrade.balance)}\n `;\n\n this.updateStats();\n }\n\n updateStats() {\n const wins = this.trades.filter(trade => trade.outcome).length;\n const winRate = (wins / this.trades.length) * 100;\n const profitLoss = this.currentBalance - this.initialBalance;\n \n document.getElementById('winRate').textContent = `${winRate.toFixed(1)}%`;\n document.getElementById('profitLoss').textContent = \n new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' })\n .format(profitLoss);\n }\n}\n\ndocument.addEventListener('DOMContentLoaded', () => {\n const simulator = new TradeSimulator();\n\n document.getElementById('strategySelect').addEventListener('change', (e) => {\n simulator.setStrategy(e.target.value);\n });\n\n document.getElementById('startSim').addEventListener('click', () => {\n simulator.executeTrade();\n });\n\n document.getElementById('initialBalance').addEventListener('change', (e) => {\n simulator.initialBalance = parseFloat(e.target.value);\n simulator.currentBalance = simulator.initialBalance;\n simulator.resetBet();\n });\n\n document.getElementById('riskPerTrade').addEventListener('change', (e) => {\n simulator.baseRisk = parseFloat(e.target.value) / 100;\n simulator.resetBet();\n });\n});\n\n---end---"
+ }
+ ],
+ "stop_reason": "end_turn",
+ "stop_sequence": null,
+ "usage": {
+ "input_tokens": 876,
+ "cache_creation_input_tokens": 0,
+ "cache_read_input_tokens": 0,
+ "output_tokens": 3180
+ }
+ }
readme.scroll
Changed around line 1
+ # tradesim.scroll.pub
+
+ Prompt: website
+ Agent: claude
+ Model: claude-3-5-sonnet-20241022
+
+ ## User prompt
+ create a trade simulator with random outcomes R:R 1 to 1 , add by options different money management strategies ( bet progressios etc,) use this ling to see some examples of betting systems https://www.casinoencyclopedia.com/betting-systems/
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "create a trade simulator with random outcomes R:R 1 to 1 , add by options different money management strategies ( bet progressios etc,) use this ling to see some examples of betting systems https://www.casinoencyclopedia.com/betting-systems/"
+
+ 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 scroll.pub that represents this website. Then provide the website files. Use this exact format:
+
+ ---domain---
+ (domainscroll.pub here)
+ ---index.scroll---
+ buildHtml
+ baseUrl https://(domainscroll.pub 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
+ class TradeSimulator {
+ constructor() {
+ this.initialBalance = 10000;
+ this.currentBalance = this.initialBalance;
+ this.trades = [];
+ this.strategy = 'martingale';
+ this.currentBet = 100;
+ this.baseRisk = 0.01;
+ }
+
+ setStrategy(strategy) {
+ this.strategy = strategy;
+ this.resetBet();
+ }
+
+ resetBet() {
+ this.currentBet = this.currentBalance * this.baseRisk;
+ }
+
+ calculateNextBet(lastOutcome) {
+ switch(this.strategy) {
+ case 'martingale':
+ return lastOutcome ? this.baseRisk : this.currentBet * 2;
+ case 'antimartingale':
+ return lastOutcome ? this.currentBet * 2 : this.baseRisk;
+ case 'dalembert':
+ return lastOutcome ? Math.max(this.currentBet - this.baseRisk, this.baseRisk) : this.currentBet + this.baseRisk;
+ case 'fibonacci':
+ return this.calculateFibonacciBet(lastOutcome);
+ default:
+ return this.baseRisk;
+ }
+ }
+
+ calculateFibonacciBet(lastOutcome) {
+ const fibSequence = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55];
+ let currentIndex = this.trades.length % fibSequence.length;
+ return this.baseRisk * fibSequence[currentIndex];
+ }
+
+ executeTrade() {
+ const outcome = Math.random() >= 0.5;
+ const profit = outcome ? this.currentBet : -this.currentBet;
+ this.currentBalance += profit;
+
+ this.trades.push({
+ tradeNumber: this.trades.length + 1,
+ amount: this.currentBet,
+ outcome: outcome,
+ balance: this.currentBalance
+ });
+
+ this.currentBet = this.calculateNextBet(outcome);
+ this.updateUI();
+ }
+
+ updateUI() {
+ document.getElementById('currentBalance').textContent =
+ new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' })
+ .format(this.currentBalance);
+
+ const tradeTable = document.getElementById('tradeTable').getElementsByTagName('tbody')[0];
+ const lastTrade = this.trades[this.trades.length - 1];
+
+ const row = tradeTable.insertRow();
+ row.innerHTML = `
+ ${lastTrade.tradeNumber}
+ ${new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(lastTrade.amount)}
+ ${lastTrade.outcome ? 'Win' : 'Loss'}
+ ${new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(lastTrade.balance)}
+ `;
+
+ this.updateStats();
+ }
+
+ updateStats() {
+ const wins = this.trades.filter(trade => trade.outcome).length;
+ const winRate = (wins / this.trades.length) * 100;
+ const profitLoss = this.currentBalance - this.initialBalance;
+
+ document.getElementById('winRate').textContent = `${winRate.toFixed(1)}%`;
+ document.getElementById('profitLoss').textContent =
+ new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' })
+ .format(profitLoss);
+ }
+ }
+
+ document.addEventListener('DOMContentLoaded', () => {
+ const simulator = new TradeSimulator();
+
+ document.getElementById('strategySelect').addEventListener('change', (e) => {
+ simulator.setStrategy(e.target.value);
+ });
+
+ document.getElementById('startSim').addEventListener('click', () => {
+ simulator.executeTrade();
+ });
+
+ document.getElementById('initialBalance').addEventListener('change', (e) => {
+ simulator.initialBalance = parseFloat(e.target.value);
+ simulator.currentBalance = simulator.initialBalance;
+ simulator.resetBet();
+ });
+
+ document.getElementById('riskPerTrade').addEventListener('change', (e) => {
+ simulator.baseRisk = parseFloat(e.target.value) / 100;
+ simulator.resetBet();
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary-color: #2a6ef5;
+ --secondary-color: #1f2937;
+ --accent-color: #4ade80;
+ --background-color: #f8fafc;
+ --text-color: #1f2937;
+ --card-background: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(90deg, #fff, var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .simulator-container {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: var(--card-background);
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ .sim-controls {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ margin-bottom: 2rem;
+ }
+
+ .input-group {
+ display: flex;
+ flex-direction: column;
+ gap: 0.5rem;
+ }
+
+ input, select {
+ padding: 0.5rem;
+ border: 1px solid #e5e7eb;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ .primary-button {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ .primary-button:hover {
+ background-color: var(--secondary-color);
+ }
+
+ .trade-history {
+ margin-top: 2rem;
+ overflow-x: auto;
+ }
+
+ table {
+ width: 100%;
+ border-collapse: collapse;
+ }
+
+ th, td {
+ padding: 0.75rem;
+ text-align: left;
+ border-bottom: 1px solid #e5e7eb;
+ }
+
+ .strategy-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin: 2rem auto;
+ max-width: 1200px;
+ padding: 0 2rem;
+ }
+
+ .strategy-card {
+ background: var(--card-background);
+ padding: 1.5rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .strategy-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin: 2rem auto;
+ max-width: 1200px;
+ padding: 0 2rem;
+ }
+
+ .stat-card {
+ background: var(--card-background);
+ padding: 1.5rem;
+ border-radius: 1rem;
+ text-align: center;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .sim-controls {
+ grid-template-columns: 1fr;
+ }
+ }