* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Prompt’, sans-serif;
background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0d2137 100%);
color: #fff;
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header */
header {
padding: 20px 0;
background: rgba(0,0,0,0.3);
backdrop-filter: blur(10px);
position: fixed;
width: 100%;
top: 0;
z-index: 100;
}
.logo {
font-size: 24px;
font-weight: 700;
color: #ffd700;
}
.logo span {
color: #fff;
}
/* Hero Section */
.hero {
padding: 150px 0 100px;
text-align: center;
background: url(‘data:image/svg+xml,’) center/cover;
}
.hero h1 {
font-size: 48px;
font-weight: 700;
margin-bottom: 20px;
background: linear-gradient(90deg, #ffd700, #ffaa00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: 20px;
color: #b0c4de;
max-width: 600px;
margin: 0 auto 40px;
line-height: 1.8;
}
.hero-badge {
display: inline-block;
background: rgba(255, 215, 0, 0.2);
border: 1px solid #ffd700;
padding: 8px 20px;
border-radius: 50px;
color: #ffd700;
font-size: 14px;
margin-bottom: 30px;
}
/* Features */
.features {
padding: 80px 0;
}
.features h2 {
text-align: center;
font-size: 36px;
margin-bottom: 50px;
color: #ffd700;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.feature-card {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,215,0,0.2);
border-radius: 20px;
padding: 40px 30px;
text-align: center;
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-10px);
border-color: #ffd700;
box-shadow: 0 20px 40px rgba(255,215,0,0.1);
}
.feature-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #ffd700, #ffaa00);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
font-size: 32px;
color: #0a1628;
}
.feature-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: #fff;
}
.feature-card p {
color: #b0c4de;
line-height: 1.7;
}
/* Pricing */
.pricing {
padding: 80px 0;
background: rgba(0,0,0,0.2);
}
.pricing h2 {
text-align: center;
font-size: 36px;
margin-bottom: 50px;
color: #ffd700;
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}
.pricing-card {
background: rgba(255,255,255,0.05);
border: 2px solid rgba(255,215,0,0.3);
border-radius: 25px;
padding: 40px;
text-align: center;
position: relative;
overflow: hidden;
}
.pricing-card.popular {
border-color: #ffd700;
transform: scale(1.05);
}
.popular-badge {
position: absolute;
top: 20px;
right: -35px;
background: #ffd700;
color: #0a1628;
padding: 5px 40px;
font-size: 12px;
font-weight: 600;
transform: rotate(45deg);
}
.pricing-card h3 {
font-size: 24px;
margin-bottom: 10px;
}
.pricing-card .price {
font-size: 48px;
font-weight: 700;
color: #ffd700;
margin: 20px 0;
}
.pricing-card .price span {
font-size: 18px;
color: #b0c4de;
}
.pricing-card ul {
list-style: none;
margin: 30px 0;
text-align: left;
}
.pricing-card ul li {
padding: 10px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
color: #b0c4de;
}
.pricing-card ul li i {
color: #ffd700;
margin-right: 10px;
}
/* Contact CTA */
.contact-cta {
padding: 100px 0;
text-align: center;
}
.contact-cta h2 {
font-size: 36px;
margin-bottom: 20px;
}
.contact-cta p {
font-size: 18px;
color: #b0c4de;
margin-bottom: 50px;
}
.contact-buttons {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}
.contact-btn {
display: flex;
align-items: center;
gap: 15px;
padding: 20px 40px;
border-radius: 15px;
text-decoration: none;
font-size: 18px;
font-weight: 600;
transition: all 0.3s ease;
}
.contact-btn.line {
background: #00B900;
color: #fff;
}
.contact-btn.messenger {
background: linear-gradient(135deg, #00c6ff, #0078ff);
color: #fff;
}
.contact-btn:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.contact-btn i {
font-size: 28px;
}
/* Why Choose */
.why-choose {
padding: 80px 0;
background: rgba(255,215,0,0.05);
}
.why-choose h2 {
text-align: center;
font-size: 36px;
margin-bottom: 50px;
color: #ffd700;
}
.why-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.why-item {
text-align: center;
padding: 30px;
}
.why-item i {
font-size: 48px;
color: #ffd700;
margin-bottom: 20px;
}
.why-item h4 {
font-size: 20px;
margin-bottom: 10px;
}
.why-item p {
color: #b0c4de;
}
/* Footer */
footer {
padding: 40px 0;
text-align: center;
background: rgba(0,0,0,0.5);
color: #b0c4de;
}
footer a {
color: #ffd700;
text-decoration: none;
}
/* Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 32px;
}
.hero p {
font-size: 16px;
}
.pricing-card.popular {
transform: scale(1);
}
.contact-btn {
width: 100%;
justify-content: center;
}
}
ทำไมต้องใช้ VPS สำหรับเทรด?
ออนไลน์ 24/7
VPS ทำงานตลอด 24 ชั่วโมง ไม่ต้องเปิดคอมที่บ้าน EA รันได้ต่อเนื่องไม่หยุด
Latency ต่ำ
เซิร์ฟเวอร์ใกล้โบรกเกอร์ ส่งคำสั่งเร็ว ลด Slippage เพิ่มโอกาสทำกำไร
เสถียร ปลอดภัย
ระบบ Backup อัตโนมัติ UPS สำรองไฟ ไม่ต้องกังวลไฟดับหรือเน็ตหลุด
ซัพพอร์ตภาษาไทย
ทีมงานคนไทย พร้อมช่วยเหลือตลอด ตั้งค่า EA ให้ฟรี
แพ็คเกจ VPS
Starter
- 1 vCPU
- 2 GB RAM
- 40 GB SSD
- รัน MT4/MT5 ได้ 1-2 ตัว
- Bandwidth ไม่จำกัด
Professional
- 2 vCPU
- 4 GB RAM
- 80 GB SSD
- รัน MT4/MT5 ได้ 3-5 ตัว
- ตั้งค่า EA ให้ฟรี
Enterprise
- 4 vCPU
- 8 GB RAM
- 160 GB SSD
- รัน MT4/MT5 ได้ 10+ ตัว
- Priority Support
ทำไมต้อง iCafeFX?
ประสบการณ์ 10+ ปี
ผู้เชี่ยวชาญด้าน Forex และ EA Trading
ลูกค้า 1,000+
ได้รับความไว้วางใจจากเทรดเดอร์ทั่วประเทศ
Uptime 99.9%
ระบบเสถียร ไม่หยุดทำงาน
คุ้มค่าที่สุด
ราคาประหยัด คุณภาพระดับพรีเมียม
สนใจสมัคร VPS?
ติดต่อเราได้เลย! ทีมงานพร้อมให้คำปรึกษาและตั้งค่าให้ฟรี
