Wylde Audio Wrathmaker Pale Moon Ebony with Black Burst Electric Guitar
Original price was: $4,299.00.$3,699.00Current price is: $3,699.00.
FAST
Delivery
EASY
Returns
IN HOUSE
Repairs
1 in stock



Check AU Shipping Cost
Pick-up from store - FREE
Free pickup from our Melbourne Store at 4 Drake Boulevard, Altona VIC 3018. Your order will typically be ready by the next business day. We recommend calling us on (03) 8360 7799 beforehand to check it's ready for collection.
International Shipping
Please proceed to checkout to see international rates and avalability.
:root {
/* Industrial metal palette */
--void-black: #0a0a0a;
--carbon-black: #1a1a1a;
--steel-gray: #2a2a2a;
--chrome-silver: #c0c0c0;
--platinum: #e5e5e5;
--blood-red: #cc0000;
--crimson-glow: #ff1a1a;
--gold-accent: #d4af37;
/* Typography */
--font-display: 'Barlow Condensed', sans-serif;
--font-body: 'Rajdhani', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-body);
background: var(--void-black);
color: var(--platinum);
line-height: 1.6;
overflow-x: hidden;
}
/* Aggressive header with metallic texture */
.product-header {
background: linear-gradient(135deg, var(--void-black) 0%, var(--carbon-black) 50%, var(--steel-gray) 100%);
padding: 80px 20px;
position: relative;
overflow: hidden;
border-bottom: 3px solid var(--blood-red);
}
.product-header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
repeating-linear-gradient(
90deg,
transparent,
transparent 2px,
rgba(255,255,255,0.02) 2px,
rgba(255,255,255,0.02) 4px
);
pointer-events: none;
}
.product-header::after {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(204,0,0,0.1) 0%, transparent 70%);
border-radius: 50%;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 1;
}
.content-wrapper {
max-width: 1160px;
margin: 0 auto;
}
.brand-name {
font-family: var(--font-display);
font-size: 1.2rem;
font-weight: 700;
letter-spacing: 3px;
color: var(--chrome-silver);
text-transform: uppercase;
margin-bottom: 10px;
animation: slideInLeft 0.6s ease-out;
}
h1 {
font-family: var(--font-display);
font-size: clamp(3rem, 8vw, 5.5rem);
font-weight: 800;
color: white;
text-transform: uppercase;
letter-spacing: 2px;
line-height: 0.9;
margin-bottom: 20px;
text-shadow:
0 0 20px rgba(204,0,0,0.5),
0 4px 8px rgba(0,0,0,0.8);
animation: slideInLeft 0.6s ease-out 0.1s both;
}
.tagline {
font-family: var(--font-body);
font-size: clamp(1.1rem, 2vw, 1.4rem);
color: var(--chrome-silver);
font-weight: 500;
letter-spacing: 1px;
margin-bottom: 30px;
animation: slideInLeft 0.6s ease-out 0.2s both;
}
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
/* AI Quick Answer Box - Industrial style */
.quick-answer {
background: linear-gradient(135deg, var(--carbon-black) 0%, var(--steel-gray) 100%);
border-left: 5px solid var(--blood-red);
padding: 35px 40px;
margin: -40px 0 60px;
position: relative;
box-shadow:
0 10px 40px rgba(0,0,0,0.5),
inset 0 1px 0 rgba(255,255,255,0.1);
animation: slideUp 0.8s ease-out 0.4s both;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.quick-answer::before {
content: 'EXPERT INTEL';
position: absolute;
top: -12px;
left: 30px;
background: var(--blood-red);
color: white;
padding: 4px 16px;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
font-family: var(--font-display);
}
.quick-answer p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--platinum);
font-weight: 500;
}
.quick-answer strong {
color: white;
font-weight: 700;
}
/* EEAT Metal Expertise Banner */
.expertise-banner {
background: var(--blood-red);
padding: 20px 30px;
margin-bottom: 60px;
position: relative;
overflow: hidden;
}
.expertise-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: repeating-linear-gradient(
45deg,
transparent,
transparent 10px,
rgba(0,0,0,0.1) 10px,
rgba(0,0,0,0.1) 20px
);
}
.expertise-content {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
position: relative;
z-index: 1;
}
.expertise-icon {
font-size: 3rem;
font-weight: 800;
font-family: var(--font-display);
color: white;
}
.expertise-text {
flex: 1;
min-width: 250px;
}
.expertise-text strong {
display: block;
font-size: 1.3rem;
font-weight: 700;
color: white;
margin-bottom: 5px;
font-family: var(--font-display);
letter-spacing: 1px;
text-transform: uppercase;
}
.expertise-text span {
color: rgba(255,255,255,0.9);
font-size: 1rem;
}
/* Product Grid */
.product-grid {
display: grid;
grid-template-columns: 45% 1fr;
gap: 50px;
margin-bottom: 80px;
max-width: 100%;
}
.product-image-section {
position: relative;
}
.product-image {
width: 100%;
height: auto;
border: 1px solid rgba(255,255,255,0.1);
background: var(--carbon-black);
padding: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.product-image img {
width: 100%;
height: auto;
display: block;
}
.item-number {
margin-top: 15px;
font-size: 0.9rem;
color: var(--chrome-silver);
font-weight: 600;
}
.product-info-section h2 {
font-family: var(--font-display);
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 800;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 25px;
position: relative;
padding-bottom: 15px;
}
.product-info-section h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background: var(--blood-red);
}
.description {
font-size: 1.1rem;
line-height: 1.8;
color: var(--chrome-silver);
margin-bottom: 30px;
}
.key-features {
background: var(--carbon-black);
padding: 30px;
border-left: 3px solid var(--blood-red);
margin-bottom: 30px;
}
.key-features h3 {
font-family: var(--font-display);
font-size: 1.3rem;
font-weight: 700;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.feature {
display: flex;
align-items: flex-start;
gap: 12px;
}
.feature-icon {
width: 8px;
height: 8px;
background: var(--blood-red);
margin-top: 8px;
flex-shrink: 0;
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.feature-text {
flex: 1;
}
.feature-label {
font-size: 0.85rem;
color: var(--chrome-silver);
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 600;
margin-bottom: 3px;
}
.feature-value {
font-size: 1.05rem;
color: white;
font-weight: 600;
}
/* CTA Buttons */
.cta-section {
display: flex;
gap: 20px;
flex-wrap: wrap;
margin-bottom: 40px;
}
.btn {
display: inline-block;
padding: 18px 40px;
font-family: var(--font-display);
font-size: 1.1rem;
font-weight: 700;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.btn-primary {
background: var(--blood-red);
color: white;
border: 2px solid var(--blood-red);
}
.btn-primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.btn-primary:hover::before {
left: 100%;
}
.btn-primary:hover {
background: var(--crimson-glow);
border-color: var(--crimson-glow);
box-shadow: 0 0 20px rgba(204,0,0,0.5);
}
.btn-secondary {
background: transparent;
color: white;
border: 2px solid var(--chrome-silver);
}
.btn-secondary:hover {
background: white;
color: var(--void-black);
border-color: white;
}
/* Specifications Table */
.specs-section {
margin-bottom: 80px;
}
.specs-section h2 {
font-family: var(--font-display);
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 800;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 30px;
position: relative;
padding-bottom: 15px;
}
.specs-section h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background: var(--blood-red);
}
.specs-grid {
display: grid;
gap: 30px;
}
.spec-category {
background: var(--carbon-black);
border: 1px solid rgba(255,255,255,0.1);
padding: 30px;
}
.spec-category h3 {
font-family: var(--font-display);
font-size: 1.4rem;
font-weight: 700;
color: var(--blood-red);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.spec-table {
display: grid;
gap: 15px;
}
.spec-row {
display: grid;
grid-template-columns: 200px 1fr;
gap: 20px;
padding: 12px 0;
border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spec-row:last-child {
border-bottom: none;
}
.spec-label {
font-weight: 600;
color: var(--chrome-silver);
font-size: 0.95rem;
}
.spec-value {
color: white;
font-weight: 600;
font-size: 1rem;
}
/* Resources Section */
.resources-section {
background: linear-gradient(135deg, var(--blood-red) 0%, #990000 100%);
padding: 60px 40px;
margin: 60px 0;
position: relative;
overflow: hidden;
}
.resources-section::before {
content: '';
position: absolute;
top: -50%;
left: -10%;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
border-radius: 50%;
}
.resources-content {
position: relative;
z-index: 1;
max-width: 1000px;
margin: 0 auto;
text-align: center;
}
.resources-section h2 {
font-family: var(--font-display);
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 800;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
}
.resources-section p {
font-size: 1.2rem;
color: rgba(255,255,255,0.95);
margin-bottom: 30px;
line-height: 1.7;
}
.resources-link {
display: inline-block;
background: white;
color: var(--blood-red);
padding: 18px 40px;
font-family: var(--font-display);
font-size: 1.1rem;
font-weight: 700;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s;
}
.resources-link:hover {
background: var(--void-black);
color: white;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
/* FAQ Section */
.faq-section {
margin-bottom: 80px;
}
.faq-section h2 {
font-family: var(--font-display);
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 800;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 30px;
position: relative;
padding-bottom: 15px;
}
.faq-section h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background: var(--blood-red);
}
.faq-list {
display: grid;
gap: 20px;
}
.faq-item {
background: var(--carbon-black);
border-left: 3px solid var(--blood-red);
padding: 30px;
transition: all 0.3s;
}
.faq-item:hover {
background: var(--steel-gray);
box-shadow: 0 5px 20px rgba(204,0,0,0.2);
}
.faq-question {
font-family: var(--font-display);
font-size: 1.3rem;
font-weight: 700;
color: white;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.faq-answer {
color: var(--chrome-silver);
line-height: 1.8;
font-size: 1.05rem;
}
/* Final CTA */
.final-cta {
background: linear-gradient(135deg, var(--void-black) 0%, var(--steel-gray) 100%);
border: 2px solid var(--blood-red);
padding: 60px 40px;
text-align: center;
margin: 80px 0 0;
max-width: 1160px;
margin-left: auto;
margin-right: auto;
}
.final-cta h2 {
font-family: var(--font-display);
font-size: clamp(2.5rem, 5vw, 3.5rem);
font-weight: 800;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
}
.final-cta p {
font-size: 1.2rem;
color: var(--chrome-silver);
margin-bottom: 30px;
}
/* Mobile Responsive */
@media (max-width: 968px) {
.container {
padding: 0 15px;
}
.content-wrapper {
max-width: 100%;
}
.product-header {
padding: 50px 20px;
}
h1 {
font-size: 3rem;
}
.quick-answer {
padding: 30px 25px;
margin: -30px 0 40px;
}
.product-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.expertise-content {
flex-direction: column;
text-align: center;
}
.features-grid {
grid-template-columns: 1fr;
}
.spec-row {
grid-template-columns: 1fr;
gap: 5px;
}
.spec-label {
font-size: 0.85rem;
}
.resources-section {
padding: 40px 25px;
}
.cta-section {
flex-direction: column;
}
.btn {
width: 100%;
text-align: center;
}
.final-cta {
padding: 40px 25px;
}
}
Wrathmaker
Weapon of Mass Distortion - Zakk Wylde Signature Series
The Wylde Audio Wrathmaker is a professional metal guitar built for brutal tone and relentless performance. Designed with Zakk Wylde's warrior spirit, this set-neck guitar features EMG 81/85 active pickups delivering explosive attack and surgical precision for modern metal. The solid mahogany body with pale moon ebony top provides rich resonance and crushing sustain, while the 3-piece maple neck with ebony fingerboard offers ultra-smooth playability across 22 extra-jumbo frets. TonePros locking hardware ensures tuning stability during aggressive playing. Scale length: 24.625 inches. Ideal for drop tuning (our metal guitar setup specialists provide expert intonation and action optimization). At Angkor Music Melbourne, our 15+ years metal guitar expertise ensures proper setup for maximum performance. Located 4-6 Drake Boulevard, Altona VIC 3018. Call (03) 8360 7799 for expert metal guitar advice or shop online with Australia-wide delivery.

Sonic Warfare
When it's time to bring the thunder, the Wylde Audio Wrathmaker answers the call. Forged in the fires of Zakk Wylde's relentless tone and warrior spirit, this guitar is a declaration of sonic warfare — brutal, bold, and uncompromising.
Built to dominate any stage or studio, the Wrathmaker is more than an instrument — it's a weapon of mass distortion. With its sharp, commanding lines and unmistakable Wylde Audio design, the Wrathmaker makes a bold visual statement. You don't just play it — you wield it.
Battle-Ready Features
Expert metal guitar setup included. Professional intonation, action optimization, and pickup height adjustment for maximum performance.
Complete Specifications
Neck
Body
Electronics
Accessories
Master Drop Tuning Setup
Maximize the Wrathmaker's crushing low-end potential with our comprehensive drop tuning setup guide. Learn professional techniques for optimal intonation, string gauge selection, and action adjustment for brutal metal tone.
Frequently Asked Questions
Unleash the Wrathmaker
Experience Zakk Wylde's brutal tone and warrior spirit. Expert metal guitar setup included.
Angkor Music Melbourne | 4-6 Drake Boulevard, Altona VIC 3018 | Metal Guitar Specialists Since 2010
Additional information
| Weight | 0.0000 kg |
|---|---|
| type | Electric Guitar |
| String Configuration | 6 String |
| Body Type | Solid-body |
| Dexterity | Right-Handed |







