        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --yip-silver: #A8A8A8;
            --yip-gold: #D4AF37;
            --yip-dark: #000000;
            --yip-charcoal: #1a1a1a;
            --yip-navy: #0a1628;
            --accent-blue: #1e3a5f;
            --light: #F8F9FA;
            --gray: #6C757D;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: white;
            background: var(--yip-dark);
        }

        /* Navigation */
        nav {
            background: rgba(0, 0, 0, 0.95);
            color: white;
            padding: 20px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--yip-gold);
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: var(--yip-silver);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .nav-links a:hover,
        .nav-links a[aria-current="page"] {
            color: var(--yip-gold);
        }

        /* Mobile bottom-icon dock (hidden on desktop) */
        .mobile-dock {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            padding: max(6px, env(safe-area-inset-top)) 0 6px;
            justify-content: space-around;
            align-items: stretch;
        }

        .dock-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            color: var(--yip-silver);
            text-decoration: none;
            font-size: 0.58rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            padding: 6px 1px 4px;
            border-radius: 10px;
            flex: 1;
            min-width: 0;
            transition: color 0.16s, background 0.16s;
        }

        .dock-item span {
            white-space: nowrap;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .dock-item .icon-svg {
            width: 1.15rem;
            height: 1.15rem;
        }

        .dock-item:hover,
        .dock-item[aria-current="page"] {
            color: var(--yip-gold);
            background: rgba(212, 175, 55, 0.08);
        }

        /* Subpagina's zonder hero-premium: ruimte reserveren onder de fixed nav (desktop only, mobiel regelt de bestaande @media(max-width:768px) body-regel dit al) */
        @media (min-width: 769px) {
            body.page-no-hero {
                padding-top: 96px;
            }
        }

        .page-header {
            padding: 40px 0 10px;
        }

        /* Hero Section with Dynamic Background */
        .hero-premium {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #0a1628 0%, #000000 100%);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                url('data:image/svg+xml,<svg width="1920" height="1080" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(10,22,40);stop-opacity:1" /><stop offset="100%" style="stop-color:rgb(0,0,0);stop-opacity:1" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23grad)"/></svg>');
            background-size: cover;
            background-position: center;
            pointer-events: none;
        }

        /* Animated Light Streaks */
        .light-streak {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--yip-gold), transparent);
            animation: streakMove 3s linear infinite;
            opacity: 0.6;
        }

        .light-streak:nth-child(1) {
            top: 20%;
            left: -100%;
            width: 400px;
            animation-delay: 0s;
            transform: rotate(-15deg);
        }

        .light-streak:nth-child(2) {
            top: 50%;
            right: -100%;
            width: 500px;
            animation-delay: 1s;
            animation-direction: reverse;
            transform: rotate(15deg);
        }

        .light-streak:nth-child(3) {
            top: 70%;
            left: -100%;
            width: 350px;
            animation-delay: 2s;
            transform: rotate(-10deg);
        }

        @keyframes streakMove {
            0% {
                left: -100%;
            }
            100% {
                left: 200%;
            }
        }

        /* Sparkle Effect */
        .sparkles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
                radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.3), transparent),
                radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.3), transparent),
                radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.3), transparent);
            background-size: 200% 200%;
            animation: sparkleShift 20s ease infinite;
        }

        @keyframes sparkleShift {
            0%, 100% {
                background-position: 0% 0%;
            }
            50% {
                background-position: 100% 100%;
            }
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            width: 100%;
            min-width: 0;
            max-width: 1200px;
            padding: 40px;
        }

        .yip-logo-section {
            margin-bottom: 50px;
        }

        .yip-logo-text {
            font-size: 4rem;
            font-weight: 300;
            color: var(--yip-silver);
            letter-spacing: 8px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .yip-subtitle {
            font-size: 1.2rem;
            color: var(--yip-silver);
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 300;
        }

        .venue-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .venue-logo {
            font-size: 1rem;
            color: var(--yip-silver);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 400;
            opacity: 0.8;
            transition: all 0.3s ease;
            text-decoration: none;
            cursor: pointer;
        }

        .venue-logo:hover {
            color: var(--yip-gold);
            opacity: 1;
        }

        .hero-promise {
            font-size: 1.6rem;
            font-weight: 300;
            font-style: italic;
            color: white;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }

        .hero-main-text {
            font-size: clamp(1.3rem, 8vw, 5rem);
            font-weight: 700;
            color: var(--yip-gold);
            margin: 50px 0 30px;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
            letter-spacing: 3px;
        }

        .hero-nowrap {
            white-space: nowrap;
        }

        .hero-tagline {
            font-size: 1.5rem;
            color: var(--yip-silver);
            text-transform: uppercase;
            letter-spacing: 4px;
            font-weight: 300;
            margin-top: 30px;
        }

        /* Section Styling */
        section {
            padding: 100px 40px;
            position: relative;
        }

        .section-dark {
            background: linear-gradient(180deg, #000000 0%, #0a1628 100%);
        }

        .section-darker {
            background: #000000;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 3rem;
            color: var(--yip-gold);
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .section-title p {
            color: var(--yip-silver);
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        /* Venue Cards */
        .venues-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .venue-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 22, 40, 0.9) 100%);
            border-radius: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
            border: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .venue-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .venue-card:hover::before {
            left: 100%;
        }

        .venue-card:hover {
            transform: translateY(-10px);
            border-color: var(--yip-gold);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .venue-card.venue-highlight {
            border-color: var(--yip-gold);
            z-index: 5;
            animation: venueHighlightPulse 1.1s ease-in-out 2;
        }

        @keyframes venueHighlightPulse {
            0%, 100% {
                box-shadow: 0 0 0 rgba(212, 175, 55, 0);
                transform: translateY(0) scale(1);
            }
            50% {
                box-shadow: 0 0 70px 12px rgba(212, 175, 55, 0.65);
                transform: translateY(-6px) scale(1.03);
            }
        }

        .venue-image {
            height: 280px;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a1628 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        }

        .venue-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--yip-gold);
            color: var(--yip-dark);
            padding: 8px 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .venue-content {
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .venue-title {
            font-size: 1.8rem;
            color: var(--yip-gold);
            margin-bottom: 15px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .venue-location {
            color: var(--yip-silver);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }

        .venue-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .venue-features {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }

        .feature-tag {
            background: rgba(212, 175, 55, 0.1);
            color: var(--yip-gold);
            padding: 6px 15px;
            font-size: 0.8rem;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .venue-cta {
            background: transparent;
            color: var(--yip-gold);
            padding: 12px 30px;
            border: 2px solid var(--yip-gold);
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            font-size: 0.85rem;
            margin-top: auto;
            align-self: flex-start;
        }

        .venue-cta:hover {
            background: var(--yip-gold);
            color: var(--yip-dark);
        }

        /* Route Cards */
        .routes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }

        .route-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 22, 40, 0.9) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .route-card:hover {
            transform: translateY(-10px);
            border-color: var(--yip-gold);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
        }

        .route-image {
            height: 220px;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a1628 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        }

        .route-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--yip-gold);
            color: var(--yip-dark);
            padding: 6px 15px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .route-content {
            padding: 30px;
        }

        .route-title {
            font-size: 1.5rem;
            color: var(--yip-gold);
            margin-bottom: 15px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .route-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--yip-silver);
            font-size: 0.9rem;
        }

        .meta-icon {
            color: var(--yip-gold);
        }

        .route-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .route-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            background: rgba(212, 175, 55, 0.1);
            color: var(--yip-gold);
            padding: 5px 12px;
            font-size: 0.8rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Activities Grid */
        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .activity-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 22, 40, 0.8) 100%);
            padding: 50px 40px;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
        }

        .activity-card:hover {
            transform: translateY(-10px);
            border-color: var(--yip-gold);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
        }

        .activity-icon {
            font-size: 4rem;
            margin-bottom: 25px;
        }

        .activity-title {
            font-size: 1.5rem;
            color: var(--yip-gold);
            margin-bottom: 20px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .activity-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .btn {
            padding: 12px 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            cursor: pointer;
            border: 2px solid var(--yip-gold);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: transparent;
            color: var(--yip-gold);
        }

        .btn-primary:hover {
            background: var(--yip-gold);
            color: var(--yip-dark);
        }

        .btn-gold {
            background: var(--yip-gold);
            color: var(--yip-dark);
            border-color: var(--yip-gold);
        }

        .btn-gold:hover {
            background: transparent;
            color: var(--yip-gold);
        }

        /* Table */
        .comparison-table {
            background: rgba(26, 26, 26, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }

        .table-responsive {
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        thead {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a1628 100%);
            color: var(--yip-gold);
        }

        th, td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        th {
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        tbody tr {
            transition: background 0.3s ease;
            color: rgba(255, 255, 255, 0.8);
        }

        tbody tr:hover {
            background: rgba(212, 175, 55, 0.05);
        }

        .difficulty {
            display: inline-block;
            padding: 5px 12px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .difficulty-easy { 
            background: rgba(46, 125, 50, 0.2); 
            color: #66BB6A;
            border: 1px solid #66BB6A;
        }
        .difficulty-medium { 
            background: rgba(251, 140, 0, 0.2); 
            color: #FFA726;
            border: 1px solid #FFA726;
        }
        .difficulty-hard { 
            background: rgba(211, 47, 47, 0.2); 
            color: #EF5350;
            border: 1px solid #EF5350;
        }

        /* Events */
        .events-timeline {
            max-width: 900px;
            margin: 0 auto;
        }

        .event-item {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 22, 40, 0.8) 100%);
            padding: 35px;
            margin-bottom: 30px;
            border-left: 3px solid var(--yip-gold);
            border-right: 1px solid rgba(212, 175, 55, 0.2);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .event-date {
            color: var(--yip-gold);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .event-title {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 400;
        }

        .event-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            section {
                padding: 70px 18px;
            }

            .hero-content {
                padding: 30px 14px;
            }

            .hero-main-text {
                letter-spacing: 1px;
            }

            .hero-promise {
                font-size: 1.2rem;
                padding: 0 20px;
            }

            .yip-logo-text {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .venues-grid, .routes-grid, .activities-grid {
                grid-template-columns: 1fr;
            }

            nav:not(.mobile-dock) {
                display: none;
            }

            .mobile-dock {
                display: flex;
            }

            body {
                padding-top: max(62px, calc(52px + env(safe-area-inset-top)));
            }

            .hero-premium {
                min-height: calc(100vh - 62px);
            }

            .venue-logos {
                gap: 16px;
                padding: 0 10px;
            }

            .venue-logo {
                font-size: 0.75rem;
            }

        }

        .icon-svg {
            width: 1em;
            height: 1em;
            display: inline-block;
            vertical-align: -0.15em;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .activity-icon .icon-svg,
        .venue-image .icon-svg,
        .route-image .icon-svg {
            color: var(--yip-gold);
            vertical-align: -0.1em;
        }
        .stop-marker .icon-svg {
            color: var(--yip-dark);
        }
        .meta-icon .icon-svg {
            color: var(--yip-gold);
        }
