diff --git a/Darkmode-website/index.html b/Darkmode-website/index.html
new file mode 100644
index 0000000..97f5db6
--- /dev/null
+++ b/Darkmode-website/index.html
@@ -0,0 +1,73 @@
+
+
+
+
+
+
Revolutionary by design
+
Harness. Empower.
+ Unmatched Versatility.
+
At the core lies our revolutionary framework,
ensuring adaptability across all application architectures.
+
+
+
\ No newline at end of file
diff --git a/Darkmode-website/script.js b/Darkmode-website/script.js
new file mode 100644
index 0000000..5a12e79
--- /dev/null
+++ b/Darkmode-website/script.js
@@ -0,0 +1,84 @@
+const canvas = document.getElementById('particleCanvas');
+const ctx = canvas.getContext('2d');
+
+// Initial canvas size
+canvas.width = window.innerWidth;
+canvas.height = window.innerHeight;
+
+let particles = [];
+let particleCount = calculateParticleCount();
+
+class Particle {
+ constructor() {
+ this.reset();
+ this.y = Math.randm() * canvas.height;
+ this.fadeDelay = Math.random() * 600 + 100;
+ this.fadeStart = Date.now() + this.fadeDelay;
+ this.fadingOut = false;
+ }
+
+ reset() {
+ this.x = Math.random() * canvas.width;
+ this.y = Math.random() * canvas.height;
+ this.speed = Math.random() / 5 + 0.1;
+ this.opacity = 1;
+ this.fadeDelay = Math.random() * 600 + 100;
+ this.fadeStart = Date.now() + this.fadeDelay;
+ this.fadingOut = false;
+ }
+
+ update() {
+ this.y -= this.speed;
+ if (this.y < 0) {
+ this.reset();
+ }
+
+ if (!this.fadingOut && Date.now() > this.fadeStart) {
+ this.fadingOut = true;
+ }
+
+ if (this.fadingOut) {
+ this.opacity -= 0.008;
+ if (this.opacity <= 0) {
+ this.reset();
+ }
+ }
+ }
+
+ draw() {
+ ctx.fillStyle = `rgba(${255 - (Math.random() * 255/2)}, 255, 255, ${this.opacity})`;
+ ctx.fillRect(this.x, this.y, 0.4, Math.random() * 2 + 1);
+ }
+}
+
+function initParticles() {
+ particles = [];
+ for (let i = 0; i < particleCount; i++) {
+ particles.push(new Particle());
+ }
+}
+
+function animate() {
+ ctx.clearRect(0, 0, canvas.width, canvas.height);
+ particles.forEach(particle => {
+ particle.update();
+ particle.draw();
+ });
+ requestAnimationFrame(animate);
+}
+
+function calculateParticleCount() {
+ return Math.floor((canvas.width * canvas.height) / 6000);
+}
+
+function onResize() {
+ canvas.width = window.innerWidth;
+ canvas.height = window.innerHeight;
+ particleCount = calculateParticleCount();
+ initParticles();
+}
+
+window.addEventListener('resize', onResize);
+
+initParticles();
+animate();
\ No newline at end of file
diff --git a/Darkmode-website/style.css b/Darkmode-website/style.css
new file mode 100644
index 0000000..5021878
--- /dev/null
+++ b/Darkmode-website/style.css
@@ -0,0 +1,665 @@
+/* author: https://codepen.io/RAFA3L/pen/RwOMEEa
+Rafa */
+
+@import url('https://fonts.cdnfonts.com/css/hubot-sans');
+*{ box-sizing: border-box; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth;}
+html, body { height: 100%; }
+
+html::-webkit-scrollbar { display: none; }
+html { -ms-overflow-style: none; scrollbar-width: none; }
+
+body {
+ margin: 0;
+ font-family: Untitled Sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
+ background: #05060f linear-gradient(0deg,rgba(216,236,248,.06),rgba(152,192,239,.06));
+
+ font-size: max(calc(var(--_size) * 0.03), 10px);
+ --_factor: min(600px, 80vh);
+ --_size: min(var(--_factor), 80vw);
+}
+
+body.gold .header h2 ,
+body.gold p,
+body.gold > * > * :not(.contact-btn) {
+ filter: invert(1) brightness(4.7);
+}
+body.gold .header h2 a{
+ filter: hue-rotate(0deg);
+}
+body.gold canvas {
+ filter: drop-shadow(2em 4em 0px #d8bd10) drop-shadow(-8em -14em 0px #d8bd10);
+}
+body.gold .header .spotlight {
+ filter: invert(1) brightness(4.7) opacity(0.5);
+}
+body.gold .mountains > div {
+ box-shadow:
+ -1em -0.2em 0.4em -1.1em #c2ccff,
+ inset 0em 0em 0em 2px #d8a910,
+ inset 0.2em 0.3em 0.2em -0.2em #c2ccff,
+ inset 10.2em 10.3em 2em -10em #d4e6ff2f;
+}
+
+body.gold .content-section,
+body.gold .content-section ::before,
+body.gold .content-section ::after{
+ filter: invert(1) brightness(4.4) opacity(1);
+}
+
+h2 {
+ font-family: 'Hubot-Sans', sans-serif;
+}
+h2, p {
+ margin: 0; padding: 0;
+}
+h2 a {
+ text-decoration: none;
+ color: unset;
+}
+
+.header {
+ display: flex; width: 100%;
+ justify-content: center;
+ color: #bad6f7;
+ padding: 2em;
+ position: absolute;
+ top: 0; left: 0; right: 0; margin: 0 auto;
+
+ opacity: 0;
+ translate: 0 -1em;
+ animation: load 2s ease-in 2s forwards, up 1.4s ease-out 2s forwards;
+}
+.header > :nth-child(1) {
+ font-size: 1em;
+ position: absolute; left: 0; right: 29em; margin: 0.2em auto;
+ width: fit-content;
+}
+.header > :nth-child(2) {
+ position: absolute; left: 0; right: 0; margin: 0 auto;
+ width: fit-content;
+}
+
+.header > h2{
+ opacity: 0.5;
+ cursor: pointer;
+ transition: opacity 0.04s ease-in-out;
+}
+.header > h2:hover {
+ opacity: 1;
+ text-shadow: 0 2px 16px rgba(174,207,242, 0.6);
+ width: fit-content;
+}
+
+.header > div.mid-spot {
+ width: 1.8em; height: 1.8em;
+ border-radius: 50%;
+ background: black;
+ box-shadow: 0 0 1em 0 #98c0ef;
+ cursor: pointer;
+ transition: box-shadow 1s ease-in-out;
+}
+.header > div.mid-spot:hover {
+ box-shadow: -0.3em 0.1em 0.2em 0 #d8bd10;
+}
+body.gold .header > div.mid-spot:hover {
+ box-shadow: -0.3em 0.1em 0.2em 0 #98c0ef;
+}
+
+body.gold .header > div.mid-spot {
+ box-shadow: 0 0 1em 0 #d8bd10;
+}
+
+.header > :nth-child(2):hover ~ .spotlight {
+ animation: colorize 10s linear infinite;
+}
+@keyframes colorize {
+ 0%{filter: hue-rotate(0deg); }
+ 100% {filter: hue-rotate(-380deg);}
+}
+
+button.contact-btn {
+ position: absolute; left: min(46em, 60vw); right: 0; margin: 0 auto;
+ width: 8em; height: 2.4em;
+ cursor: pointer;
+ border-radius: 20em;
+ border: none;
+ transition: background 0.5s, transform 0.5s;
+
+ border: 1px solid #c2ccff33;
+ opacity: 1;
+ padding-top: 0.3em;
+
+ background: #121521;
+ color: #9dc3f7;
+ white-space:nowrap;
+}
+button.contact-btn::before {
+ content: ''; display: block; position:absolute; left: 0; top:0; border-radius: 20em;
+ width: 100%; height: 100%;
+ background: #c2ccff91 radial-gradient(farthest-side at 50% 100%, #c2ccff, transparent);
+ opacity: 0.1;
+ transition: all 0.4s ease-in-out;
+}
+button.contact-btn:hover::before {
+ background: #c2ccff1e radial-gradient(farthest-side at 50% 100%, #c2ccff, transparent);
+ opacity: 0.3;
+}
+.contact-btn .glow {
+ --border-width: 1px;
+ --loop-cycle: 24s;
+ position: absolute;
+ inset: calc(var(--border-width)* -1);
+ border-radius: 50px;
+ border: var(--border-width) solid transparent;
+ -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
+ mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
+ -webkit-mask-clip: padding-box, border-box;
+ mask-clip: padding-box, border-box;
+ -webkit-mask-composite: source-in, xor;
+ mask-composite: intersect;
+ pointer-events: none;
+}
+button.contact-btn:hover .glow {
+ --loop-cycle: 2s;
+}
+.contact-btn .glow::after, .contact-btn .glow::before {
+ content: "";
+ height: 100%;
+ offset-anchor: 100% 50%;
+ background: radial-gradient(circle at 50% 50%, hsla(0, 0%, 100%, 0.75), transparent 50%), radial-gradient(circle at 50% 50%, #c2ccff 50%, transparent);
+ opacity: 0.4;
+ offset-path: rect(0 100% 100% 0 round 33px);
+ position: absolute;
+ display: inline-block;
+ -webkit-animation: loop 4s linear infinite;
+ animation: loop var(--loop-cycle) linear infinite;
+ aspect-ratio: 1 / 1;
+ transition: opacity 1s ease-in-out;
+}
+.contact-btn .glow::before {
+ animation-delay: calc( var(--loop-cycle) / -2 );
+}
+@keyframes loop {
+ 100% {
+ offset-distance: 100%;
+ }
+}
+.contact-btn-content {
+ background: linear-gradient(0deg, #d8ecf8, #98c0ef);
+ background-clip: text;
+ -webkit-text-fill-color: transparent;
+ font-size: 1.2em;
+ line-height: 142%;
+}
+button.contact-btn:hover .glow::after, button.contact-btn:hover .glow::before {
+ opacity: 0.6;
+}
+@keyframes btn-rot {
+ 0% { rotate: 0deg; }
+ 100% { rotate: 360deg; }
+}
+
+.header .spotlight {
+ pointer-events: none;
+ position: absolute; left: 0; right: 0; top:0; margin: 0 auto;
+ transition: filter 1s ease-in-out;
+
+ height: 42em; width: 100%;
+ overflow: hidden;
+}
+.header .spotlight > div {
+ border-radius: 0 0 50% 50%;
+ position: absolute; left: 0; right: 0; margin: 0 auto;
+ top: 3em;
+ width: 30em; height: max(42em, 86vh);
+ background-image: conic-gradient(from 0deg at 50% -5%, transparent 45%, rgba(124, 145, 182, .3) 49%, rgba(124, 145, 182, .5) 50%, rgba(124, 145, 182, .3) 51%, transparent 55%);
+ transform-origin: 50% 0;
+ filter: blur(15px) opacity(0.5);
+ z-index: -1;
+ animation: load 2s ease-in-out forwards, loadrot 2s ease-in-out forwards, spotlight 21s ease-in-out infinite reverse;
+}
+.header .spotlight > div:nth-child(1){
+ rotate: 20deg;
+ animation: load 2s ease-in-out forwards, loadrot 2s ease-in-out forwards, spotlight 17s ease-in-out infinite;
+}
+.header .spotlight > div:nth-child(2){
+ rotate: -20deg;
+ animation: load 2s ease-in-out forwards, loadrot 2s ease-in-out forwards, spotlight 14s ease-in-out infinite;
+}
+@keyframes loadrot {
+ 0% { rotate: 0deg; scale: 0;}
+ 100% { scale: 1;}
+}
+@keyframes spotlight {
+ 0% {
+ transform: rotateZ(0deg) scale(1);
+ filter: blur(15px) opacity(0.5);
+ }
+ 20% {
+ transform: rotateZ(-1deg) scale(1.2);
+ filter: blur(16px) opacity(0.6);
+ }
+ 40% {
+ transform: rotateZ(2deg) scale(1.3);
+ filter: blur(14px) opacity(0.4);
+ }
+ 60% {
+ transform: rotateZ(-2deg) scale(1.2);
+ filter: blur(15px) opacity(0.6);
+ }
+ 80% {
+ transform: rotateZ(1deg) scale(1.1);
+ filter: blur(13px) opacity(0.4);
+ }
+ 100% {
+ transform: rotateZ(0deg) scale(1);
+ filter: blur(15px) opacity(0.5);
+ }
+}
+
+canvas#particleCanvas {
+ position: absolute; pointer-events: none;
+ animation: load 0.4s ease-in-out forwards;
+ z-index: 1;
+ width: 100%;
+}
+
+p {
+ font-size: 1.5em;
+}
+
+.hero {
+ width: 100%;
+ height: 100%;
+ max-height: 140px;
+ position: absolute; top: 16em;
+}
+
+.heroT {
+ position: absolute; left: 0; right: 0; margin: auto;
+ height: 20em;
+ padding-top: 2em;
+ translate: 0 -1.6em;
+ opacity: 0;
+ animation: load 2s ease-in-out 0.6s forwards;
+}
+@keyframes load {
+ 0% { opacity: 0;}
+ 100% { opacity: 1;}
+}
+.heroT > h2 {
+ position: absolute;left: 0; right: 0; margin: auto;
+ width: fit-content;
+
+ font-size: 7em;
+ font-weight: 600;
+ color: #9dc3f7;
+ background:
+ radial-gradient( 2em 2em at 50% 50%,
+ transparent calc(var(--p) - 2em),
+ #fff calc(var(--p) - 1em),
+ #fff calc(var(--p) - 0.4em),
+ transparent var(--p)
+ ),
+ linear-gradient(0deg, #bad1f1 30%, #9dc3f7 100%);
+ background-clip: text;
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ text-shadow: 0 2px 16px rgba(174,207,242,.24);
+
+ --p:0%;
+ transition:--p 3s linear;
+
+ animation: pulse 10s linear 1.2s infinite;
+}
+
+.heroT h2:nth-child(2) {
+ background:
+ radial-gradient( 2em 2em at 50% 50%,
+ transparent calc(var(--p) - 2em),
+ transparent calc(var(--p) - 1em),
+ #fff calc(var(--p) - 1em),
+ #fff calc(var(--p) - 0.4em),
+ transparent calc(var(--p) - 0.4em),
+ transparent var(--p)
+ );
+ background-clip: text;
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ filter: blur(16px) opacity(0.4);
+}
+@keyframes pulse {
+ 0% { --p:0%; }
+ 50% { --p:300%;}
+ 100% { --p:300%;}
+}
+@property --p {
+ syntax: '