/* index.html */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
        
        html {
            scroll-behavior: auto;
        }

        section[id] {
            scroll-margin-top: 96px;
            position: relative;
        }

        section[id].section-arrive::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            border-top: 1px solid rgba(212, 175, 55, 0.8);
            box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.45), 0 -14px 32px rgba(212, 175, 55, 0.22);
            animation: section-arrive-glow 950ms ease-out forwards;
        }

        @keyframes section-arrive-glow {
            0% {
                opacity: 0;
            }

            18% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }

        body {
            font-family: 'Inter', system-ui, sans-serif;
        }
        
        .heading-serif {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .gold-text {
            color: #d4af37;
        }

        .desktop-language-switcher {
            transform: translateX(max(1rem, calc((100vw - 1536px) / 2 + 1rem)));
        }

        @media (min-width: 1024px) {
            .desktop-language-switcher {
                position: relative;
                z-index: 10;
            }
        }

        .luxury-card {
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
        }
        
        .luxury-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.4);
            border-color: #d4af37;
        }

        .hero-bg {
            background-color: #0a0a0a;
            background-size: cover;
            background-position: center;
        }

        @media (min-width: 769px) {
            .hero-bg {
                background-position: center top;
            }
        }

        html.luxor-notice-accepted .hero-bg,
        html.luxor-main-ready .hero-bg {
            background-image: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)),
                              url('../images/hero-bg-optimized.jpg');
        }

        .floating-opening-badge {
            bottom: 5rem;
            left: 0.75rem;
        }

        .hero-opening-card--desktop {
            display: none;
        }

        #event-carousel {
            --event-slide-width: 88%;
            --event-slide-gap: 0.75rem;
            overscroll-behavior-x: contain;
            touch-action: pan-y pinch-zoom;
            -webkit-overflow-scrolling: touch;
            overflow: hidden;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            width: 100vw;
            border-radius: 0;
        }

        #carousel-track,
        #carousel-track * {
            touch-action: pan-y pinch-zoom;
            -webkit-user-select: none;
            user-select: none;
            -webkit-user-drag: none;
        }

        #carousel-track {
            gap: var(--event-slide-gap);
            will-change: transform;
            transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
        }

        #carousel-track > div {
            position: relative;
            flex: 0 0 var(--event-slide-width) !important;
            max-width: var(--event-slide-width) !important;
        }

        #carousel-track img {
            pointer-events: none;
        }

        .events-section {
            background: #000;
        }

        @media (min-width: 640px) {
            #event-carousel {
                --event-slide-width: 84%;
                --event-slide-gap: 1rem;
            }

            .floating-opening-badge {
                bottom: 4rem;
                left: 2rem;
            }
        }

        @media (min-width: 1280px) {
            .floating-opening-badge {
                left: 4rem;
            }
        }

        @media (min-width: 1024px) {
            #event-carousel {
                --event-slide-width: 78%;
                --event-slide-gap: 1.25rem;
            }

            .event-dot {
                width: 1rem;
                height: 1rem;
            }

            .hero-opening-card--mobile {
                display: none !important;
            }

            .hero-opening-card--desktop {
                display: inline-block;
                position: absolute;
                left: auto;
                right: max(1.25rem, calc((100vw - 1536px) / 2 + 2rem));
                width: max-content;
                max-width: calc(100vw - 2.5rem);
                white-space: nowrap;
                bottom: 4rem;
                z-index: 20;
            }
        }

        @media (min-width: 1280px) {
            .hero-opening-card--desktop {
                bottom: 5rem;
                left: auto;
                right: max(1.25rem, calc((100vw - 1536px) / 2 + 2rem));
            }
        }

        .nav-link {
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-link:hover {
            color: #d4af37;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(to right, #d4af37, #b8972e);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }

        .premium-button {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .premium-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 40%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
            transition: 0.6s;
        }
        
        .premium-button:hover::before {
            left: 200%;
        }

        .image-hover {
            overflow: hidden;
        }
        
        .image-hover img {
            transition: transform 0.8s cubic-bezier(0.23, 1.0, 0.32, 1);
        }
        
        .image-hover:hover img {
            transform: scale(1.08);
        }

        .included-ticket-image {
            aspect-ratio: 9 / 16;
            border-radius: 1.5rem;
            overflow: hidden;
        }

        .included-ticket-image img {
            display: block;
            width: 100%;
            height: 100% !important;
            object-fit: cover;
        }

        .price-content-image {
            width: min(100%, 220px);
            aspect-ratio: 1 / 1;
            margin-left: auto;
            margin-right: auto;
        }

        .price-content-image img {
            display: block;
            width: 100%;
            height: 100% !important;
            object-fit: cover;
            object-position: center;
        }

        @media (min-width: 1024px) {
            .price-content-image {
                width: 16rem;
                height: 16rem;
                margin-left: 0;
                margin-right: 0;
            }
        }

        .wellness-card-media {
            overflow: hidden;
        }

        .wellness-card-media img {
            display: block;
            width: 100%;
            height: 100% !important;
            object-fit: cover;
        }

        .club-image-card .image-hover {
            overflow: hidden;
        }

        .club-image-card .image-hover img {
            display: block;
            width: 100%;
            height: 100% !important;
            object-fit: cover;
        }

        .drink-menu-scroll {
            background: #09090b;
            scrollbar-color: #d4af37 #09090b;
        }

        .drink-menu-scroll::-webkit-scrollbar {
            width: 10px;
        }

        .drink-menu-scroll::-webkit-scrollbar-track {
            background: #09090b;
        }

        .drink-menu-scroll::-webkit-scrollbar-thumb {
            background: #3f3f46;
            border: 2px solid #09090b;
            border-radius: 999px;
        }

        .drink-menu-scroll::-webkit-scrollbar-thumb:hover {
            background: #d4af37;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 !important;
            opacity: 0;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            opacity: 1;
            padding: 2rem 2.25rem 2rem 2.25rem !important;
        }

        .service-icon {
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .luxury-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .nav-active {
            color: #d4af37;
            font-weight: 600;
        }

        #mobile-menu .mobile-menu-panel {
            width: clamp(180px, 54vw, 220px);
            max-width: 220px;
        }

        #mobile-menu .mobile-language-controls {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 0.25rem;
            width: 100%;
        }

        #mobile-menu .mobile-language-controls button {
            min-width: 0 !important;
            min-height: 36px !important;
            padding: 0.375rem 0.375rem !important;
            font-size: 0.8125rem !important;
            line-height: 1 !important;
        }

        #mobile-menu .mobile-language-flag {
            width: 3rem !important;
            height: 3rem !important;
            padding: 0 !important;
            left: 0 !important;
            border-radius: 9999px;
            background: rgba(0, 0, 0, 0.3);
        }

        #mobile-menu .mobile-language-flag img {
            width: 2.5rem !important;
            height: 2.5rem !important;
            max-width: none !important;
        }

        /* Mobile Optimizations for 390x844 viewport */
        @media (max-width: 640px) {
            .faq-item.open .faq-answer {
                max-height: 500px;
                padding: 1rem 1rem 1rem 1rem !important;
            }
            
            .faq-question {
                padding: 1rem !important;
            }

            /* Reduce hero background parallax on mobile */
            .hero-bg {
                background-attachment: scroll;
                background-position: 58% center;
            }

            header.hero-bg {
                min-height: 100svh !important;
            }

            header.hero-bg h1 {
                font-size: 1.875rem !important;
                line-height: 1.25 !important;
            }

            header.hero-bg p {
                font-size: 0.875rem !important;
                line-height: 1.25rem !important;
            }

            .event-dot {
                position: relative;
                width: 34px !important;
                height: 34px !important;
                min-width: 34px !important;
                min-height: 34px !important;
                margin: 0 !important;
                padding: 0 !important;
                font-size: 0 !important;
                line-height: 0 !important;
                background: transparent !important;
                transform: none !important;
            }

            .event-dot::before {
                content: '';
                position: absolute;
                left: 50%;
                top: 50%;
                width: 10px;
                height: 10px;
                border-radius: 9999px;
                background: rgba(255, 255, 255, 0.3);
                transform: translate(-50%, -50%);
                transition: transform 0.15s ease, background-color 0.15s ease;
            }

            .event-dot.bg-\[\#d4af37\]::before {
                background: #d4af37;
            }

            .event-dot.bg-white\/30::before {
                background: rgba(255, 255, 255, 0.3);
            }

            .event-dot:hover::before,
            .event-dot:focus-visible::before {
                transform: translate(-50%, -50%) scale(1.25);
            }

            #bar-modal {
                padding: 16px !important;
            }

            #bar-modal .bar-modal-card {
                max-height: calc(100svh - 1rem) !important;
                border-radius: 1rem !important;
            }

            #bar-modal .bar-modal-header,
            #bar-modal .bar-modal-footer {
                padding: 12px 16px !important;
            }

            #bar-modal .bar-modal-header {
                position: sticky;
                top: 0;
                z-index: 5;
                background: #09090b;
                align-items: flex-start;
                gap: 0.75rem;
            }

            #bar-modal .bar-modal-close {
                width: 44px !important;
                height: 44px !important;
                min-width: 44px !important;
                min-height: 44px !important;
                padding: 0 !important;
                position: relative;
                z-index: 10;
            }

            #bar-modal .drink-menu-scroll {
                padding: 18px !important;
            }

            #drink-carousel {
                padding: 12px !important;
            }

            #drink-carousel .drink-carousel-close {
                top: 0.75rem !important;
                right: 0.75rem !important;
                width: 44px !important;
                height: 44px !important;
                min-width: 44px !important;
                min-height: 44px !important;
                padding: 0 !important;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 9999px;
                background: rgba(0, 0, 0, 0.72);
                z-index: 20;
            }
        }

        /* Phone landscape only: keep the menu and hero inside short viewports. */
        @media (max-width: 1023px) and (orientation: landscape) and (max-height: 560px) {
            nav .max-w-screen-2xl > div {
                padding-top: 0.5rem !important;
                padding-bottom: 0.5rem !important;
            }

            #bar-modal {
                padding: 12px !important;
            }

            #bar-modal .bar-modal-card {
                max-height: calc(100svh - 0.75rem) !important;
                border-radius: 1rem !important;
            }

            #bar-modal .bar-modal-header,
            #bar-modal .bar-modal-footer {
                padding: 10px 14px !important;
            }

            #bar-modal .bar-modal-close,
            #drink-carousel .drink-carousel-close {
                width: 44px !important;
                height: 44px !important;
                min-width: 44px !important;
                min-height: 44px !important;
                padding: 0 !important;
            }

            #drink-carousel .drink-carousel-close {
                top: 0.75rem !important;
                right: 0.75rem !important;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 9999px;
                background: rgba(0, 0, 0, 0.72);
                z-index: 20;
            }

            #mobile-menu .mobile-menu-panel {
                width: min(320px, 48vw);
                max-width: 320px;
                padding-top: 3.5rem !important;
            }

            #mobile-menu .mobile-menu-panel > div {
                gap: 0 !important;
                padding-top: 0.75rem !important;
                padding-bottom: 0.75rem !important;
            }

            #mobile-menu .mobile-nav-link {
                font-size: 0.875rem !important;
                line-height: 1.2 !important;
                padding-top: 0.45rem !important;
                padding-bottom: 0.45rem !important;
            }

            #mobile-menu .mobile-menu-panel .pt-6 {
                padding-top: 0.75rem !important;
            }

            #mobile-menu .mobile-language-controls button {
                min-height: 30px !important;
                padding-top: 0.25rem !important;
                padding-bottom: 0.25rem !important;
                font-size: 0.75rem !important;
            }

            #mobile-menu .mobile-language-flag {
                width: 2.25rem !important;
                height: 2.25rem !important;
            }

            #mobile-menu .mobile-language-flag img {
                width: 1.875rem !important;
                height: 1.875rem !important;
            }

            header.hero-bg {
                min-height: 100svh !important;
                padding-top: 4.75rem !important;
                padding-bottom: 1rem !important;
            }

            header.hero-bg h1 {
                max-width: 74vw;
                font-size: clamp(2rem, 8vw, 3.5rem) !important;
                line-height: 0.98 !important;
                margin-bottom: 0.5rem !important;
            }

            header.hero-bg p {
                max-width: 62vw;
                font-size: clamp(0.8125rem, 2vw, 1rem) !important;
                line-height: 1.35 !important;
                margin-bottom: 0.5rem !important;
            }

            header.hero-bg p + br,
            header.hero-bg p + br + br {
                display: none;
            }

            header.hero-bg .mt-8 {
                margin-top: 1rem !important;
            }

            header.hero-bg .hero-opening-card {
                position: relative;
                left: calc(-50vw + 50% + 0.75rem);
                transform: none;
                padding: 0.5rem 0.875rem !important;
                border-radius: 1rem !important;
            }

            header.hero-bg .hero-opening-card .text-emerald-400 {
                font-size: 0.625rem !important;
                line-height: 1.1 !important;
                letter-spacing: 0.08em !important;
            }

            header.hero-bg .hero-opening-card .opening-hours-badge {
                font-size: 1.25rem !important;
                line-height: 1.15 !important;
            }
        }

        /* Ultra-Mobile Optimizations for 375px width */
        @media (max-width: 425px) {
            body {
                font-size: 14px;
            }

            /* Hero Section */
            h1 {
                font-size: 2rem !important;
                line-height: 1.2 !important;
            }

            h2 {
                font-size: 1.75rem !important;
            }

            h3 {
                font-size: 1.25rem !important;
            }

            p {
                font-size: 13px !important;
                line-height: 1.6 !important;
            }

            /* Navigation */
            .px-4 {
                padding-left: 12px !important;
                padding-right: 12px !important;
            }

            .px-8 {
                padding-left: 16px !important;
                padding-right: 16px !important;
            }

            /* Hero padding */
            header.hero-bg {
                min-height: 100svh !important;
                padding-top: 80px !important;
            }

            /* Buttons */
            button, a[class*="button"] {
                min-height: 48px !important;
                padding: 14px 20px !important;
                font-size: 13px !important;
            }

            .premium-button {
                padding: 16px 24px !important;
            }

            /* Cards */
            .luxury-card {
                padding: 20px !important;
            }

            .included-ticket-card {
                padding: 0 !important;
            }

            .wellness-card {
                padding: 0 !important;
            }

            .wellness-card-content {
                padding: 20px !important;
            }

            .wellness-card-icon {
                bottom: 12px !important;
                left: 12px !important;
            }

            .wellness-card:hover .service-icon {
                transform: none;
            }

            .club-image-card {
                padding: 0 !important;
            }

            .club-image-card-content {
                padding: 20px !important;
            }

            .luxury-card:hover {
                transform: translateY(-4px);
            }

            /* Sections */
            section {
                padding-top: 40px !important;
                padding-bottom: 40px !important;
            }

            /* Grid adjustments */
            .grid {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
            }

            .grid.md\:grid-cols-2 {
                grid-template-columns: 1fr !important;
            }

            .grid.md\:grid-cols-3 {
                grid-template-columns: 1fr !important;
            }

            .grid.lg\:grid-cols-2 {
                grid-template-columns: 1fr !important;
            }

            .grid.lg\:grid-cols-4 {
                grid-template-columns: 1fr !important;
            }

            /* FAQ */
            .faq-item.open .faq-answer {
                max-height: 400px !important;
                padding: 12px 16px !important;
            }

            .faq-question {
                padding: 16px !important;
                font-size: 13px !important;
            }

            /* Images */
            img {
                max-width: 100% !important;
                height: auto !important;
            }

            .aspect-video {
                aspect-ratio: 16/9 !important;
                max-height: 250px !important;
            }

            .aspect-\[9\/16\] {
                aspect-ratio: 2/3 !important;
                max-height: 180px !important;
            }

            /* Flex adjustments */
            .flex.flex-wrap {
                flex-wrap: wrap !important;
                gap: 8px !important;
            }

            .flex.flex-col.lg\:flex-row {
                flex-direction: column !important;
            }

            /* Scroll indicator */
            .absolute.bottom-12 {
                bottom: 20px !important;
                font-size: 10px !important;
            }

            /* Badge */
            .absolute.bottom-16.right-16 {
                bottom: 12px !important;
                right: 12px !important;
                padding: 12px 20px !important;
                border-radius: 24px !important;
            }

            .text-3xl.font-semibold {
                font-size: 1.5rem !important;
            }

            /* Footer */
            footer {
                padding: 20px 16px !important;
            }

            footer a, footer span {
                font-size: 11px !important;
            }

            /* Back to top button */
            .fixed.bottom-6.right-6 {
                bottom: 20px !important;
                right: 12px !important;
                width: 40px !important;
                height: 40px !important;
            }

            /* Inline badges/tags */
            .inline-block, .inline-flex {
                font-size: 11px !important;
                padding: 8px 12px !important;
            }

            /* List items */
            li {
                font-size: 13px !important;
                line-height: 1.6 !important;
            }

            /* === Mobile: smaller language switcher === */
            #luxor-notice-shield button {
                padding-left: 8px !important;
                padding-right: 8px !important;
                padding-top: 2.5px !important;
                padding-bottom: 2.5px !important;
                font-size: 9px !important;
                min-height: 24px !important;
                min-width: 30px !important;
            }
        }

