* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #faf6ed;
            color: #2d2d2d;
            line-height: 1.9;
            padding-bottom: 80px;
            font-size: 16px;
            letter-spacing: 0.4px;
        }
        .header {
            background: linear-gradient(135deg, #d97706, #f59e0b);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
            text-decoration: none;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo span {
            color: #fefce8;
        }
        .logo::before {
            content: "🥬";
            font-size: 3.2rem;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 10px 0;
            border-bottom: 4px solid transparent;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #fefce8;
            border-bottom: 4px solid #fefce8;
        }
        .hamburger {
            display: none;
            font-size: 2.5rem;
            cursor: pointer;
            color: white;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 18px 40px;
            border-radius: 20px;
            font-weight: 800;
            text-decoration: none;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            font-size: 1.2rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            margin: 15px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-download {
            background-color: #10b981;
            color: white;
            margin-right: 20px;
        }
        .btn-login {
            background-color: #3b82f6;
            color: white;
        }
        .btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.25);
        }
        .btn-download:hover {
            background-color: #059669;
        }
        .btn-login:hover {
            background-color: #2563eb;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 25px;
        }
        h1 {
            font-size: 3.5rem;
            color: #d97706;
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 25px;
            border-bottom: 8px solid #fde68a;
            font-weight: 900;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.15);
            letter-spacing: 1px;
        }
        h2 {
            font-size: 2.5rem;
            color: #b45309;
            margin: 70px 0 35px;
            padding-left: 25px;
            border-left: 9px solid #fde68a;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h3 {
            font-size: 2rem;
            color: #059669;
            margin: 50px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h3::before {
            content: "🌟";
            font-size: 2.2rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            line-height: 1.9;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 800;
            color: #d97706;
            font-size: 1.35rem;
        }
        .keyword-bold {
            font-weight: 900;
            color: #059669;
            text-decoration: underline;
            text-underline-offset: 8px;
            font-size: 1.3rem;
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        img {
            max-width: 100%;
            height: auto;
            transition: transform 0.6s ease;
        }
        img:hover {
            transform: scale(1.05);
        }
        .stats-box {
            background-color: white;
            border-radius: 25px;
            padding: 50px;
            margin: 50px 0;
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .stat-item {
            text-align: center;
            padding: 30px;
            background-color: #fefce8;
            border-radius: 20px;
            border: 3px solid #fde68a;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: #d97706;
            margin-bottom: 15px;
        }
        .stat-label {
            color: #374151;
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.6;
        }
        .review-container {
            background-color: white;
            border-radius: 25px;
            padding: 45px;
            margin: 45px 0;
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
            border-top: 10px solid #059669;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            border-bottom: 3px solid #f3f4f6;
            padding-bottom: 20px;
        }
        .reviewer-name {
            font-weight: 700;
            color: #1f2937;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .reviewer-name::after {
            content: "📍";
            font-size: 1.6rem;
        }
        .review-rating {
            color: #f59e0b;
            font-size: 2rem;
            letter-spacing: 6px;
        }
        .guide-tip {
            background-color: #ecfdf5;
            border-left: 10px solid #059669;
            padding: 30px 35px;
            margin: 45px 0;
            border-radius: 0 20px 20px 0;
        }
        .guide-tip p {
            margin-bottom: 0;
            font-weight: 700;
            color: #1f2937;
            font-size: 1.3rem;
        }
        .guide-tip strong {
            color: #047857;
            font-size: 1.4rem;
        }
        .event-card {
            background-color: white;
            border-radius: 25px;
            padding: 40px;
            margin: 45px 0;
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
            border-top: 10px solid #3b82f6;
        }
        .event-title {
            font-weight: 800;
            color: #2563eb;
            margin-bottom: 25px;
            font-size: 1.7rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .event-title::before {
            content: "🎊";
            font-size: 2.1rem;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 50px 0;
        }
        .tag {
            background-color: #9ca3af;
            color: white;
            padding: 15px 30px;
            border-radius: 35px;
            text-decoration: none;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            font-weight: 700;
            text-transform: capitalize;
        }
        .tag:hover {
            background-color: #d97706;
            transform: translateY(-6px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
        }
        .genre-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 50px 0 60px;
        }
        .genre-link {
            color: #d97706;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.25rem;
            border-bottom: 5px solid transparent;
            transition: all 0.3s ease;
            padding: 12px 0;
            text-transform: capitalize;
        }
        .genre-link:hover {
            border-color: #fde68a;
            color: #b45309;
        }
        .download-section {
            background: linear-gradient(135deg, #fefce8, #fef3c7);
            border-radius: 30px;
            padding: 60px 35px;
            margin: 70px 0;
            text-align: center;
            box-shadow: 0 20px 45px rgba(0,0,0,0.12);
        }
        .download-section h3 {
            justify-content: center;
            margin-bottom: 50px;
            color: #d97706;
            font-size: 2.5rem;
        }
        .download-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 35px;
            margin-bottom: 45px;
        }
        .community-section {
            background-color: #eff6ff;
            border-radius: 28px;
            padding: 50px;
            margin: 70px 0;
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }
        .community-tabs {
            display: flex;
            gap: 25px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .community-tab {
            padding: 16px 32px;
            background-color: white;
            border-radius: 15px;
            font-weight: 700;
            color: #374151;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
            font-size: 1.15rem;
        }
        .community-tab.active {
            background-color: #d97706;
            color: white;
        }
        .community-content {
            background-color: white;
            border-radius: 22px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.07);
        }
        .footer {
            background-color: #1f2937;
            color: white;
            padding: 80px 0 50px;
            margin-top: 120px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .footer-section {
            margin-bottom: 60px;
        }
        .footer-heading {
            font-size: 1.9rem;
            margin-bottom: 40px;
            color: #fde68a;
            font-weight: 800;
            border-bottom: 4px solid #fde68a;
            padding-bottom: 20px;
            display: inline-block;
        }
        .footer-note {
            font-size: 1.3rem;
            margin-bottom: 45px;
            line-height: 2.1;
            color: #e5e7eb;
        }
        .footer-note a {
            color: #fde68a;
            text-decoration: none;
            font-weight: 700;
        }
        .footer-note a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 3px solid #374151;
            font-size: 1.2rem;
            color: #d1d5db;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #d97706, #f59e0b);
                padding: 50px 30px;
                gap: 30px;
                box-shadow: 0 20px 30px rgba(0,0,0,0.25);
                border-radius: 0 0 30px 30px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.8rem;
                margin-bottom: 50px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 2.2rem;
                margin: 60px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.8rem;
                margin: 45px 0 22px;
            }
            p {
                font-size: 1.15rem;
                margin-bottom: 22px;
            }
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 25px;
            }
            .btn-download {
                margin-right: 0;
            }
            .stats-box {
                padding: 35px;
                gap: 25px;
            }
            .stat-number {
                font-size: 3rem;
            }
            .review-container {
                padding: 35px;
            }
            .download-section {
                padding: 50px 30px;
            }
            .footer {
                padding: 70px 0 40px;
            }
            .community-tabs {
                gap: 20px;
            }
            .community-tab {
                padding: 14px 25px;
                font-size: 1.1rem;
            }
        }
        .text-center {
            text-align: center !important;
        }
        .mb-80 {
            margin-bottom: 80px !important;
        }
        .mt-50 {
            margin-top: 50px !important;
        }
        .list-item {
            margin-bottom: 20px;
            font-size: 1.2rem;
            padding-left: 30px;
            position: relative;
        }
        .list-item::before {
            content: "•";
            color: #d97706;
            font-weight: 900;
            position: absolute;
            left: 0;
            font-size: 1.8rem;
        }
        .quote-box {
            background-color: #f8fafc;
            border-left: 7px solid #3b82f6;
            padding: 30px 35px;
            margin: 40px 0;
            border-radius: 0 15px 15px 0;
            font-style: italic;
            color: #4b5563;
        }
        .quote-box author {
            display: block;
            text-align: right;
            margin-top: 20px;
            font-weight: 700;
            color: #d97706;
            font-style: normal;
            font-size: 1.25rem;
        }
