        body {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #ffeaa7, #fab1a0, #fd79a8);
        }

        * {
            box-sizing: border-box;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.8rem;
            font-weight: bold;
            color: #e17055;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
            color: #fd79a8;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #fd79a8, #e17055, #fab1a0);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(253, 121, 168, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .logo:hover .logo-icon::before {
            opacity: 1;
            animation: shine 0.6s ease-in-out;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .logo-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-main {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e17055, #fd79a8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-sub {
            font-size: 0.7rem;
            font-weight: 500;
            color: #636e72;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #2d3436;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }

        .nav-links a:hover {
            background: #fd79a8;
            color: white;
            transform: translateY(-2px);
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(45deg, #fd79a8, #e84393);
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: #e17055;
            border: 2px solid #e17055;
        }

        .btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Page Container */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            text-align: center;
            overflow: visible;
            padding: 2rem 0;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffeaa7, #fab1a0, #fd79a8, #a29bfe);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.3;
            animation: float 15s linear infinite;
        }

        @keyframes float {
            from { transform: translateX(-100px); }
            to { transform: translateX(calc(100vw + 100px)); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            animation: slideInUp 1s ease-out 0.3s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .image-slider {
            position: relative;
            width: 80%;
            max-width: 1000px;
            height: 300px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            margin: 0 auto;
        }

        .slider-container {
            display: flex;
            width: 500%;
            height: 100%;
            animation: slide 15s infinite;
        }

        .slide {
            width: 20%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        @keyframes slide {
            0%, 20% { transform: translateX(0); }
            25%, 45% { transform: translateX(-20%); }
            50%, 70% { transform: translateX(-40%); }
            75%, 95% { transform: translateX(-60%); }
            100% { transform: translateX(-80%); }
        }

        /* Menu Section */
        .menu-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            min-height: 250vh;
        }

        .menu-section h2 {
            text-align: center;
            font-size: 3rem;
            color: white;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .menu-carousel {
            position: relative;
            overflow: hidden;
            height: 400px;
            margin: 3rem 0;
        }

        .menu-track {
            display: flex;
            width: calc(300px * 20);
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            from { transform: translateX(0); }
            to { transform: translateX(calc(-300px * 10)); }
        }

        .menu-item {
            min-width: 280px;
            margin: 0 10px;
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .menu-item:hover {
            transform: translateY(-10px) scale(1.05) rotate(2deg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .menu-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1rem;
        }

        .menu-item h3 {
            color: #2d3436;
            margin-bottom: 0.5rem;
        }

        .menu-item p {
            color: #636e72;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #e17055;
        }

        /* About Section */
        .about-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #a29bfe, #6c5ce7);
            min-height: 200vh;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            color: white;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .about-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        /* Privacy & Terms Sections */
        .content-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #fd79a8, #e84393);
            min-height: 100vh;
        }

        .content-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .content-container h2 {
            color: #2d3436;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .content-container h3 {
            color: #e17055;
            font-size: 1.5rem;
            margin: 2rem 0 1rem 0;
        }

        .content-container p {
            color: #636e72;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Auth Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            max-width: 400px;
            width: 90%;
            text-align: center;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #636e72;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2d3436;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #fd79a8;
        }

        /* Footer */
        .footer {
            background: #2d3436;
            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: #fd79a8;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #b2bec3;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #fd79a8;
        }

        .subscribe-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .subscribe-form input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: #fd79a8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #e84393;
            transform: translateY(-3px) scale(1.1);
        }

        .footer-bottom {
            border-top: 1px solid #636e72;
            padding-top: 1rem;
            color: #b2bec3;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-container {
                padding: 0 1rem;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .menu-item {
                min-width: 260px;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .menu-item {
                min-width: 240px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0.8rem 1rem;
            }
            
            .logo {
                gap: 0.6rem;
            }
            
            .logo-icon {
                width: 38px;
                height: 38px;
            }
            
            .logo-icon svg {
                width: 20px;
                height: 20px;
            }
            
            .logo-main {
                font-size: 1.5rem;
            }
            
            .logo-sub {
                font-size: 0.6rem;
            }
            
            .auth-buttons {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
            
            .hero {
                min-height: 100vh;
                padding: 1rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }
            
            .hero p {
                font-size: 1.2rem;
                margin-bottom: 1.5rem;
            }
            
            .hero-content {
                padding: 1rem;
            }
            
            .menu-section {
                padding: 3rem 1rem;
                min-height: 200vh;
            }
            
            .menu-section h2 {
                font-size: 2.5rem;
            }
            
            .menu-item {
                min-width: 220px;
            }
            
            .about-section {
                padding: 3rem 1rem;
                min-height: 150vh;
            }
            
            .about-text h2 {
                font-size: 2.5rem;
            }
            
            .about-text h3 {
                font-size: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .subscribe-form {
                flex-direction: column;
            }
            
            .image-slider {
                width: 95%;
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                min-height: 100vh;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .menu-section {
                min-height: 180vh;
            }
            
            .menu-section h2 {
                font-size: 2rem;
            }
            
            .menu-item {
                min-width: 200px;
            }
            
            .about-section {
                min-height: 120vh;
            }
            
            .about-text h2 {
                font-size: 2rem;
            }
            
            .about-text h3 {
                font-size: 1.5rem;
            }
            
            .modal-content {
                padding: 2rem;
                margin: 1rem;
            }
            
            .image-slider {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.5rem;
            }
            
            .logo {
                gap: 0.5rem;
            }
            
            .logo-icon {
                width: 32px;
                height: 32px;
            }
            
            .logo-icon svg {
                width: 16px;
                height: 16px;
            }
            
            .logo-main {
                font-size: 1.3rem;
            }
            
            .logo-sub {
                font-size: 0.55rem;
            }
            
            .auth-buttons .btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .menu-item {
                min-width: 180px;
            }
            
            .menu-item h3 {
                font-size: 1rem;
            }
            
            .menu-item p {
                font-size: 0.8rem;
            }
            
            .price {
                font-size: 1rem;
            }
        }

        /* Image Styles */
        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1920&h=1080&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.3;
        }

        .section-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.2;
        }

        .card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }

        .card-image:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .hero-bg-image,
            .section-bg-image {
                background-attachment: scroll;
            }
        }

        /* User Status */
        .user-status {
            display: none;
            align-items: center;
            gap: 1rem;
        }

        .user-status.active {
            display: flex;
        }

        .logout-btn {
            background: #e17055;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logout-btn:hover {
            background: #d63031;
            transform: translateY(-2px);
        }