/* impressum.html */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
        
        body {
            font-family: 'Inter', system_ui, sans-serif;
        }
        
        .heading-serif {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .gold-text {
            color: #d4af37;
        }

        .luxury-card {
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
        }
        
        .luxury-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.4);
            border-color: #d4af37;
        }

        .nav-link {
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-link:hover {
            color: #d4af37;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(to right, #d4af37, #b8972e);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }

        .premium-button {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .premium-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 40%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
            transition: 0.6s;
        }
        
        .premium-button:hover::before {
            left: 200%;
        }

        .nav-active {
            color: #d4af37;
            font-weight: 600;
        }

        .legal-text {
            font-size: 15px;
            line-height: 1.75;
            color: #d1d5db;
        }
        
        .legal-text h2 {
            font-size: 1.35rem;
            font-weight: 600;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: #d4af37;
            letter-spacing: -0.01em;
        }
        
        .legal-text h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1.75rem;
            margin-bottom: 0.75rem;
            color: #e5e7eb;
        }
        
        .legal-text p {
            margin-bottom: 1.25rem;
        }
        
        .legal-text ul {
            margin: 1rem 0 1.5rem 1.25rem;
            list-style-type: disc;
        }
        
        .legal-text li {
            margin-bottom: 0.5rem;
            color: #d1d5db;
        }
        
        .legal-text a {
            color: #d4af37;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        
        .legal-text a:hover {
            color: #f0d070;
        }

        /* Mobile Optimizations */
        @media (max-width: 640px) {
            .legal-text {
                font-size: 14px;
                line-height: 1.7;
            }
        }

/* datenschutz.html */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
        
        body {
            font-family: 'Inter', system_ui, sans-serif;
        }
        
        .heading-serif {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .gold-text {
            color: #d4af37;
        }

        .luxury-card {
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
        }
        
        .luxury-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.4);
            border-color: #d4af37;
        }

        .nav-link {
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-link:hover {
            color: #d4af37;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(to right, #d4af37, #b8972e);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }

        .premium-button {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .premium-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 40%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
            transition: 0.6s;
        }
        
        .premium-button:hover::before {
            left: 200%;
        }

        .nav-active {
            color: #d4af37;
            font-weight: 600;
        }

        .legal-text {
            font-size: 15px;
            line-height: 1.75;
            color: #d1d5db;
        }
        
        .legal-text h2 {
            font-size: 1.35rem;
            font-weight: 600;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: #d4af37;
            letter-spacing: -0.01em;
        }
        
        .legal-text h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1.75rem;
            margin-bottom: 0.75rem;
            color: #e5e7eb;
        }
        
        .legal-text p {
            margin-bottom: 1.25rem;
        }
        
        .legal-text ul {
            margin: 1rem 0 1.5rem 1.25rem;
            list-style-type: disc;
        }
        
        .legal-text li {
            margin-bottom: 0.5rem;
            color: #d1d5db;
        }
        
        .legal-text a {
            color: #d4af37;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        
        .legal-text a:hover {
            color: #f0d070;
        }

        /* Mobile Optimizations */
        @media (max-width: 640px) {
            .legal-text {
                font-size: 14px;
                line-height: 1.7;
            }
        }
