@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Major+Mono+Display&display=swap"); body { margin: 0; padding: 0; background: #0e0e10; font-family: "Orbitron", sans-serif; color: #eee; overflow-x: hidden; } .header { display: flex; align-items: center; justify-content: center; gap: 15px; position: sticky; top: 0; z-index: 10; padding: 20px; background: rgba(0, 104, 209, 0.05); border-radius: 30px; box-shadow: 0 0 15px rgba(0, 104, 209, 0.2), 40px 0 60px rgba(0, 104, 209, 0.2); backdrop-filter: blur(4px); transform: skewX(-10deg); animation: rocketGlow 3s ease-in-out infinite; } @keyframes rocketGlow { 0%, 100% { box-shadow: 0 0 15px rgba(0, 104, 209, 0.2), 40px 0 60px rgba(0, 104, 209, 0.2); } 50% { box-shadow: 0 0 25px rgba(0, 104, 209, 0.4), 70px 0 90px rgba(0, 104, 209, 0.25); } } .logo { width: 50px; height: 50px; object-fit: contain; border-radius: 10px; box-shadow: -8px 0 30px rgba(0, 104, 209, 0.5), -2px 0 10px rgba(0, 104, 209, 0.8); } .project-name { font-family: "Orbitron", sans-serif; font-size: 2rem; font-style: italic; color: #00ccff; text-shadow: -2px 2px 4px #0068d1, 2px 0 8px rgba(0, 104, 209, 0.5); margin: 0; } #update { padding: 0; margin-top: 10vh; margin-left: -5vw; } a { color: #00ccff; text-shadow: -2px 2px 4px #0068d1, 2px 0 8px rgba(0, 104, 209, 0.5); text-decoration: underline; font-style: oblique; padding: 5px; } #important { background: #0a37ff; background: linear-gradient( 90deg, rgba(10, 55, 255, 1) 0%, rgba(42, 20, 153, 1) 40% ); font-size: larger; font-weight: 700; text-align: center; padding: 10px; } .header:hover { animation: rocketGlowBoost, flickerShake 0.3s ease-in-out; } @keyframes rocketGlowBoost { 0% { transform: skewX(-10deg) scale(1); } 50% { transform: skewX(-10deg) scale(1.05); } 100% { transform: skewX(-10deg) scale(1); } } @keyframes flickerShake { 0%, 100% { transform: skewX(-10deg) translateX(0); } 20% { transform: skewX(-10deg) translateX(1px); } 40% { transform: skewX(-10deg) translateX(-2px); } 60% { transform: skewX(-10deg) translateX(1px); } 80% { transform: skewX(-10deg) translateX(-1px); } } .main-content { padding: 20px 1vw; display: flex; flex-direction: column; gap: 20px; } .section { max-width: 800px; } .left { padding-left: 20px; padding-right: 5px; align-self: flex-start; text-align: left; border: #0068d1 double 5px; border-left: none; border-radius: 30px; box-shadow: 3px 10px 10px #0068d1; animation: pulseGlowLeft 2s ease-in-out infinite; } @keyframes pulseGlowLeft { 0% { box-shadow: 3px 10px 10px #0068d1; } 10% { box-shadow: 5px 10px 10px #0068d1; } 20% { box-shadow: 7px 10px 10px #0068d1; } 30% { box-shadow: 10px 10px 10px #0068d1; } 40% { box-shadow: 12px 10px 10px #0068d1; } 50% { box-shadow: 10px 10px 10px #0068d1; } 60% { box-shadow: 7px 10px 10px #0068d1; } 70% { box-shadow: 5px 10px 10px #0068d1; } 80% { box-shadow: 3px 10px 10px #0068d1; } } .right { padding-right: 20px; padding-left: 5px; align-self: flex-end; text-align: right; border: #0068d1 double 5px; border-right: none; border-radius: 30px; box-shadow: -3px 10px 10px #0068d1; animation: pulseGlowRight 2s ease-in-out infinite; } @keyframes pulseGlowRight { 0% { box-shadow: -3px 10px 10px #0068d1; } 10% { box-shadow: -5px 10px 10px #0068d1; } 20% { box-shadow: -7px 10px 10px #0068d1; } 30% { box-shadow: -10px 10px 10px #0068d1; } 40% { box-shadow: -12px 10px 10px #0068d1; } 50% { box-shadow: -10px 10px 10px #0068d1; } 60% { box-shadow: -7px 10px 10px #0068d1; } 70% { box-shadow: -5px 10px 10px #0068d1; } 80% { box-shadow: -3px 10px 10px #0068d1; } } @keyframes dataFlow { 0% { background-position: 0 0; } 100% { background-position: 0 100%; } } .left, .right { background-image: repeating-linear-gradient( to bottom, rgba(0, 104, 209, 0.1) 0px, rgba(0, 104, 209, 0.2) 2px, transparent 4px ); background-size: 100% 20px; animation: dataFlow 4s linear infinite; } .scanlines { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; background: repeating-linear-gradient( to bottom, rgba(104, 209, 255, 0.1), rgba(104, 209, 255, 0.1) 1px, transparent 1px, transparent 3px ); z-index: 999; mix-blend-mode: overlay; } .download-section { display: flex; justify-content: center; margin-top: 80px; } .download-box { background: #1b1b1e; padding: 30px 60px; border-radius: 20px; box-shadow: 0 0 25px rgba(255, 255, 255, 0.1); text-align: center; } .glitchy-counter { font-family: "Major Mono Display", monospace; font-size: 3rem; letter-spacing: 5px; color: #0068d1; text-shadow: 0 0 5px #0068d1, 0 0 10px #0068d1, 0 0 20px #0068d1; margin-bottom: 15px; transition: all 0.3s ease; min-width: 150px; } button { background: #0068d1; border: none; padding: 12px 30px; font-size: 1rem; border-radius: 10px; cursor: pointer; color: #000; font-weight: bold; box-shadow: 0 4px 10px #1962aa; transition: background 0.2s; } button:hover { background: #02e2d3; } .download-modal { position: absolute; background: rgba(0, 255, 255, 0.1); border: 1px solid #0068d1; border-radius: 12px; padding: 20px; width: 200px; top: -500px; /* Move above the button */ z-index: 1000; /* Ensure it's above everything */ opacity: 0; pointer-events: none; transform: scale(0.8); transition: all 0.4s ease; backdrop-filter: blur(10px); color: #0068d1; text-shadow: 0 0 5px #0068d1; } .download-modal h3 { margin-top: 0; font-size: 1.2rem; } .download-modal ul { list-style: none; padding: 0; } .download-modal a { color: #00ffea; text-decoration: underline; } .modal-container { position: relative; margin-top: 30px; display: flex; justify-content: center; gap: 300px; /* Adjust spacing here */ align-items: flex-start; height: 500px; } #modal-linux, #modal-windows { position: relative; top: 0; left: 0; right: 0; } .curve-line { position: absolute; width: 0; height: 4px; background: #00ffee; z-index: 900; opacity: 0.3; border-radius: 2px; transform-origin: left center; transition: width 0.6s ease, transform 0.6s ease, opacity 0.2s ease; margin-top: -43%; margin-right: -60%; } @keyframes pulse-line { 0% { stroke-opacity: 0.3; } 50% { stroke-opacity: 1; } 100% { stroke-opacity: 0.3; } } .modal-show #modal-linux, .modal-show #modal-windows { opacity: 1; transform: scale(1); pointer-events: auto; } .modal-container { transition: opacity 0.4s ease, transform 0.4s ease; } .modal-container.modal-show .download-modal { opacity: 1; transform: scale(1); pointer-events: auto; } .third-party { font-size: 0.85em; color: #00ccff; font-style: italic; opacity: 0.7; } .new { color: #00ccff; text-shadow: -2px 2px 4px #0068d1, 2px 0 8px rgba(0, 104, 209, 0.5); } @media (max-width: 768px) { .header { flex-direction: column; gap: 10px; padding: 15px 20px; transform: none; animation: none; } .project-name { font-size: 1.5rem; text-align: center; } .main-content { padding: 20px 5vw; } .left, .right { align-self: stretch; text-align: left; padding: 15px; border: #0068d1 double 5px; border-left: none; border-right: none; border-radius: 20px; box-shadow: 0 5px 10px #0068d1; } .left { animation: none; } .right { animation: none; } .download-section { margin-top: 40px; } .modal-container { display: none; } .glitchy-counter { font-size: 2rem; letter-spacing: 2px; min-width: auto; } button { padding: 10px 20px; font-size: 0.9rem; } #update { padding: 0; margin-top: 0vh; margin-left: 15vw; } }