banner

Shop

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 40px 20px;
}
.page-header {
text-align: center;
margin-bottom: 60px;
color: white;
}
.page-header h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.page-header p {
font-size: 1.3rem;
opacity: 0.9;
max-width: 800px;
margin: 0 auto;
color: #333;
background: rgba(255, 255, 255, 0.9);
padding: 20px 30px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.pricing-categories {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 50px;
}
.category-btn {
background: rgba(255, 255, 255, 0.2);
color: white;
padding: 12px 25px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 25px;
text-decoration: none;
transition: all 0.3s ease;
font-weight: 500;
}
.category-btn:hover,
.category-btn.active {
background: white;
color: #667eea;
border-color: white;
}
.pricing-section {
margin-bottom: 80px;
}
.section-title {
font-size: 2.5rem;
text-align: center;
color: white;
margin-bottom: 40px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-bottom: 50px;
}
.pricing-card {
background: rgba(255, 255, 255, 0.95);
border-radius: 25px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 25px 50px rgba(0,0,0,0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.pricing-card::before {
content:  »;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, #667eea, #764ba2);
}
.pricing-card:hover {
transform: translateY(-10px);
box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}
.pricing-card.featured {
transform: scale(1.05);
border: 3px solid #00d4ff;
}
.pricing-card.featured::after {
content: ‘POPULAIRE’;
position: absolute;
top: 20px;
right: -30px;
background: #ff6b35;
color: white;
padding: 8px 40px;
font-size: 12px;
font-weight: bold;
transform: rotate(45deg);
}
.pricing-card.premium::after {
content: ‘PREMIUM’;
background: #25d366;
}
.plan-name {
font-size: 1.5rem;
font-weight: bold;
color: #333;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
}
.price {
font-size: 3.5rem;
font-weight: bold;
color: #667eea;
margin-bottom: 10px;
}
.price-period {
color: #666;
font-size: 1.1rem;
margin-bottom: 20px;
}
.device-count {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 12px 25px;
border-radius: 30px;
font-weight: bold;
margin-bottom: 30px;
display: inline-block;
font-size: 1.1rem;
}
.features-list {
list-style: none;
margin-bottom: 35px;
text-align: left;
}
.features-list li {
padding: 12px 0;
position: relative;
padding-left: 30px;
color: #333;
border-bottom: 1px solid #f0f0f0;
font-size: 1rem;
}
.features-list li:before {
content: ‘✓’;
position: absolute;
left: 0;
color: #00d4ff;
font-weight: bold;
font-size: 1.3rem;
}
.cta-button {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 18px 45px;
border: none;
border-radius: 30px;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
width: 100%;
text-transform: uppercase;
letter-spacing: 1px;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}
.features-section {
background: rgba(255, 255, 255, 0.95);
padding: 60px 40px;
border-radius: 30px;
margin: 60px 0;
box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-top: 40px;
}
.feature-item {
text-align: center;
padding: 30px;
background: rgba(102, 126, 234, 0.05);
border-radius: 20px;
transition: all 0.3s ease;
}
.feature-item:hover {
background: rgba(102, 126, 234, 0.1);
transform: translateY(-5px);
}
.feature-icon {
font-size: 3rem;
margin-bottom: 20px;
}
.feature-title {
font-size: 1.4rem;
font-weight: bold;
color: #333;
margin-bottom: 15px;
}
.feature-desc {
color: #666;
line-height: 1.6;
}
.comparison-table {
background: rgba(255, 255, 255, 0.95);
border-radius: 25px;
padding: 40px;
margin: 60px 0;
box-shadow: 0 25px 50px rgba(0,0,0,0.1);
overflow-x: auto;
}
.table-container {
min-width: 800px;
}
.comparison-table table {
width: 100%;
border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
padding: 15px;
text-align: center;
border-bottom: 1px solid #e0e0e0;
}
.comparison-table th {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
font-weight: bold;
}
.comparison-table tr:hover {
background: rgba(102, 126, 234, 0.05);
}
.check-icon {
color: #25d366;
font-size: 1.2rem;
font-weight: bold;
}
.price-highlight {
color: #667eea;
font-weight: bold;
font-size: 1.1rem;
}
@media (max-width: 768px) {
.page-header h1 {
font-size: 2.5rem;
}
.pricing-grid {
grid-template-columns: 1fr;
}
.pricing-card.featured {
transform: none;
}
.pricing-categories {
flex-direction: column;
align-items: center;
}
.features-section {
padding: 40px 20px;
}
.comparison-table {
padding: 20px;
}
}

 

Nos Abonnements IPTV

Découvrez notre gamme complète d’abonnements Orca Pro Max, de 1 à 10 codes d’activation. Solutions adaptées aux particuliers, familles et professionnels avec +8000 chaînes TV 4K et 80,000 films & séries.


👤 Particuliers
👨‍👩‍👧‍👦 Famille
🏢 Professionnel

🎯 Offres Particuliers

ORCA PRO MAX TV PLAYER

€34
/12 Mois
1 Code d’Activation

  • + de 8000 Chaînes TV HD/4K France & Europe
  • + de 80,000 Films & Séries VOD
  • Serveur 100% Stable – Uptime 99.9%
  • Haute Qualité Vidéo 4K/Full-HD
  • Mises à Jour Quotidiennes
  • Chaînes Parfaitement Organisées
  • Service Client 24/7 en Français
  • Compatible Tous Appareils
  • Activation Instantanée


Acheter Maintenant

👨‍👩‍👧‍👦 Offres Famille

ORCA PRO MAX TV PLAYER

€60
/12 Mois
2 Codes d’Activation

  • + de 8000 Chaînes TV HD/4K France & Europe
  • + de 80,000 Films & Séries VOD
  • Serveur 100% Stable – Uptime 99.9%
  • Haute Qualité Vidéo 4K/Full-HD
  • Mises à Jour Quotidiennes
  • Chaînes Parfaitement Organisées
  • Service Client 24/7 en Français
  • Compatible Tous Appareils
  • Activation Instantanée
  • Économie de €8 vs 2 abonnements séparés


Acheter Maintenant

ORCA PRO MAX TV PLAYER

€80
/12 Mois
3 Codes d’Activation

  • + de 8000 Chaînes TV HD/4K France & Europe
  • + de 80,000 Films & Séries VOD
  • Serveur 100% Stable – Uptime 99.9%
  • Haute Qualité Vidéo 4K/Full-HD
  • Mises à Jour Quotidiennes
  • Chaînes Parfaitement Organisées
  • Service Client 24/7 en Français
  • Compatible Tous Appareils
  • Activation Instantanée
  • Idéal Famille – 3 Appareils Simultanés
  • Économie de €22 vs 3 abonnements séparés


Acheter Maintenant

🏢 Offres Professionnelles

ORCA PRO MAX TV PLAYER

€100
/12 Mois
4 Codes d’Activation

  • + de 8000 Chaînes TV Ultra HD France & International
  • + de 80,000 Films & Séries VOD Premium
  • Serveur Ultra-Stable – Performance 99.9%
  • Résolution Maximale 4K/Ultra-HD
  • Actualisation Quotidienne du Contenu
  • Organisation Parfaite des Chaînes par Catégorie
  • Assistance Technique 24/7 Francophone
  • Multi-Plateforme Compatible
  • Configuration Instantanée
  • Idéal pour Petite Entreprise
  • Économie de €36 vs 4 abonnements individuels


Acheter Maintenant

ORCA PRO MAX TV PLAYER

€120
/12 Mois
5 Codes d’Activation

  • + de 8000 Chaînes TV Ultra HD France & International
  • + de 80,000 Films & Séries VOD Premium
  • Serveur Ultra-Stable – Performance 99.9%
  • Résolution Maximale 4K/Ultra-HD
  • Actualisation Quotidienne du Contenu
  • Organisation Parfaite des Chaînes par Catégorie
  • Assistance Technique 24/7 Francophone
  • Multi-Plateforme Compatible
  • Configuration Instantanée
  • Pack Professionnel Premium
  • Support Prioritaire Inclus
  • Économie de €50 vs 5 abonnements individuels


Acheter Maintenant

ORCA PRO MAX TV PLAYER

€200
/12 Mois
10 Codes d’Activation

  • + de 8000 Chaînes TV Ultra HD France & International
  • + de 80,000 Films & Séries VOD Premium
  • Serveur Ultra-Stable – Performance 99.9%
  • Résolution Maximale 4K/Ultra-HD
  • Actualisation Quotidienne du Contenu
  • Organisation Parfaite des Chaînes par Catégorie
  • Assistance Technique 24/7 Francophone
  • Multi-Plateforme Compatible
  • Configuration Instantanée
  • Solution Entreprise Complète
  • Gestion Centralisée des Comptes
  • Support Technique Dédié
  • Économie de €140 vs 10 abonnements individuels


Acheter Maintenant

✨ Fonctionnalités Incluses

📺

8000+ Chaînes TV

Accès à plus de 8000 chaînes TV en HD et 4K du monde entier, organisées par catégories.

🎬

80,000 Films & Séries

Immense bibliothèque VOD avec les dernières sorties et grands classiques.

Serveur 99.9% Stable

Infrastructure européenne garantissant une stabilité et performance optimales.

🎯

Qualité 4K/Ultra-HD

Streaming en très haute définition pour une expérience visuelle exceptionnelle.

📱

Compatible Tous Appareils

Fonctionne sur Smart TV, Android, iOS, PC, Mac, Fire TV Stick, Apple TV.

🔄

Mises à Jour Quotidiennes

Contenu actualisé chaque jour avec nouveaux films, séries et programmes.

💬

Support 24/7 Français

Équipe francophone disponible 24h/24 pour vous accompagner.

Activation Instantanée

Recevez vos codes d’accès immédiatement après confirmation de paiement.

📊 Comparatif des Abonnements

Caractéristiques 1 Code
€34/an
2 Codes
€60/an
3 Codes
€80/an
4 Codes
€100/an
5 Codes
€120/an
10 Codes
€200/an

Showing all 2 results

Contactez nous