ACURAST
by velo_ninja
HTML
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Acurast S10 Mining Rechner</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
min-height: 100vh;
padding: 20px;
color: #e0e0e0;
}
.container {
max-width: 1300px;
margin: 0 auto;
}
h1 {
text-align: center;
font-size: 2.2em;
margin-bottom: 10px;
background: linear-gradient(90deg, #00d2ff, #3a7bd5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.subtitle {
text-align: center;
color: #888;
margin-bottom: 30px;
font-size: 0.95em;
}
.price-banner {
background: rgba(0, 210, 255, 0.1);
border: 1px solid rgba(0, 210, 255, 0.3);
border-radius: 12px;
padding: 15px 25px;
text-align: center;
margin-bottom: 25px;
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}
.price-banner .price {
font-size: 1.8em;
font-weight: bold;
color: #00d2ff;
}
.price-banner .refresh-btn {
background: rgba(0, 210, 255, 0.2);
border: 1px solid #00d2ff;
color: #00d2ff;
padding: 8px 16px;
border-radius: 8px;
cursor: pointer;
...