diff --git a/assets/css/coreloop.css b/assets/css/coreloop.css index 257860b..3816974 100644 --- a/assets/css/coreloop.css +++ b/assets/css/coreloop.css @@ -534,3 +534,352 @@ body *[style*="color:#4cc9ff"] { flex-direction: column; } } + +/* ============================================================ + Service Site Layout + ============================================================ */ +.service-site { + background: linear-gradient(180deg, #07111f 0%, #0a1426 55%, #0d1930 100%); +} + +.service-hero { + padding: 5rem 0 4rem; + background: + linear-gradient(120deg, rgba(7, 17, 31, 0.93), rgba(10, 132, 255, 0.58)), + url('/assets/images/RL-splash.png') center/cover no-repeat; + border-bottom: 1px solid rgba(255, 255, 255, 0.16); +} + +.service-hero.compact { + padding: 4rem 0 3rem; +} + +.service-kicker { + letter-spacing: 0.16em; + text-transform: uppercase; + font-size: 0.76rem; + color: var(--core-gold); + margin-bottom: 0.7rem; +} + +.service-hero h1 { + font-size: clamp(2rem, 5vw, 3.4rem); + margin-bottom: 0.7rem; +} + +.service-lead { + font-size: clamp(1.15rem, 2.8vw, 1.55rem); + color: #e9f5ff; + margin-bottom: 1rem; +} + +.service-sublead { + max-width: 920px; + color: #d0e5fb; +} + +.service-section { + padding: 4rem 0; +} + +.service-section.alt { + background: rgba(12, 23, 41, 0.72); + border-top: 1px solid rgba(54, 243, 255, 0.08); + border-bottom: 1px solid rgba(54, 243, 255, 0.08); +} + +.service-section h2 { + margin-bottom: 0.9rem; +} + +.section-intro { + max-width: 900px; + color: #bfd4ec; + margin-bottom: 1.45rem; +} + +.service-actions { + display: flex; + flex-wrap: wrap; + gap: 0.7rem; + margin-top: 1.2rem; +} + +.core-action { + display: inline-flex; + align-items: center; + justify-content: center; + border-radius: 7px; + border: 1px solid transparent; + padding: 0.72rem 1.2rem; + font-weight: 700; + letter-spacing: 0.03em; + text-decoration: none; + transition: all 0.2s ease; +} + +.core-action.primary { + background: var(--core-gold); + color: #07111f; + border-color: var(--core-gold); +} + +.core-action.primary:hover, +.core-action.primary:focus { + background: var(--core-cyan); + border-color: var(--core-cyan); + color: #07111f; + text-decoration: none; +} + +.core-action.secondary, +.core-action.tertiary { + border-color: rgba(54, 243, 255, 0.4); + background: rgba(9, 20, 38, 0.7); + color: #def8ff; +} + +.core-action.secondary:hover, +.core-action.secondary:focus, +.core-action.tertiary:hover, +.core-action.tertiary:focus { + border-color: var(--core-gold); + color: var(--core-gold); + text-decoration: none; +} + +.service-card-grid, +.benefit-grid, +.three-column-stack { + display: grid; + grid-template-columns: repeat(4, minmax(0, 1fr)); + gap: 1rem; +} + +.service-card-grid.two-columns { + grid-template-columns: repeat(2, minmax(0, 1fr)); +} + +.three-column-stack { + grid-template-columns: repeat(3, minmax(0, 1fr)); +} + +.service-card-item, +.benefit-item, +.service-detail-card, +.ddd-team-visual { + background: linear-gradient(180deg, #0c1729, #0a1423); + border: 1px solid rgba(54, 243, 255, 0.2); + border-radius: 12px; + padding: 1.15rem; + box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24); +} + +.service-card-item h3, +.benefit-item h3, +.service-detail-card h2 { + color: #f3fbff; + margin-bottom: 0.6rem; +} + +.service-card-item p, +.benefit-item p, +.service-detail-card li { + color: #c3d7ee; +} + +.service-icon { + width: 44px; + height: 44px; + border-radius: 10px; + display: inline-flex; + align-items: center; + justify-content: center; + font-size: 1.35rem; + margin-bottom: 0.75rem; + background: rgba(10, 132, 255, 0.24); +} + +.service-detail-card ul { + margin: 0.4rem 0 0; + padding-left: 1.1rem; +} + +.service-detail-card li { + margin-bottom: 0.38rem; +} + +.cta-block { + background: linear-gradient(125deg, #08111f, #0a84ff); + border-radius: 16px; + border: 1px solid rgba(255, 255, 255, 0.18); + padding: 2.2rem; +} + +.cta-block p { + max-width: 820px; + color: #d6ebff; +} + +.screenshot-placeholder { + border: 2px dashed rgba(54, 243, 255, 0.5); + border-radius: 12px; + padding: 2.1rem; + text-align: center; + color: #cbe3fa; + background: rgba(12, 23, 41, 0.7); +} + +/* ============================================================ + Homepage partnership section + ============================================================ */ +.ddd-partnership-grid { + display: grid; + grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); + gap: 1rem; + align-items: start; +} + +.ddd-subtitle { + color: var(--core-gold); + font-size: 1.15rem; +} + +.ddd-copy { + color: #c6daee; +} + +.ddd-feature-list { + list-style: none; + margin: 1rem 0 0; + padding: 0; + display: grid; + grid-template-columns: repeat(2, minmax(0, 1fr)); + gap: 0.7rem; +} + +.ddd-feature-list li { + background: rgba(12, 23, 41, 0.75); + border: 1px solid rgba(54, 243, 255, 0.22); + border-radius: 10px; + padding: 0.7rem 0.8rem; + color: #e6f5ff; +} + +.ddd-feature-list li::before { + content: "✓ "; + color: var(--core-gold); + font-weight: 700; +} + +.ddd-team-visual h3 { + margin-bottom: 0.8rem; +} + +.team-link { + display: grid; + gap: 0.6rem; +} + +.team-block { + border: 1px solid rgba(255, 198, 0, 0.35); + border-radius: 10px; + text-align: center; + padding: 0.8rem; + background: rgba(11, 24, 48, 0.82); +} + +.team-block span { + display: block; + font-size: 1.4rem; + margin-bottom: 0.28rem; +} + +.team-block p { + color: #e7f5ff; + margin-bottom: 0; +} + +.team-connector { + text-align: center; + font-size: 1.4rem; +} + +.ddd-callout { + margin-top: 1rem; + padding: 1rem; + border-radius: 12px; + border: 1px solid rgba(54, 243, 255, 0.24); + background: rgba(12, 23, 41, 0.8); +} + +.ddd-callout.secondary { + border-color: rgba(255, 198, 0, 0.32); +} + +.ddd-callout-title { + font-size: 1.07rem; + color: #ffffff; + font-weight: 700; + margin-bottom: 0.55rem; +} + +.portfolio-category { + margin-top: 2rem; +} + +.project-card-item .project-shot { + border-radius: 10px; + border: 1px dashed rgba(54, 243, 255, 0.4); + min-height: 130px; + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 0.85rem; + color: #bcd5ec; + font-size: 0.9rem; + background: rgba(8, 17, 31, 0.75); +} + +.project-card-item .project-status { + color: #e7f6ff; + margin: 0.5rem 0 0.9rem; +} + +@media (max-width: 992px) { + .service-card-grid, + .benefit-grid { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .three-column-stack { + grid-template-columns: 1fr; + } + + .ddd-partnership-grid { + grid-template-columns: 1fr; + } +} + +@media (max-width: 768px) { + .service-hero, + .service-section { + padding: 3rem 0; + } + + .service-actions { + flex-direction: column; + align-items: stretch; + } + + .service-card-grid, + .service-card-grid.two-columns, + .benefit-grid, + .ddd-feature-list { + grid-template-columns: 1fr; + } + + .cta-block { + padding: 1.4rem; + } +} diff --git a/design-debug-deploy.php b/design-debug-deploy.php new file mode 100644 index 0000000..76f9125 --- /dev/null +++ b/design-debug-deploy.php @@ -0,0 +1,107 @@ + + + + + + + + + Design • Debug • Deploy | Runlevel Systems + + + + + + + + + +
+
+
+

Flagship Service

+

Design • Debug • Deploy

+

From idea to launch, we help you build with confidence.

+
+
+ +
+
+
+

Design

+
    +
  • Project planning
  • +
  • Documentation
  • +
  • Technical roadmaps
  • +
  • Development workflows
  • +
  • Milestones and goals
  • +
+
+
+

Debug

+
    +
  • Software bugs
  • +
  • Build problems
  • +
  • Configuration issues
  • +
  • Performance bottlenecks
  • +
  • Workflow improvements
  • +
+
+
+

Deploy

+
    +
  • Website deployment
  • +
  • Application deployment
  • +
  • Game publishing
  • +
  • Server setup
  • +
  • Hosting configuration
  • +
  • Ongoing support
  • +
+
+
+
+ +
+
+

Private Developer Workspaces

+

If you need a focused environment for your team, we can provide private hosted workspaces that include project management, source control, documentation, collaboration tools, remote access, and development resources in one place.

+
+
+ +
+
+

Why Small Teams Choose Us

+
+

Clear Direction

Get a realistic plan and next steps you can act on right away.

+

Faster Problem Solving

Resolve technical blockers before they delay your release.

+

Launch Support

Deploy confidently with support during rollout and updates.

+

Long-Term Partner

Keep improving after launch with flexible ongoing support.

+
+
+
+ +
+
+

Ready to Build With Confidence?

+

Tell us what you're creating and where you need help. We'll help you choose the right path to launch.

+ +
+
+
+ + + + + + + + + + diff --git a/developer-workspaces.php b/developer-workspaces.php new file mode 100644 index 0000000..048346f --- /dev/null +++ b/developer-workspaces.php @@ -0,0 +1,80 @@ + + + + + + + + + Developer Workspaces | Runlevel Systems + + + + + + + + + +
+
+
+

Service

+

Developer Workspaces

+

Private cloud development environments for small teams.

+
+
+ +
+
+

Give your team one secure online workspace where planning, coding, documentation, and collaboration all stay connected.

+
+

Private Development Environments

Work in isolated team spaces built for active software projects.

+

Source Control Repositories

Keep code organized with shared repositories and clear version history.

+

Documentation and Wikis

Store setup guides, product notes, and architecture docs in one place.

+

Issue Tracking and Kanban Boards

Track tasks, bugs, and milestones so everyone knows what is next.

+

Team Collaboration

Share updates, decisions, and feedback without switching between disconnected tools.

+

Secure Access

Control who can access your workspace and project resources.

+

Browser-Based Development Tools

Review and work on code from anywhere when needed.

+

File Storage and Development Resources

Keep project assets and support files available to the whole team.

+
+
+
+ +
+
+

Why Teams Use Developer Workspaces

+
+

Faster Onboarding

New team members can start contributing quickly with everything in one place.

+

Better Visibility

Everyone can see project status, priorities, and blockers.

+

Less Tool Sprawl

Reduce context switching by centralizing the core workflow.

+

Secure Collaboration

Work together with controlled access and private project spaces.

+
+
+
+ +
+
+

Need a Private Workspace for Your Team?

+

Tell us how your team works today and we can help design a workspace that supports your process.

+ +
+
+
+ + + + + + + + + + diff --git a/game-server-panel.php b/game-server-panel.php new file mode 100644 index 0000000..ae09586 --- /dev/null +++ b/game-server-panel.php @@ -0,0 +1,86 @@ + + + + + + + + + Game Server Panel | Runlevel Systems + + + + + + + + + +
+
+
+

Platform

+

Game Server Panel

+

A practical platform for deploying and managing game servers at scale.

+
+
+ +
+
+

Features

+
+

Easy Deployment

Launch new servers quickly with repeatable workflows.

+

Multi-Location Support

Manage game servers across different regions from one place.

+

Server Monitoring

Track uptime and performance to catch issues early.

+

User Management

Control team permissions and customer access in one dashboard.

+

Automated Updates

Roll out game and system updates with less manual work.

+

Mod Management

Handle mod installation and updates for supported titles.

+

Hosting Provider Tools

Support daily hosting operations with streamlined workflows.

+
+
+
+ +
+
+

Benefits

+
+

Less Manual Work

Spend less time on repetitive tasks and more time improving service.

+

Better Reliability

Use clear monitoring and controls to reduce downtime.

+

Scales With Growth

Add servers and locations as your players or customers grow.

+

Operator Friendly

Designed to be usable by small teams without large operations staff.

+
+
+
+ +
+
+

Screenshots

+
Screenshot gallery placeholder — dashboard, server list, monitoring, and user management views.
+
+
+ +
+
+

Want to Use Game Server Panel?

+

Tell us about your hosting goals and we can help you evaluate the right setup.

+ +
+
+
+ + + + + + + + + + diff --git a/gameserver-hosting.php b/gameserver-hosting.php new file mode 100644 index 0000000..40ded6c --- /dev/null +++ b/gameserver-hosting.php @@ -0,0 +1,67 @@ + + + + + + + + + Game Server Hosting | Runlevel Systems + + + + + + + + + +
+
+
+

Service

+

Game Server Hosting

+

Launch and run multiplayer servers without managing everything yourself.

+
+
+ +
+
+

We provide managed game server hosting for communities, clans, and indie teams. You stay focused on players and content while we handle the infrastructure work behind the scenes.

+
+

Managed Game Server Hosting

We set up and maintain your servers so you can focus on your game and community.

+

Dedicated Game Servers

Get stable dedicated resources for reliable player performance.

+

Community Hosting

Support public or private communities with scalable hosting options.

+

Mod Support

Run modded experiences with help for setup and ongoing updates.

+

Deployment Assistance

Get help launching new instances, maps, and updates quickly.

+

Monitoring and Backups

Track server health and protect your environment with routine backups.

+

Multi-Location Availability

Host closer to your players with options across multiple regions.

+
+
+
+ +
+
+

Need Reliable Hosting for Your Community?

+

Share your game, player count, and goals. We'll recommend a hosting setup that fits your needs.

+ +
+
+
+ + + + + + + + + + diff --git a/includes/footer.php b/includes/footer.php index 1a06888..15cc4c6 100644 --- a/includes/footer.php +++ b/includes/footer.php @@ -1,6 +1,5 @@ - - +
+

+ © 2026 Runlevel Systems. Design • Debug • Deploy for games, software, and infrastructure. +

+
+ diff --git a/includes/navigation.php b/includes/navigation.php index bee9ae6..a3c6cc3 100644 --- a/includes/navigation.php +++ b/includes/navigation.php @@ -3,15 +3,6 @@ session_start(); } -if (!function_exists('isLoggedInAdmin')) { - if (!defined('WDS_SYSTEM')) { - define('WDS_SYSTEM', true); - require_once __DIR__ . '/db-config.php'; - } -} - -$is_logged_in = function_exists('isLoggedInAdmin') ? isLoggedInAdmin() : false; - $current_url = parse_url($_SERVER['REQUEST_URI'] ?? '', PHP_URL_PATH) ?: ''; $is_in_projects = (strpos($current_url, '/projects/') !== false); $is_in_staff = (strpos($current_url, '/staff/') !== false); @@ -44,16 +35,12 @@ diff --git a/index.php b/index.php index 458d823..a4d145c 100644 --- a/index.php +++ b/index.php @@ -6,22 +6,17 @@ - Runlevel Systems | Design Debug Deploy - - + Runlevel Systems | Design • Debug • Deploy + + - - @@ -29,377 +24,135 @@ - - -
-
+
+
-

Build Your Game. We'll Help You Launch It.

-

You have the idea. We help with the technical parts that can slow you down — websites, code, servers, publishing, updates, and getting your project in front of players.

-

DESIGN • DEBUG • DEPLOY

-
- Schedule a Consultation - Join Our Community +

Runlevel Systems

+

Design • Debug • Deploy

+

Helping Developers Turn Ideas Into Reality

+

Whether you're building a game, website, mobile app, server platform, or software product, we provide the tools, infrastructure, and technical expertise needed to move from concept to launch.

+
-
+
-

More Than Hosting. A Technical Partner.

-

Building a game is like building a house. The artwork and gameplay are what people see, but the wiring, plumbing, foundation, and delivery systems still have to work.

-

Runlevel Systems helps solo developers and small teams handle the technical pieces behind the scenes so they can keep building instead of getting stuck.

+

Services Built for Teams That Need to Ship

+

We support solo developers, indie studios, startups, gaming communities, and small software teams that need clear technical help without enterprise complexity.

+
+
+ +

Design • Debug • Deploy

+

Need help building a game, website, application, or online service? We help teams plan projects, solve technical problems, and launch finished products.

+ Learn More +
+
+ +

Game Server Hosting

+

Launch and manage multiplayer game servers without the hassle of maintaining your own infrastructure. Perfect for gaming communities, clans, and indie developers.

+ Learn More +
+
+ +

Game Server Panel

+

Our game server management platform makes it easy to deploy, update, monitor, and manage game servers across multiple locations.

+ Learn More +
+
+ +

Developer Workspaces

+

Give your team a private online workspace with project tracking, documentation, source control, collaboration tools, and secure development environments.

+ Learn More +
+
-
+
-

How We Help You Move Forward

-
-
-
- -

Plan The Project

-

Before you build too much, we help you choose a clear path. We can help organize your idea, plan your website, decide what servers you need, set up your workflow, and avoid expensive mistakes early.

-

DESIGNED

-
-
-
-
- -

Fix What Is Broken

-

When your project stops working, we help find the problem. Whether it is code errors, broken builds, server issues, database problems, login trouble, or confusing setup steps, we help get things working again.

-

DEBUGGED

-
-
-
-
- -

Get It Launched

-

When it is time to go live, we help you publish and deploy. That can mean launching a website, preparing for Steam, Google Play, or Apple App Store, setting up a dedicated server, and getting your updates out smoothly.

-

DEPLOYED

-
+
+
+

Design • Debug • Deploy

+

Your On-Demand Development Team

+

Building software, games, websites, and online services can be challenging, especially for small teams and independent developers.

+

Sometimes you need help solving a difficult problem, planning the next stage of development, deploying a release, managing infrastructure, debugging an issue, or simply getting unstuck.

+

Design • Debug • Deploy gives you access to experienced developers, infrastructure specialists, and technical resources when you need them.

+

Think of us as an extension of your team.

+

Whether you need help for a few hours, a few days, or throughout an entire project, we're here to help move your project forward.

+
-
-
- -
-
-

What We Can Help With

-
-
🌐

Game Websites

We can create landing pages, project websites, update pages, documentation, and community portals.

-
🧩

Game Development Help

We can help with broken code, confusing setup steps, project organization, and feature planning.

-
🖥️

Online Game Servers

We can help set up dedicated servers, multiplayer hosting, databases, updates, and backups.

-
🚀

Publishing Help

We can help prepare your project for Steam, Google Play, Apple App Store, or direct download.

-
🏠

Website Hosting

We can host and maintain websites, support portals, documentation, and small web apps.

-
🧯

Project Rescue

If your project is stuck, broken, messy, or abandoned, we can help sort it out and create a recovery plan.

-
💬

Community Tools

We can help connect your website, Discord, support system, updates, and player communication.

-
🔧

Ongoing Support

We can stay involved after launch to help with updates, fixes, server issues, and improvements.

+
    +
  • Project Planning Assistance
  • +
  • Technical Problem Solving
  • +
  • Development Support
  • +
  • Infrastructure Guidance
  • +
  • Deployment Assistance
  • +
  • Hosting & Operations Support
  • +
  • Team Collaboration Tools
  • +
  • Available When You Need Us
  • +
+
+

We don't replace your team. We help strengthen it.

+

For solo developers, we provide access to experience, tools, and resources that would normally require an entire team.

+

For growing teams, we provide additional technical support when workloads increase or specialized expertise is needed.

+

For startups and studios, we help accelerate development without the cost of maintaining additional full-time staff.

-
-
- -
-
-

Who We Help

-
-
🧠

Solo Developers

You have the idea and the motivation. We help with the technical work that is hard to do alone.

-
🤝

Small Teams

You are building together but need someone who understands websites, servers, code, and deployment.

-
🧯

Creators With A Stuck Project

Your project was moving forward, then something broke or became too complicated. We help get it moving again.

+
+

Need an extra set of hands?

+

Whether you're building a game, website, mobile app, online service, server platform, or software product, we're here when you need us.

+ Let's Talk
-
+
-

Our Products

-
-
🛰️

GameServers.World

Hosting, deployment, and server management for online games and communities.

-
🧰

GSP Panel

Server management and automation tools for game hosting and online infrastructure.

-

Runlevel Systems Tools

Future tools, templates, automation, and support systems for creators and small teams.

+

Why Work With Us

+
+
+

Practical Experience

+

Real-world software development and infrastructure experience.

+
+
+

Small Team Friendly

+

Built specifically for indie developers and growing teams.

+
+
+

End-to-End Support

+

From planning and development to deployment and operations.

+
+
+

Flexible Solutions

+

Hosting, consulting, development support, infrastructure, and deployment services.

+
-
-
-
-

Ready To Get Your Project Moving?

-

Whether you need a website, help fixing your game, a server for players, or guidance getting published, Runlevel Systems can help you take the next step.

-

DESIGN • DEBUG • DEPLOY

- +
+
+

Not Sure Which Service Fits Your Project?

+

Tell us what you're building, where you're blocked, and what outcome you want. We'll help you choose the best next step.

+
@@ -411,11 +164,7 @@ "name": "Runlevel Systems", "url": "https://runlevel.systems", "slogan": "Design • Debug • Deploy", - "description": "Technical support services for solo developers and small teams building and launching game projects.", - "sameAs": [ - "https://gameservers.world", - "https://github.com/GameServerPanel/GSP" - ] + "description": "Helping developers turn ideas into reality with planning, debugging, deployment, hosting, and managed workspaces." }
diff --git a/projects.php b/projects.php index e9ad50b..f864c11 100644 --- a/projects.php +++ b/projects.php @@ -1,4 +1,3 @@ - @@ -7,290 +6,132 @@ - What We've Built | Runlevel Systems - - + Projects | Runlevel Systems + + - - - - - - - - - - 'Gameservers World is our managed game server hosting service. We operate Linux-based infrastructure and use our GameServer Panel platform to provision, monitor, and maintain customer environments.', - 'gameserver-panel' => 'GameServer Panel is our commercial hosting platform for game server providers. It centralizes deployment, updates, remote node management, and infrastructure monitoring in a Linux-first workflow.', - 'pureops' => 'PureOps is a business simulation and training platform focused on operational decision-making. Teams work through realistic scenarios to practice planning, execution, and performance management.', - 'neverwards' => 'Neverwards is a multiplayer online game with cooperative progression and a persistent shared world. It combines long-term character growth with live service infrastructure.', - 'roadkill' => 'Roadkill is a multiplayer vehicular combat title built around competitive match play, team objectives, and responsive online networking.', - 'castle-walls' => 'Castle Walls is a multiplayer strategy project centered on base defense, coordinated team play, and persistent online sessions.', - 'mystical-islands' => 'Mystical Islands is a multiplayer fantasy adventure game featuring cooperative exploration, progression systems, and a persistent world model.', - 'space5x' => 'Space5X is a multiplayer sci-fi strategy game with long-session economic planning, cooperative systems, and persistent universe progression.', - 'retro-space-blaster' => 'Retro Space Blaster is an arcade-style mobile action game designed for cross-platform play, responsive controls, and short competitive sessions.', - 'be-very-very-quiet' => 'Be Very Very Quiet is a mobile zombie survival game focused on risk management and extraction. Players balance combat decisions with stealth and survivor coordination under pressure.', - ]; - - foreach ($projectContentOverrides as $slug => $description) { - if (!isset($projectsBySlug[$slug])) { - continue; - } - $projectsBySlug[$slug]['shortDescription'] = $description; - $projectsBySlug[$slug]['fullDescription'] = $description; - } - - $sections = [ - [ - 'title' => 'Platforms & Products', - 'kicker' => 'Operational Software', - 'description' => 'Customer-facing platforms we actively operate, support, and improve in live production environments.', - 'slugs' => ['gameservers-world', 'gameserver-panel'], - ], - [ - 'title' => 'Simulation & Training', - 'kicker' => 'Interactive Operations Learning', - 'description' => 'Simulation software designed to train planning, execution, and decision-making in realistic operational contexts.', - 'slugs' => ['pureops'], - ], - [ - 'title' => 'Games in Active Development', - 'kicker' => 'Online Interactive Projects', - 'description' => 'Live development initiatives across cooperative, competitive, and persistent online game experiences.', - 'slugs' => ['neverwards', 'roadkill', 'castle-walls', 'mystical-islands', 'space5x'], - ], - [ - 'title' => 'Mobile Interactive Titles', - 'kicker' => 'Cross-Platform Releases', - 'description' => 'Mobile games focused on clear controls, replayability, and reliable performance across device classes.', - 'slugs' => ['retro-space-blaster', 'be-very-very-quiet'], - ], - ]; - - // Helper to safely output HTML attributes - function h($value) { - return htmlspecialchars((string)$value, ENT_QUOTES, 'UTF-8'); - } - - // Render a single platform row (list item) - function renderProjectRow($project) { - $slug = h($project['slug']); - $title = h($project['title'] ?? $project['name'] ?? $slug); - $short = h($project['shortDescription'] ?? $project['description'] ?? ''); - - // Per-project links with sensible defaults - $defaultRead = 'https://github.com/World-Domination-Software/Projects/wiki'; - $readUrl = !empty($project['readMoreUrl']) - ? $project['readMoreUrl'] - : (!empty($project['githubUrl']) ? $project['githubUrl'] : (!empty($project['wikiUrl']) ? $project['wikiUrl'] : $defaultRead)); - - echo '
  • '; - echo '
    '; - echo '
    ' . $title . '
    '; - echo '
    ' . $short . '
    '; - echo '
    '; - echo ' Learn More'; - echo '
    '; - echo '
    '; - echo '
  • '; - } - ?> - - -
    -
    -
    -
    -
    -
    -

    - What We've Built highlights completed work, active products, and live development initiatives at RunLevel Systems. -

    -

    - The portfolio includes production platforms like Gameservers World and GameServer Panel, operational simulation software, and online game projects across PC and mobile. -

    -

    - Portfolio resources: -
    - • Technical Documentation
    - • Ideas and Discussions
    - • Issues and Support -

    -
    -
    -
    + [ + [ + 'title' => 'Neverwards', + 'description' => 'A multiplayer game project focused on persistent progression and cooperative gameplay systems.', + 'status' => 'Active Development', + 'link' => 'https://store.steampowered.com/app/2096070/Neverwards/', + ], + [ + 'title' => 'Roadkill', + 'description' => 'A competitive multiplayer title built around vehicular combat and online match experiences.', + 'status' => 'Released / Ongoing Support', + 'link' => 'https://store.steampowered.com/app/1376150/Roadkill/', + ], + [ + 'title' => 'Current Game Projects', + 'description' => 'A portfolio stream of current and upcoming game concepts under active iteration.', + 'status' => 'In Progress', + 'link' => 'https://github.com/World-Domination-Software/Projects/discussions', + ], + ], + 'Software' => [ + [ + 'title' => 'Game Server Panel', + 'description' => 'A platform for deploying, monitoring, and managing multiplayer game servers across providers and locations.', + 'status' => 'Production Platform', + 'link' => 'https://github.com/GameServerPanel/GSP', + ], + [ + 'title' => 'GameServers.World', + 'description' => 'Managed game server hosting offering deployment workflows, server operations support, and customer management.', + 'status' => 'Live Service', + 'link' => 'https://gameservers.world', + ], + [ + 'title' => 'Future Products', + 'description' => 'Upcoming software products focused on developer workflows, automation, and online operations.', + 'status' => 'Planning', + 'link' => 'https://github.com/World-Domination-Software/Projects/wiki', + ], + ], + 'Infrastructure' => [ + [ + 'title' => 'Game Infrastructure Services', + 'description' => 'Infrastructure work for hosting, deployment, update delivery, and uptime support for game services.', + 'status' => 'Active', + 'link' => 'https://gameservers.world', + ], + [ + 'title' => 'Project Infrastructure Services', + 'description' => 'Technical infrastructure support for websites, apps, APIs, and cloud-based software workflows.', + 'status' => 'Active', + 'link' => '/contact.php', + ], + ], + 'Open Source Projects' => [ + [ + 'title' => 'GameServerPanel / GSP', + 'description' => 'Open source game server management codebase used as the foundation for deployment and hosting operations.', + 'status' => 'Open Source', + 'link' => 'https://github.com/GameServerPanel/GSP', + ], + [ + 'title' => 'Runlevel Systems GitHub Projects', + 'description' => 'Public repositories, experiments, and tools that support our software and infrastructure ecosystem.', + 'status' => 'Ongoing', + 'link' => 'https://github.com/World-Domination-Software', + ], + ], + ]; + ?> + + + + +
    +
    +
    +

    Portfolio

    +

    Projects

    +

    Completed work, active builds, platforms, and technologies we've created.

    - - -
    -
    -
    -
    -

    -

    -

    -
    +
    + +
    +
    +

    This page highlights our portfolio and experience. It includes production platforms, active development work, and open source projects across games, software, and infrastructure.

    + + $projects): ?> +
    +

    +
    + + + +
    -
    -
    -
    -
    -
      - - - - - -
    -
    -
    -
    -
    - - - - - - - - - -
    -
    +
    + + + +
    - - + - -