Changes to cosmos.scroll.pub

root
root
19 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://cosmos.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Cosmic Explorer | Interstellar Portfolio
+ style.css
+
+ header
+ class cosmic-header
+ div
+ class stars
+ div
+ class shooting-star
+ div
+ class hero-content
+ h1 Cosmic Explorer
+ p Navigating the digital universe
+ div
+ class orbit-container
+ div
+ class planet
+ div
+ class satellite
+ style animation-duration: 8s
+ main
+ section
+ id about
+ class cosmic-section
+ h2 About My Journey
+ div
+ class content-grid
+ div
+ class nebula-card
+ h3 My Mission
+ p Exploring the frontiers of web development and design across the digital cosmos.
+ div
+ class nebula-card
+ h3 My Skills
+ p HTML5, CSS3, JavaScript, UI/UX Design, Responsive Development
+ section
+ id projects
+ class cosmic-section
+ h2 Galactic Projects
+ div
+ class project-grid
+ div
+ class project-card
+ div
+ class project-image
+ style background: radial-gradient(circle, #4a00e0, #8e2de2)
+ h3 Stellar Dashboard
+ p A cosmic analytics interface
+ div
+ class project-card
+ div
+ class project-image
+ style background: radial-gradient(circle, #11998e, #38ef7d)
+ h3 Nebula CMS
+ p A content management system among the stars
+ div
+ class project-card
+ div
+ class project-image
+ style background: radial-gradient(circle, #f12711, #f5af19)
+ h3 Black Hole Storage
+ p Infinite data compression
+ section
+ id contact
+ class cosmic-section
+ h2 Transmit Message
+ form
+ class cosmic-form
+ div
+ class form-group
+ label Your Name
+ input
+ type text
+ placeholder Enter your name...
+ div
+ class form-group
+ label Your Message
+ textarea
+ placeholder Send your transmission across the cosmos...
+ button
+ type submit
+ class cosmic-button
+ Launch Message
+ footer
+ class cosmic-footer
+ div
+ class footer-content
+ p Journey through the cosmos continues...
+
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "d11965f5-59cf-4646-be19-bd35eac3d066",
+ "object": "chat.completion",
+ "created": 1743519346,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "Here's my proposal for an interstellar-themed portfolio:\n\n---domain---\ncosmos.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://cosmos.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Cosmic Explorer | Interstellar Portfolio\nstyle.css\n\nheader\n class cosmic-header\n div\n class stars\n div\n class shooting-star\n div\n class hero-content\n h1 Cosmic Explorer\n p Navigating the digital universe\n div\n class orbit-container\n div\n class planet\n div\n class satellite\n style animation-duration: 8s\nmain\n section\n id about\n class cosmic-section\n h2 About My Journey\n div\n class content-grid\n div\n class nebula-card\n h3 My Mission\n p Exploring the frontiers of web development and design across the digital cosmos.\n div\n class nebula-card\n h3 My Skills\n p HTML5, CSS3, JavaScript, UI/UX Design, Responsive Development\n section\n id projects\n class cosmic-section\n h2 Galactic Projects\n div\n class project-grid\n div\n class project-card\n div\n class project-image\n style background: radial-gradient(circle, #4a00e0, #8e2de2)\n h3 Stellar Dashboard\n p A cosmic analytics interface\n div\n class project-card\n div\n class project-image\n style background: radial-gradient(circle, #11998e, #38ef7d)\n h3 Nebula CMS\n p A content management system among the stars\n div\n class project-card\n div\n class project-image\n style background: radial-gradient(circle, #f12711, #f5af19)\n h3 Black Hole Storage\n p Infinite data compression\n section\n id contact\n class cosmic-section\n h2 Transmit Message\n form\n class cosmic-form\n div\n class form-group\n label Your Name\n input\n type text\n placeholder Enter your name...\n div\n class form-group\n label Your Message\n textarea\n placeholder Send your transmission across the cosmos...\n button\n type submit\n class cosmic-button\n Launch Message\nfooter\n class cosmic-footer\ndiv\n class footer-content\np Journey through the cosmos continues...\n\nscript.js\n---style.css---\n:root {\n --space-dark: #0b0d17;\n --space-light: #d0d6f9;\n --star-glow: #ffffff;\n --planet-primary: #4a00e0;\n --planet-secondary: #8e2de2;\n --nebula-purple: #6a3093;\n --nebula-blue: #1a2980;\n}\n\nbody {\n background-color: var(--space-dark);\n color: var(--space-light);\n font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n margin: 0;\n padding: 0;\n line-height: 1.6;\n overflow-x: hidden;\n}\n\n.cosmic-header {\n height: 100vh;\n display: flex;\n align-items: center;\n justify-content: center;\n position: relative;\n overflow: hidden;\n}\n\n.stars {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: transparent;\n}\n\n.stars::before {\n content: \"\";\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: url('data:image/svg+xml;utf8,');\n opacity: 0.8;\n animation: twinkle 5s infinite alternate;\n}\n\n@keyframes twinkle {\n 0% { opacity: 0.3; }\n 100% { opacity: 0.8; }\n}\n\n.shooting-star {\n position: absolute;\n width: 4px;\n height: 4px;\n background: white;\n border-radius: 50%;\n box-shadow: 0 0 10px 2px var(--star-glow);\n animation: shoot 8s linear infinite;\n}\n\n@keyframes shoot {\n 0% {\n transform: translate(0, 0);\n opacity: 1;\n }\n 70% {\n opacity: 1;\n }\n 100% {\n transform: translate(800px, 300px);\n opacity: 0;\n }\n}\n\n.hero-content {\n text-align: center;\n z-index: 10;\n max-width: 800px;\n padding: 20px;\n}\n\nh1 {\n font-size: 4rem;\n margin-bottom: 1rem;\n background: linear-gradient(90deg, var(--space-light), #ffffff);\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n}\n\n.orbit-container {\n width: 300px;\n height: 300px;\n margin: 40px auto;\n position: relative;\n border: 1px dashed rgba(208, 214, 249, 0.2);\n border-radius: 50%;\n animation: rotate 20s linear infinite;\n}\n\n.planet {\n width: 60px;\n height: 60px;\n background: linear-gradient(45deg, var(--planet-primary), var(--planet-secondary));\n border-radius: 50%;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n box-shadow: 0 0 20px rgba(74, 0, 224, 0.6);\n}\n\n.satellite {\n width: 20px;\n height: 20px;\n background: #ffffff;\n border-radius: 50%;\n position: absolute;\n top: -10px;\n left: 50%;\n transform: translateX(-50%);\n animation: orbit 6s linear infinite;\n}\n\n@keyframes orbit {\n 0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }\n 100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }\n}\n\n@keyframes rotate {\n 0% { transform: rotate(0deg); }\n 100% { transform: rotate(360deg); }\n}\n\n.cosmic-section {\n padding: 80px 20px;\n max-width: 1200px;\n margin: 0 auto;\n}\n\nh2 {\n font-size: 2.5rem;\n text-align: center;\n margin-bottom: 60px;\n position: relative;\n}\n\nh2::after {\n content: \"\";\n display: block;\n width: 100px;\n height: 3px;\n background: linear-gradient(90deg, var(--nebula-purple), var(--nebula-blue));\n margin: 20px auto;\n}\n\n.content-grid, .project-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 30px;\n}\n\n.nebula-card, .project-card {\n background: rgba(13, 17, 33, 0.7);\n border-radius: 15px;\n padding: 30px;\n backdrop-filter: blur(5px);\n border: 1px solid rgba(208, 214, 249, 0.1);\n transition: transform 0.3s ease, box-shadow 0.3s ease;\n}\n\n.nebula-card:hover, .project-card:hover {\n transform: translateY(-10px);\n box-shadow: 0 10px 30px rgba(106, 48, 147, 0.3);\n}\n\n.project-image {\n height: 200px;\n border-radius: 10px;\n margin-bottom: 20px;\n transition: all 0.5s ease;\n}\n\n.project-card:hover .project-image {\n transform: scale(1.05);\n}\n\n.cosmic-form {\n max-width: 600px;\n margin: 0 auto;\n background: rgba(13, 17, 33, 0.7);\n padding: 40px;\n border-radius: 15px;\n backdrop-filter: blur(5px);\n}\n\n.form-group {\n margin-bottom: 25px;\n}\n\nlabel {\n display: block;\n margin-bottom: 8px;\n font-size: 1.1rem;\n}\n\ninput, textarea {\n width: 100%;\n padding: 12px;\n background: rgba(208, 214, 249, 0.1);\n border: 1px solid rgba(208, 214, 249, 0.3);\n border-radius: 5px;\n color: white;\n font-size: 1rem;\n}\n\n.cosmic-button {\n background: linear-gradient(45deg, var(--nebula-purple), var(--nebula-blue));\n color: white;\n border: none;\n padding: 12px 30px;\n font-size: 1.1rem;\n border-radius: 50px;\n cursor: pointer;\n transition: all 0.3s ease;\n display: block;\n margin: 0 auto;\n}\n\n.cosmic-button:hover {\n transform: scale(1.05);\n box-shadow: 0 5px 15px rgba(106, 48, 147, 0.4);\n}\n\n.cosmic-footer {\n text-align: center;\n padding: 40px 20px;\n margin-top: 60px;\n border-top: 1px solid rgba(208, 214, 249, 0.1);\n}\n\n@media (max-width: 768px) {\n h1 {\n font-size: 2.5rem;\n }\n \n .orbit-container {\n width: 200px;\n height: 200px;\n }\n \n .cosmic-section {\n padding: 50px 20px;\n }\n \n .content-grid, .project-grid {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n // Create more stars dynamically\n const starsContainer = document.querySelector('.stars');\n for (let i = 0; i < 100; i++) {\n const star = document.createElement('div');\n star.className = 'star';\n star.style.left = `${Math.random() * 100}%`;\n star.style.top = `${Math.random() * 100}%`;\n star.style.width = `${Math.random() * 2 + 1}px`;\n star.style.height = star.style.width;\n star.style.animationDelay = `${Math.random() * 5}s`;\n starsContainer.appendChild(star);\n }\n\n // Create shooting stars\n for (let i = 0; i < 3; i++) {\n const shootingStar = document.createElement('div');\n shootingStar.className = 'shooting-star';\n shootingStar.style.left = `${Math.random() * 20}%`;\n shootingStar.style.top = `${Math.random() * 20}%`;\n shootingStar.style.animationDelay = `${Math.random() * 10}s`;\n starsContainer.appendChild(shootingStar);\n }\n\n // Add hover effect to project cards\n const projectCards = document.querySelectorAll('.project-card');\n projectCards.forEach(card => {\n card.addEventListener('mouseenter', function() {\n const image = this.querySelector('.project-image');\n const colors = [\n 'radial-gradient(circle, #4a00e0, #8e2de2)',\n 'radial-gradient(circle, #11998e, #38ef7d)',\n 'radial-gradient(circle, #f12711, #f5af19)',\n 'radial-gradient(circle, #1a2980, #26d0ce)',\n 'radial-gradient(circle, #ff416c, #ff4b2b)'\n ];\n const randomColor = colors[Math.floor(Math.random() * colors.length)];\n image.style.background = randomColor;\n });\n });\n\n // Smooth scrolling for anchor links\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function(e) {\n e.preventDefault();\n const targetId = this.getAttribute('href');\n const targetElement = document.querySelector(targetId);\n if (targetElement) {\n window.scrollTo({\n top: targetElement.offsetTop - 80,\n behavior: 'smooth'\n });\n }\n });\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 720,
+ "completion_tokens": 2920,
+ "total_tokens": 3640,
+ "prompt_tokens_details": {
+ "cached_tokens": 704
+ },
+ "prompt_cache_hit_tokens": 704,
+ "prompt_cache_miss_tokens": 16
+ },
+ "system_fingerprint": "fp_3d5141a69a_prod0225"
+ }
readme.scroll
Changed around line 1
+ # cosmos.scroll.pub
+
+ Prompt: website
+ Agent: deepseek
+ Model: deepseek-chat
+
+ ## User prompt
+ interstellar themed portfolio
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "interstellar themed portfolio"
+
+ 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
+ document.addEventListener('DOMContentLoaded', function() {
+ // Create more stars dynamically
+ const starsContainer = document.querySelector('.stars');
+ for (let i = 0; i < 100; i++) {
+ const star = document.createElement('div');
+ star.className = 'star';
+ star.style.left = `${Math.random() * 100}%`;
+ star.style.top = `${Math.random() * 100}%`;
+ star.style.width = `${Math.random() * 2 + 1}px`;
+ star.style.height = star.style.width;
+ star.style.animationDelay = `${Math.random() * 5}s`;
+ starsContainer.appendChild(star);
+ }
+
+ // Create shooting stars
+ for (let i = 0; i < 3; i++) {
+ const shootingStar = document.createElement('div');
+ shootingStar.className = 'shooting-star';
+ shootingStar.style.left = `${Math.random() * 20}%`;
+ shootingStar.style.top = `${Math.random() * 20}%`;
+ shootingStar.style.animationDelay = `${Math.random() * 10}s`;
+ starsContainer.appendChild(shootingStar);
+ }
+
+ // Add hover effect to project cards
+ const projectCards = document.querySelectorAll('.project-card');
+ projectCards.forEach(card => {
+ card.addEventListener('mouseenter', function() {
+ const image = this.querySelector('.project-image');
+ const colors = [
+ 'radial-gradient(circle, #4a00e0, #8e2de2)',
+ 'radial-gradient(circle, #11998e, #38ef7d)',
+ 'radial-gradient(circle, #f12711, #f5af19)',
+ 'radial-gradient(circle, #1a2980, #26d0ce)',
+ 'radial-gradient(circle, #ff416c, #ff4b2b)'
+ ];
+ const randomColor = colors[Math.floor(Math.random() * colors.length)];
+ image.style.background = randomColor;
+ });
+ });
+
+ // Smooth scrolling for anchor links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function(e) {
+ e.preventDefault();
+ const targetId = this.getAttribute('href');
+ const targetElement = document.querySelector(targetId);
+ if (targetElement) {
+ window.scrollTo({
+ top: targetElement.offsetTop - 80,
+ behavior: 'smooth'
+ });
+ }
+ });
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --space-dark: #0b0d17;
+ --space-light: #d0d6f9;
+ --star-glow: #ffffff;
+ --planet-primary: #4a00e0;
+ --planet-secondary: #8e2de2;
+ --nebula-purple: #6a3093;
+ --nebula-blue: #1a2980;
+ }
+
+ body {
+ background-color: var(--space-dark);
+ color: var(--space-light);
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ overflow-x: hidden;
+ }
+
+ .cosmic-header {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .stars {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: transparent;
+ }
+
+ .stars::before {
+ content: "";
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: url('data:image/svg+xml;utf8,');
+ opacity: 0.8;
+ animation: twinkle 5s infinite alternate;
+ }
+
+ @keyframes twinkle {
+ 0% { opacity: 0.3; }
+ 100% { opacity: 0.8; }
+ }
+
+ .shooting-star {
+ position: absolute;
+ width: 4px;
+ height: 4px;
+ background: white;
+ border-radius: 50%;
+ box-shadow: 0 0 10px 2px var(--star-glow);
+ animation: shoot 8s linear infinite;
+ }
+
+ @keyframes shoot {
+ 0% {
+ transform: translate(0, 0);
+ opacity: 1;
+ }
+ 70% {
+ opacity: 1;
+ }
+ 100% {
+ transform: translate(800px, 300px);
+ opacity: 0;
+ }
+ }
+
+ .hero-content {
+ text-align: center;
+ z-index: 10;
+ max-width: 800px;
+ padding: 20px;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(90deg, var(--space-light), #ffffff);
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .orbit-container {
+ width: 300px;
+ height: 300px;
+ margin: 40px auto;
+ position: relative;
+ border: 1px dashed rgba(208, 214, 249, 0.2);
+ border-radius: 50%;
+ animation: rotate 20s linear infinite;
+ }
+
+ .planet {
+ width: 60px;
+ height: 60px;
+ background: linear-gradient(45deg, var(--planet-primary), var(--planet-secondary));
+ border-radius: 50%;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ box-shadow: 0 0 20px rgba(74, 0, 224, 0.6);
+ }
+
+ .satellite {
+ width: 20px;
+ height: 20px;
+ background: #ffffff;
+ border-radius: 50%;
+ position: absolute;
+ top: -10px;
+ left: 50%;
+ transform: translateX(-50%);
+ animation: orbit 6s linear infinite;
+ }
+
+ @keyframes orbit {
+ 0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
+ 100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
+ }
+
+ @keyframes rotate {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+ }
+
+ .cosmic-section {
+ padding: 80px 20px;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ text-align: center;
+ margin-bottom: 60px;
+ position: relative;
+ }
+
+ h2::after {
+ content: "";
+ display: block;
+ width: 100px;
+ height: 3px;
+ background: linear-gradient(90deg, var(--nebula-purple), var(--nebula-blue));
+ margin: 20px auto;
+ }
+
+ .content-grid, .project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 30px;
+ }
+
+ .nebula-card, .project-card {
+ background: rgba(13, 17, 33, 0.7);
+ border-radius: 15px;
+ padding: 30px;
+ backdrop-filter: blur(5px);
+ border: 1px solid rgba(208, 214, 249, 0.1);
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
+ }
+
+ .nebula-card:hover, .project-card:hover {
+ transform: translateY(-10px);
+ box-shadow: 0 10px 30px rgba(106, 48, 147, 0.3);
+ }
+
+ .project-image {
+ height: 200px;
+ border-radius: 10px;
+ margin-bottom: 20px;
+ transition: all 0.5s ease;
+ }
+
+ .project-card:hover .project-image {
+ transform: scale(1.05);
+ }
+
+ .cosmic-form {
+ max-width: 600px;
+ margin: 0 auto;
+ background: rgba(13, 17, 33, 0.7);
+ padding: 40px;
+ border-radius: 15px;
+ backdrop-filter: blur(5px);
+ }
+
+ .form-group {
+ margin-bottom: 25px;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 8px;
+ font-size: 1.1rem;
+ }
+
+ input, textarea {
+ width: 100%;
+ padding: 12px;
+ background: rgba(208, 214, 249, 0.1);
+ border: 1px solid rgba(208, 214, 249, 0.3);
+ border-radius: 5px;
+ color: white;
+ font-size: 1rem;
+ }
+
+ .cosmic-button {
+ background: linear-gradient(45deg, var(--nebula-purple), var(--nebula-blue));
+ color: white;
+ border: none;
+ padding: 12px 30px;
+ font-size: 1.1rem;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ display: block;
+ margin: 0 auto;
+ }
+
+ .cosmic-button:hover {
+ transform: scale(1.05);
+ box-shadow: 0 5px 15px rgba(106, 48, 147, 0.4);
+ }
+
+ .cosmic-footer {
+ text-align: center;
+ padding: 40px 20px;
+ margin-top: 60px;
+ border-top: 1px solid rgba(208, 214, 249, 0.1);
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .orbit-container {
+ width: 200px;
+ height: 200px;
+ }
+
+ .cosmic-section {
+ padding: 50px 20px;
+ }
+
+ .content-grid, .project-grid {
+ grid-template-columns: 1fr;
+ }
+ }