“`html
Pixel Starships Codes Not Expired (Savy Soda)
(Updated on July 9, 2025)
Pixel Starships™
Design. Build. Customize. Conquer the Galaxy.
Pixel Starships™ is a critically acclaimed indie sci-fi strategy game that immerses players in an intergalactic adventure where they design, build, and customize their very own dream spaceship.
About Pixel Starships™
Dive into the expansive universe of Pixel Starships™, a unique indie sci-fi strategy game that combines deep customization with thrilling tactical combat. From the ground up, you’ll craft every aspect of your starship, from the layout of its rooms to the weaponry it carries.
Embark on an epic intergalactic adventure, encountering diverse alien races, discovering new technologies, and engaging in strategic battles that will test your wits and the strength of your fleet. Will you be a benevolent explorer, a cunning trader, or a formidable pirate?

Key Features
Unparalleled Ship Customization
Design your dream spaceship room by room. Choose from a vast array of modules, weapons, engines, and more to create a truly unique vessel tailored to your playstyle.
Strategic Combat
Engage in real-time tactical battles where every decision matters. Target enemy systems, deploy crew, and manage resources to outmaneuver your opponents.
Explore a Vast Galaxy
Journey through countless star systems, discover new planets, encounter alien factions, and uncover the mysteries of the universe.
Crew Management
Recruit and train a diverse crew, each with unique skills and abilities. Assign them to specific stations to maximize your ship’s efficiency in combat and exploration.
Resource Management
Gather resources, research new technologies, and upgrade your ship and crew to stay ahead of the curve in a constantly evolving galaxy.
Persistent Universe
Your actions have consequences in a dynamic, persistent galaxy. Form alliances, declare war, and leave your mark on the cosmos.
Download Pixel Starships™ Today!
Join millions of players worldwide and start building your legacy among the stars.
Also available on PC and other platforms.
Join Our Community
Connect with fellow captains, share strategies, and get the latest news and updates.
/* Basic Reset & Body Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Arial’, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}
.container {
width: 90%;
max-width: 1200px;
margin: auto;
overflow: hidden;
}
/* Header */
header {
background: #2c3e50;
color: #fff;
padding: 1rem 0;
border-bottom: 3px solid #e74c3c;
}
header h1 {
float: left;
margin: 0;
padding: 0;
font-size: 1.8rem;
}
header nav {
float: right;
margin-top: 10px;
}
header ul {
list-style: none;
}
header ul li {
display: inline;
margin-left: 20px;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 0.9rem;
transition: color 0.3s ease;
}
header a:hover {
color: #e74c3c;
}
/* Hero Section */
#hero {
background: url(‘images/hero-bg.jpg’) no-repeat center center/cover; /* Replace with your actual hero image */
color: #fff;
text-align: center;
padding: 100px 0;
position: relative;
}
#hero::before {
content: ”;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
}
.hero-content {
position: relative;
z-index: 1;
}
#hero h2 {
font-size: 3rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
#hero p {
font-size: 1.2rem;
margin-bottom: 30px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
/* Buttons */
.button-primary {
display: inline-block;
background: #e74c3c;
color: #fff;
padding: 12px 25px;
text-decoration: none;
border-radius: 5px;
font-size: 1.1rem;
transition: background 0.3s ease;
}
.button-primary:hover {
background: #c0392b;
}
.button-secondary {
display: inline-block;
background: #34495e;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
transition: background 0.3s ease;
}
.button-secondary:hover {
background: #2c3e50;
}
/* Sections */
.section-padded {
padding: 60px 0;
}
.section-padded h2 {
text-align: center;
margin-bottom: 40px;
font-size: 2.2rem;
color: #2c3e50;
}
.bg-light {
background-color: #ecf0f1;
}
.bg-dark {
background-color: #2c3e50;
}
.text-white {
color: #fff;
}
/* About Section */
.about-grid {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
align-items: center;
}
@media (min-width: 768px) {
.about-grid {
grid-template-columns: 1fr 1fr;
}
}
.about-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Features Section */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.feature-item {
background: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
text-align: center;
}
.feature-item h3 {
color: #e74c3c;
margin-bottom: 15px;
font-size: 1.5rem;
}
.feature-item p {
font-size: 0.95rem;
color: #555;
}
/* Screenshots Section */
.screenshot-gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.screenshot-gallery img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.screenshot-gallery img:hover {
transform: scale(1.03);
}
/* Download Section */
.download-buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-top: 30px;
}
.download-buttons a {
display: block; /* Ensures the image takes full link width */
}
.download-buttons img {
height: 50px; /* Adjust as needed */
transition: transform 0.2s ease;
}
.download-buttons img:hover {
transform: translateY(-5px);
}
.available-on {
margin-top: 20px;
font-size: 0.9rem;
opacity: 0.8;
}
/* Community Section */
.social-links {
display: flex;
justify-content: center;
gap: 25px;
margin-top: 30px;
}
.social-icon img {
width: 45px;
height: 45px;
transition: transform 0.2s ease;
}
.social-icon img:hover {
transform: scale(1.1);
}
/* Footer */
footer {
background: #2c3e50;
color: #fff;
text-align: center;
padding: 20px 0;
font-size: 0.85rem;
}
footer a {
color: #fff;
text-decoration: none;
margin: 0 10px;
transition: color 0.3s ease;
}
footer a:hover {
color: #e74c3c;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
header h1, header nav {
float: none;
text-align: center;
}
header nav ul li {
margin: 0 10px;
}
#hero h2 {
font-size: 2.2rem;
}
#hero p {
font-size: 1rem;
}
.section-padded {
padding: 40px 0;
}
.section-padded h2 {
font-size: 1.8rem;
margin-bottom: 30px;
}
.features-grid, .screenshot-gallery {
grid-template-columns: 1fr;
}
.download-buttons {
flex-direction: column;
align-items: center;
}
}
“`
CODE | REWARDS |
---|---|
NEWBIE | 40 Starbux |
SNOWBALL |
570 Starbux, 970 Credits |
PSSBANG | 290 Starbux |
REPRESENT | 540 Starbux, 1920 Credits |
PSSBOBBLE | 70 Starbux |
ARLSSSHITEDSO | 8790 Credits, 3120 Starbux |
SOPILXSSSEDET | 5670 Starbux |
SDRLHSEEI | 30 Credits, 410 Starbux |
AISIXSPRPOC | 3180 Credits, 9430 Starbux |
IHCRSDAP | 10 Starbux |
TCSHRSL | 40 Credits, 10 Starbux |
PRSESIH | 80 Credits, 590 Starbux |
XRILEEAS | 7480 Starbux, 630 Credits |
To redeem Pixel Starships™ codes: Launch game, complete tutorial, open settings, click “Redeem Code,” enter code, and confirm.