Shop
@import url(‚https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700;800&display=swap‘);
/* ANTI-RAND-FORCE (Killt die weißen Ränder vom Theme) */
.elementor-section, .elementor-container, .e-con, .e-con-inner, .elementor-widget-wrap {
padding: 0 !important;
margin: 0 !important;
max-width: 100% !important;
width: 100% !important;
}
:root {
–bg-dark: #07090d;
–neon-cyan: #00f0ff;
–neon-pink: #ff007f;
–card-bg: rgba(15, 20, 28, 0.75);
–text-main: #ffffff;
–text-muted: #8c9baf;
–border-color: rgba(0, 240, 255, 0.15);
}
body, html {
margin: 0;
padding: 0;
background-color: var(–bg-dark);
font-family: ‚Rajdhani‘, sans-serif;
scroll-behavior: smooth;
}
.aero-wrapper {
background-color: var(–bg-dark);
color: var(–text-main);
width: 100%;
box-sizing: border-box;
overflow-x: hidden;
}
/* — NAVIGATION — */
.aero-nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 50px;
background: rgba(7, 9, 13, 0.85);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border-bottom: 1px solid rgba(255,255,255,0.05);
position: sticky;
top: 0;
z-index: 1000;
}
.aero-logo {
font-size: 1.8rem;
font-weight: 800;
letter-spacing: 3px;
color: #fff;
text-decoration: none;
text-transform: uppercase;
}
.aero-logo span {
color: var(–neon-cyan);
text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
}
.aero-menu {
display: flex;
gap: 35px;
list-style: none;
margin: 0;
padding: 0;
}
.aero-menu a {
color: var(–text-muted);
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
letter-spacing: 1px;
text-transform: uppercase;
transition: all 0.3s ease;
position: relative;
}
.aero-menu a:hover, .aero-menu a.active {
color: var(–text-main);
}
.aero-menu a:hover::after, .aero-menu a.active::after {
content: “;
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background: var(–neon-cyan);
box-shadow: 0 0 10px var(–neon-cyan);
}
/* — SHOP HERO — */
.aero-shop-hero {
padding: 80px 20px 40px;
text-align: center;
background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.08) 0%, transparent 60%);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.aero-shop-title {
font-size: 4rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
margin: 0 0 15px 0;
}
.aero-shop-title span {
color: var(–neon-cyan);
text-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}
.aero-shop-subtitle {
font-size: 1.25rem;
color: var(–text-muted);
font-weight: 500;
max-width: 600px;
margin: 0 auto 40px;
}
/* — FILTER BAR (Optisch) — */
.aero-filter-bar {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 50px;
flex-wrap: wrap;
}
.aero-filter-btn {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.1);
color: var(–text-muted);
padding: 8px 24px;
border-radius: 30px;
font-family: ‚Rajdhani‘, sans-serif;
font-weight: 700;
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
transition: all 0.3s ease;
}
.aero-filter-btn.active, .aero-filter-btn:hover {
background: rgba(0, 240, 255, 0.1);
border-color: var(–neon-cyan);
color: var(–neon-cyan);
box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}
/* — SHOP GRID — */
.aero-shop-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px 80px;
}
.aero-grid-v2 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
}
.aero-glass-card {
background: var(–card-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.05);
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
overflow: hidden;
transition: all 0.4s ease;
display: flex;
flex-direction: column;
position: relative;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.aero-glass-card:hover {
transform: translateY(-10px);
border-color: var(–neon-cyan);
box-shadow: 0 15px 40px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.05);
}
.aero-glass-card.pink-glow:hover {
border-color: var(–neon-pink);
box-shadow: 0 15px 40px rgba(255, 0, 127, 0.2), inset 0 0 20px rgba(255, 0, 127, 0.05);
}
.aero-card-image-wrapper {
width: 100%;
height: 300px;
overflow: hidden;
background: #000;
position: relative;
}
.aero-card-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
opacity: 0.9;
}
.aero-glass-card:hover .aero-card-image-wrapper img {
transform: scale(1.08);
opacity: 1;
}
/* Status Badge */
.aero-stock-status {
position: absolute;
top: 15px;
right: 15px;
background: rgba(0,0,0,0.7);
backdrop-filter: blur(5px);
border: 1px solid rgba(255,255,255,0.1);
padding: 6px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 700;
color: #fff;
display: flex;
align-items: center;
gap: 8px;
z-index: 10;
}
.aero-stock-dot {
width: 8px;
height: 8px;
background-color: #00ff66;
border-radius: 50%;
box-shadow: 0 0 10px #00ff66;
animation: blink 2s infinite;
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0.4; }
100% { opacity: 1; }
}
.aero-card-content {
padding: 30px;
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.aero-card-title {
font-size: 2.2rem;
font-weight: 800;
color: var(–neon-cyan);
margin: 0 0 15px 0;
text-transform: uppercase;
letter-spacing: 1px;
}
.pink-glow .aero-card-title {
color: var(–neon-pink);
}
.aero-tech-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 20px;
}
.aero-tag {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.1);
color: var(–text-main);
font-size: 0.8rem;
font-weight: 600;
padding: 4px 10px;
border-radius: 4px;
letter-spacing: 1px;
}
.aero-specs-list {
list-style: none;
padding: 0;
margin: 0 0 20px 0;
border-top: 1px solid rgba(255,255,255,0.05);
border-bottom: 1px solid rgba(255,255,255,0.05);
}
.aero-specs-list li {
padding: 8px 0;
font-size: 0.95rem;
color: var(–text-muted);
font-weight: 500;
display: flex;
justify-content: space-between;
border-bottom: 1px solid rgba(255,255,255,0.02);
}
.aero-specs-list li:last-child {
border-bottom: none;
}
.aero-specs-list li span {
color: #fff;
font-weight: 700;
}
.aero-price-tag {
font-size: 1.8rem;
font-weight: 800;
color: var(–neon-cyan);
margin: 15px 0 2px 0;
}
.pink-glow .aero-price-tag {
color: var(–neon-pink);
}
.aero-legal-hint {
font-size: 0.8rem;
color: var(–text-muted);
margin-bottom: 20px;
}
.aero-action-btn {
display: block;
width: 100%;
text-align: center;
background: rgba(0, 240, 255, 0.05);
color: var(–neon-cyan);
border: 1px solid var(–neon-cyan);
padding: 14px 0;
font-weight: 700;
font-size: 1.1rem;
text-transform: uppercase;
letter-spacing: 2px;
border-radius: 4px;
text-decoration: none;
transition: all 0.3s ease;
}
.aero-glass-card:hover .aero-action-btn {
background: var(–neon-cyan);
color: #000;
box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}
.pink-glow .aero-action-btn {
color: var(–neon-pink);
border-color: var(–neon-pink);
background: rgba(255, 0, 127, 0.05);
}
.pink-glow:hover .aero-action-btn {
background: var(–neon-pink);
color: #fff;
box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}
/* — TRUST SECTION — */
.aero-trust-section {
background: rgba(255,255,255,0.02);
border-top: 1px solid rgba(255,255,255,0.05);
border-bottom: 1px solid rgba(255,255,255,0.05);
padding: 40px 20px;
margin-bottom: 40px;
}
.aero-trust-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
text-align: center;
}
.aero-trust-item h4 {
color: var(–text-main);
font-size: 1.2rem;
font-weight: 700;
margin: 0 0 5px 0;
text-transform: uppercase;
}
.aero-trust-item p {
color: var(–text-muted);
font-size: 0.95rem;
margin: 0;
}
.aero-trust-icon {
color: var(–neon-cyan);
font-size: 2rem;
margin-bottom: 10px;
}
/* — FOOTER — */
.aero-footer {
padding: 50px 20px;
text-align: center;
color: var(–text-muted);
font-size: 1rem;
font-weight: 500;
}
.aero-footer-links {
margin-bottom: 20px;
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}
.aero-footer-links a {
color: var(–text-muted);
text-decoration: none;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 1px;
transition: color 0.3s ease;
}
.aero-footer-links a:hover {
color: var(–neon-cyan);
}
SYSTEM KATALOG
Maximale Performance, ehrliche Handarbeit. Wähle dein Setup und dominiere das Game.
Alle Systeme
1080p / WQHD
4K Enthusiast
Creator / Office
Auf Lager
DER WORKFLOW
OFFICE & CREATOR
SILENT BUILD
- CPU AMD Ryzen 5
- GPU Radeon Graphics
- RAM 16GB DDR5
- SSD 1TB NVMe M.2
799,00 €
inkl. MwSt. zzgl. Versand | Lieferzeit ca. 3–5 Werktage
Jetzt Konfigurieren
Auf Lager

