/* iQuick Technical Parts Template Styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.iquick-container {
max-width: 1200px;
margin: 0 auto;
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, sans-serif;
line-height: 1.6;
color: #333;
}
.iquick-brand {
background: linear-gradient(135deg, #1F3A93 0%, #0079DF 100%);
color: white;
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
display: inline-block;
margin-bottom: 15px;
}
.product-header {
text-align: center;
padding: 20px 0;
border-bottom: 2px solid #f0f0f0;
margin-bottom: 30px;
}
.product-title {
font-size: clamp(24px, 4vw, 32px);
font-weight: 700;
color: #1F3A93;
margin-bottom: 10px;
}
.price-container {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin: 15px 0;
}
.current-price {
font-size: 28px;
font-weight: 700;
color: #e74c3c;
}
.sku-info {
background: #f8f9fa;
padding: 10px 15px;
border-radius: 8px;
font-size: 14px;
color: #666;
margin: 10px 0;
}
.availability {
background: linear-gradient(135deg, #27ae60, #2ecc71);
color: white;
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
display: inline-block;
margin: 10px 0;
}
.professional-grade {
background: linear-gradient(135deg, #8e44ad, #9b59b6);
color: white;
padding: 10px 20px;
border-radius: 25px;
text-align: center;
margin: 20px 0;
font-weight: 600;
}
.features-section {
background: linear-gradient(135deg, #e74c3c, #c0392b);
color: white;
padding: 30px 20px;
margin: 30px 0;
border-radius: 12px;
}
.features-title {
font-size: 24px;
font-weight: 700;
text-align: center;
margin-bottom: 25px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}
.feature-card {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 10px;
text-align: center;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.feature-icon {
font-size: 40px;
margin-bottom: 15px;
display: block;
}
.feature-card h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.feature-card p {
font-size: 14px;
line-height: 1.5;
opacity: 0.95;
}
.professional-installation-section {
background: #f8f9fd;
padding: 40px 20px;
margin: 30px 0;
border-radius: 12px;
}
.section-title {
font-size: 24px;
font-weight: 700;
text-align: center;
color: #1F3A93;
margin-bottom: 15px;
}
.section-subtitle {
text-align: center;
color: #666;
font-size: 16px;
margin-bottom: 30px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.service-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.service-card {
background: white;
padding: 25px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
}
.service-card h3 {
color: #1F3A93;
font-size: 18px;
font-weight: 600;
margin-bottom: 15px;
}
.service-card p {
color: #666;
font-size: 14px;
line-height: 1.6;
margin-bottom: 20px;
}
.cta-button {
background: linear-gradient(135deg, #1F3A93, #0079DF);
color: #000000;
padding: 12px 24px;
border-radius: 25px;
text-decoration: none;
font-weight: 700;
font-size: 14px;
transition: all 0.3s ease;
}
.cta-button:hover {
background: linear-gradient(135deg, #0f2c73, #005fa3);
color: #000000;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(31, 58, 147, 0.3);
}
.technical-specs {
background: #ffffff;
padding: 30px 20px;
margin: 30px 0;
border-radius: 12px;
border: 1px solid #e0e0e0;
}
.specs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
}
.spec-item {
display: flex;
justify-content: space-between;
padding: 12px 15px;
background: #f8f9fd;
border-radius: 8px;
border-left: 4px solid #1F3A93;
}
.spec-label {
font-weight: 600;
color: #1F3A93;
font-size: 14px;
}
.spec-value {
font-weight: 500;
color: #333;
font-size: 14px;
}
.quality-guarantee {
background: linear-gradient(135deg, #1F3A93, #0079DF);
color: white;
padding: 40px 20px;
margin: 30px 0;
border-radius: 12px;
text-align: center;
}
.guarantee-title {
font-size: 24px;
font-weight: 700;
margin-bottom: 10px;
}
.guarantee-subtitle {
font-size: 16px;
margin-bottom: 30px;
opacity: 0.9;
}
.guarantee-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 20px;
}
.guarantee-item {
text-align: center;
}
.guarantee-icon {
font-size: 32px;
margin-bottom: 10px;
display: block;
}
.guarantee-text {
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
@media (max-width: 768px) {
.iquick-container {
padding: 0 15px;
}
.product-title {
font-size: 24px;
}
.current-price {
font-size: 24px;
}
.features-grid,
.service-cards,
.specs-grid {
grid-template-columns: 1fr;
}
.guarantee-features {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
}
HDMI Port Connector Xbox One X PULL-A Tested – Restore 4K Gaming Performance
Why Choose Our Xbox One X HDMI Port Connector?
Restore 4K Gaming Performance
Instantly fixes Xbox One X black screen, no video output, and HDMI connection failures. Restore full 4K HDR gaming capabilities.
PULL-A Tested Quality
Every Xbox One X HDMI port connector is individually tested before shipping. A-grade materials ensure reliable performance.
Premium Console Focus
Specifically designed for Xbox One X enhanced graphics performance. Perfect compatibility with 4K gaming systems.
A-Grade Construction
Premium construction using original Xbox One X specifications. Superior to cheap aftermarket alternatives.
Fast Australia Shipping
Express delivery nationwide from Brisbane. No waiting weeks for overseas imports to restore your gaming.
12-Month Warranty
Comprehensive warranty coverage with professional Xbox One X repair support and technical assistance.
Need Professional Xbox One X HDMI Port Installation?
Our certified technicians provide expert SMT soldering and motherboard repair services for Xbox One X consoles with specialized 4K gaming equipment.
🔧 Expert Xbox One X HDMI Repair
Professional SMT soldering service for Xbox One X HDMI port installation with specialized 4K gaming console repair equipment and performance restoration guarantee.
Book 4K Repair →
⚡ Performance Gaming Diagnosis
Complete Xbox One X video output diagnosis including 4K testing, enhanced graphics verification, and motherboard inspection with transparent pricing.
Free Diagnosis →
🏆 Complete X Console Service
Full Xbox One X restoration including HDMI repair, enhanced cooling system cleaning, and 4K gaming performance optimization services.
Full X Service →
Technical Specifications
Complete Your Xbox One X Repair Project
Essential components and tools for professional Xbox One X 4K gaming restoration projects.
🎮 Xbox One X Premium Repairs
Complete Xbox One X 4K gaming restoration including HDMI port replacement, enhanced cooling repair, and performance optimization by certified gaming technicians.
Book X Repair →
🛠️ Xbox One X Parts Collection
Professional-grade Xbox One X repair components including power supplies, enhanced cooling fans, controller parts, and premium motherboard components.
View X Parts →
🔧 Professional Repair Tools
Essential repair tools and equipment for Xbox One X console repairs including precision screwdrivers, SMT soldering equipment, and diagnostic tools.
View Repair Tools →
🏆 JPC Mobile Quality Guarantee
Professional Xbox One X 4K gaming console repair specialists with 15+ years experience










Reviews
There are no reviews yet.