        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 20, 40, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .nav-links a:hover {
            color: #FFD700;
        }
        
        .book-now-nav {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white !important;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .book-now-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(0, 20, 40, 0.8), rgba(0, 40, 80, 0.6)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="ocean" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%2300416A"/><stop offset="100%" style="stop-color:%23001428"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23ocean)"/><path d="M0,400 Q300,350 600,400 T1200,400 L1200,800 L0,800 Z" fill="%23003366" opacity="0.7"/><circle cx="200" cy="200" r="3" fill="%23FFD700" opacity="0.8"><animate attributeName="opacity" values="0.8;0.3;0.8" dur="2s" repeatCount="indefinite"/></circle><circle cx="800" cy="150" r="2" fill="%23FFA500" opacity="0.6"><animate attributeName="opacity" values="0.6;0.2;0.6" dur="3s" repeatCount="indefinite"/></circle><circle cx="400" cy="300" r="2.5" fill="%23FFD700" opacity="0.7"><animate attributeName="opacity" values="0.7;0.2;0.7" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: #E8F4F8;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid #FFD700;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: #FFD700;
            color: #001428;
            transform: translateY(-3px);
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            animation: float 3s ease-in-out infinite;
        }
        
        .chip-1 {
            top: 20%;
            left: 10%;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, #FFD700, #FFA500);
            border-radius: 50%;
            animation-delay: 0s;
        }
        
        .chip-2 {
            top: 60%;
            right: 15%;
            width: 35px;
            height: 35px;
            background: radial-gradient(circle, #FF6B35, #E55B2B);
            border-radius: 50%;
            animation-delay: 1s;
        }
        
        .chip-3 {
            bottom: 30%;
            left: 20%;
            width: 30px;
            height: 30px;
            background: radial-gradient(circle, #4CAF50, #45A049);
            border-radius: 50%;
            animation-delay: 2s;
        }
        
        /* Sections */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #001428, #003366);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Photo Gallery */
        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .photo-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .photo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 20, 40, 0.3);
        }
        
        .photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .photo-card:hover img {
            transform: scale(1.05);
        }
        
        .photo-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 20, 40, 0.9));
            color: white;
            padding: 2rem;
            z-index: 3;
            transition: all 0.3s ease;
        }
        
        .photo-card:hover .photo-overlay {
            background: linear-gradient(transparent, rgba(0, 20, 40, 0.95));
        }
        
        .photo-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .photo-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Gaming Options */
        .gaming-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .gaming-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .gaming-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.3s ease;
            opacity: 0;
        }
        
        .gaming-card:hover::before {
            opacity: 1;
            animation: shimmer 1.5s ease-in-out;
        }
        
        .gaming-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 20, 40, 0.2);
        }
        
        .gaming-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        /* Rewards Section */
        .rewards-section {
            background: linear-gradient(135deg, #001428, #003366);
            color: white;
            margin: 0 -2rem;
            padding: 5rem 2rem;
        }
        
        .rewards-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .rewards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .reward-tier {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .reward-tier.gold {
            border-color: #FFD700;
            background: rgba(255, 215, 0, 0.1);
        }
        
        .reward-tier:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
        }
        
        /* Booking Section */
        .booking-section {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
            text-align: center;
            margin: 0 -2rem;
            padding: 4rem 2rem;
        }
        
        .booking-form {
            max-width: 500px;
            margin: 2rem auto 0;
            display: grid;
            gap: 1rem;
        }
        
        .form-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .booking-form input,
        .booking-form select {
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .booking-form input:focus,
        .booking-form select:focus {
            outline: none;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }
        
        /* Footer */
        .footer {
            background: #001428;
            color: white;
            padding: 3rem 2rem 1rem;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 1rem;
        }
        
        .footer-section a {
            color: #E8F4F8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #FFD700;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* About Section */
        .about-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            margin: 0 -2rem;
            padding: 5rem 2rem;
        }
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #001428, #003366);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 20, 40, 0.1);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #FF6B35;
        }
        
        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Ship Amenities */
        .amenities-section {
            background: white;
        }
        
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .amenity-card {
            background: linear-gradient(135deg, #fff, #f8f9fa);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 20, 40, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        
        .amenity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 20, 40, 0.15);
        }
        
        .amenity-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .amenity-card h3 {
            color: #001428;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        /* Testimonials */
        .testimonials-section {
            background: linear-gradient(135deg, #001428, #003366);
            color: white;
            margin: 0 -2rem;
            padding: 5rem 2rem;
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            color: white;
        }
        
        .author-info h4 {
            margin: 0;
            color: #FFD700;
        }
        
        .author-info p {
            margin: 0;
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        /* Entertainment Section */
        .entertainment-section {
            background: white;
        }
        
        .entertainment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .entertainment-card {
            border-radius: 20px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .entertainment-card:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 20, 40, 0.2);
        }
        
        .entertainment-card::before {

        }
        
        .entertainment-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            color: white;
            padding: 2rem;
            z-index: 2;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        }
        
        .entertainment-content h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }
        
        /* Itinerary Section */
        .itinerary-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            margin: 0 -2rem;
            padding: 5rem 2rem;
        }
        
        .itinerary-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .itinerary-timeline {
            position: relative;
            margin-top: 3rem;
        }
        
        .itinerary-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(135deg, #FF6B35, #FFD700);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .timeline-content {
            flex: 1;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 20, 40, 0.1);
            margin: 0 2rem;
            position: relative;
        }
        
        .timeline-marker {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6B35, #FFD700);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }
        
        .day-number {
            color: #FF6B35;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        /* FAQ Section */
        .faq-section {
            background: white;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid #e9ecef;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            background: #f8f9fa;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #001428;
        }
        
        .faq-question:hover {
            background: #e9ecef;
        }
        
        .faq-question.active {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }
        
        .faq-answer.active {
            padding: 1.5rem;
            max-height: 200px;
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
        }
        
        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }
        
        /* Pop-up Modal */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 20, 40, 0.8);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 3rem 2rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            transform: scale(0.8) translateY(50px);
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 25px 50px rgba(0, 20, 40, 0.3);
        }
        
        .popup-overlay.active .popup-content {
            transform: scale(1) translateY(0);
        }
        
        .popup-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4CAF50, #45A049);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            animation: successPulse 1s ease-out;
        }
        
        .popup-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #001428;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #001428, #003366);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .popup-message {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 2rem;
            line-height: 1.5;
        }
        
        .popup-close-btn {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 1rem;
        }
        
        .popup-close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }
        
        .popup-secondary-btn {
            background: transparent;
            color: #001428;
            border: 2px solid #FFD700;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .popup-secondary-btn:hover {
            background: #FFD700;
            transform: translateY(-2px);
        }
        
        .popup-close-x {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .popup-close-x:hover {
            color: #FF6B35;
            transform: rotate(90deg);
        }
        
        @keyframes successPulse {
            0% { transform: scale(0); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .form-group {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 3rem 1rem;
            }
            
            .popup-content {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }
            
            .popup-title {
                font-size: 1.5rem;
            }
            
            .popup-message {
                font-size: 1rem;
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-stats {
                grid-template-columns: 1fr 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .entertainment-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .amenities-grid {
                grid-template-columns: 1fr;
            }
            
            .timeline-item {
                flex-direction: column !important;
            }
            
            .itinerary-timeline::before {
                left: 20px;
            }
            
            .timeline-marker {
                left: 20px !important;
                transform: translateX(-50%);
            }
            
            .timeline-content {
                margin-left: 60px;
                margin-right: 0;
            }
        }