DER VECTOR
FULL-HD / WQHD
BESTSELLER
- CPU AMD Ryzen 5 7500F
- GPU NVIDIA RTX 5060
- RAM 32GB DDR5 6000MHz
- SSD 1TB Gen4 NVMe
1.299,00 €
inkl. MwSt. zzgl. Versand | Lieferzeit ca. 3–5 Werktage
Jetzt Konfigurieren
Auf Lager

DER INFERNO
WQHD DOMINANZ
HIGH-END
- CPU AMD Ryzen 7 7800X3D
- GPU NVIDIA RTX 5070 Ti
- RAM 32GB DDR5 RGB
- SSD 2TB Gen4 NVMe
1.999,00 €
inkl. MwSt. zzgl. Versand | Lieferzeit ca. 3–5 Werktage
Jetzt Konfigurieren
Auf Lager

DER ZENITH
4K ENTHUSIAST
LIQUID COOLED
- CPU AMD Ryzen 9 / i9
- GPU NVIDIA RTX 5090
- RAM 64GB DDR5 High-Speed
- SSD 4TB Gen4 NVMe
3.299,00 €
inkl. MwSt. zzgl. Versand | Lieferzeit ca. 3–5 Werktage
Jetzt Konfigurieren
Plug & Play
Windows installiert, Updates & Treiber aktuell, XMP aktiviert.
🛠️
Manufaktur-Qualität
Perfektes Kabelmanagement und intensive Stresstests vor Versand.
🛡️
Sicherer Versand
Spezielle Innenpolsterung schützt die Hardware auf dem Transportweg.
Alle 4 Ergebnisse werden angezeigt
-
In den Warenkorb
Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG.
zzgl. Versandkosten
-
In den Warenkorb
Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG.
zzgl. Versandkosten
-
In den Warenkorb
Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG.
zzgl. Versandkosten
-
In den Warenkorb
Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG.
zzgl. Versandkosten