buy_ticket26

Days Hours Minutes


  • Malta

  • 25-27 November 2026

.added_to_cart.wc-forward {
display: none !important;
}
.pricing-wrapper {
font-family: ‘Outfit’, sans-serif;
width: 100%;
display: flex;
justify-content: center;
align-items: stretch;
gap: 30px;
padding: 60px 20px;
flex-wrap: wrap;
}
.pricing-wrapper * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.pricing-wrapper {
–glass-bg: rgba(255, 255, 255, 0.03);
–glass-border: rgba(100, 180, 255, 0.15);
–glass-glow: rgba(0, 150, 255, 0.3);
–text-primary: #ffffff;
–text-secondary: rgba(255, 255, 255, 0.7);
–accent-blue: #00a8ff;
–accent-cyan: #00d4ff;
–accent-gold: #ffd700;
–accent-gold-dim: rgba(255, 215, 0, 0.3);
}
.pricing-card {
position: relative;
width: 100%;
max-width: 380px;
padding: 40px 35px;
border-radius: 24px;
background: var(–glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(–glass-border);
box-shadow:
0 0 40px rgba(0, 150, 255, 0.08),
inset 0 1px 0 rgba(255, 255, 255, 0.05);
transition: all 0.4s ease;
animation: cardFadeIn 0.8s ease-out backwards;
overflow: hidden;
}
.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
@keyframes cardFadeIn {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.pricing-card:hover {
transform: translateY(-8px);
box-shadow:
0 20px 60px rgba(0, 150, 255, 0.15),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.pricing-card.featured {
border-color: var(–accent-gold-dim);
box-shadow:
0 0 60px rgba(255, 215, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.pricing-card.featured:hover {
box-shadow:
0 20px 80px rgba(255, 215, 0, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.pricing-card.featured::before {
content: ”;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, transparent, var(–accent-gold), transparent);
}
.badge {
position: absolute;
top: 20px;
right: 20px;
padding: 6px 14px;
font-size: 10px;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #0a1628;
background: linear-gradient(135deg, var(–accent-gold) 0%, #ffed4a 100%);
border-radius: 20px;
animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.6); }
}
.card-icon {
width: 70px;
height: 70px;
margin-bottom: 25px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 20px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(–glass-border);
}
.pricing-card.featured .card-icon {
border-color: var(–accent-gold-dim);
background: rgba(255, 215, 0, 0.05);
}
.card-icon img {
width: 40px;
height: 40px;
object-fit: contain;
filter: drop-shadow(0 0 10px var(–glass-glow));
}
.pricing-card.featured .card-icon img {
filter: drop-shadow(0 0 10px var(–accent-gold-dim));
}
.plan-name {
font-size: 2rem;
font-weight: 600;
color: var(–text-primary);
margin-bottom: 10px;
letter-spacing: 0.05em;
}
.pricing-card.featured .plan-name {
background: linear-gradient(135deg, var(–accent-gold) 0%, #fff 50%, var(–accent-gold) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.price-container {
display: flex;
align-items: baseline;
gap: 5px;
margin-bottom: 30px;
}
.currency {
font-size: 1.7rem;
font-weight: 500;
color: var(–text-secondary);
}
.price {
font-size: 3rem;
font-weight: 700;
color: var(–text-primary);
line-height: 1;
}
.pricing-card.featured .price {
background: linear-gradient(135deg, #ffffff 0%, var(–accent-gold) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.divider {
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, var(–glass-border), transparent);
margin-bottom: 25px;
}
.pricing-card.featured .divider {
background: linear-gradient(90deg, transparent, var(–accent-gold-dim), transparent);
}
.features-list {
list-style: none;
margin-bottom: 35px;
}
.features-list li {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 10px 0;
font-size: 1.4rem;
color: var(–text-secondary);
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
transition: color 0.3s ease;
}
.features-list li:last-child {
border-bottom: none;
}
.features-list li:hover {
color: var(–text-primary);
}
.check-icon {
flex-shrink: 0;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(0, 168, 255, 0.15);
color: var(–accent-cyan);
font-size: 10px;
}
.pricing-card.featured .check-icon {
background: rgba(255, 215, 0, 0.15);
color: var(–accent-gold);
}
.cta-button {
display: block;
width: 100%;
padding: 16px 30px;
font-family: ‘Outfit’, sans-serif;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
text-align: center;
text-decoration: none;
color: #0a1628;
background: linear-gradient(135deg, #ffffff 0%, #d0e0ff 100%);
border: none;
border-radius: 12px;
cursor: pointer;
transition: all 0.4s ease;
box-shadow: 0 4px 20px rgba(100, 150, 255, 0.25);
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(100, 150, 255, 0.4);
}
.pricing-card.featured .cta-button {
background: linear-gradient(135deg, var(–accent-gold) 0%, #ffed4a 100%);
box-shadow: 0 4px 25px rgba(255, 215, 0, 0.3);
}
.pricing-card.featured .cta-button:hover {
box-shadow: 0 8px 40px rgba(255, 215, 0, 0.5);
}
@media (max-width: 768px) {
.pricing-wrapper {
padding: 40px 15px;
gap: 20px;
}
.pricing-card {
padding: 30px 25px;
}
.price {
font-size: 2.5rem;
}
.features-list li {
font-size: 0.85rem;
}
}


Captain

Captain Pass


49.99


  • Pre-Registration & Networking Drinks on 25th Nov

  • Access to the EXPO on 26th & 27th Nov

  • Access to the Conference on 26th & 27th Nov

  • Access to the Workshop on 26th Nov


Get Captain Pass


Most Popular
Admiral

Admiral Pass


499.99


  • Pre-Registration & Networking Drinks on 25th Nov

  • Access to the EXPO on 26th & 27th Nov

  • Access to the Conference on 26th & 27th Nov

  • Access to the Workshop on 26th Nov

  • Invitation to the Awards Night Ceremony on 26th Nov

  • Invitation to the Closing Dinner on 27th Nov

  • City Tour – Valletta

  • Technical Tour – Port, Shipyards


Get Admiral Pass