* {
            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: #2c3e50;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .header {
            background: linear-gradient(135deg, #d35400, #e67e22);
            color: white;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.3rem;
            font-weight: 900;
            color: #fff176;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffffff;
        }
        .logo::before {
            content: "🧙♂️";
            font-size: 2.5rem;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #fff176;
            border-bottom: 3px solid #fff176;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 15px 32px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
            margin-right: 20px;
        }
        .btn-login {
            background-color: #3498db;
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.25);
        }
        .btn-download:hover {
            background-color: #219653;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 25px;
        }
        h1 {
            font-size: 3rem;
            color: #d35400;
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 25px;
            border-bottom: 5px solid #fff176;
            font-weight: 900;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
        }
        h2 {
            font-size: 2.4rem;
            color: #e67e22;
            margin: 70px 0 35px;
            padding-left: 25px;
            border-left: 6px solid #fff176;
            font-weight: 800;
        }
        h3 {
            font-size: 1.8rem;
            color: #f39c12;
            margin: 45px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: "🌶️";
            font-size: 2rem;
        }
        p {
            margin-bottom: 28px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: 800;
            color: #d35400;
            font-size: 1.2rem;
        }
        .keyword-bold {
            font-weight: 900;
            color: #e67e22;
            text-decoration: underline;
            text-underline-offset: 5px;
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        img {
            max-width: 100%;
            height: auto;
            transition: transform 0.4s ease;
        }
        img:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: white;
            border-radius: 18px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fff8e1;
            border-radius: 12px;
            border: 2px solid #ffe082;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            color: #d35400;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #34495e;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .review-container {
            background-color: white;
            border-radius: 18px;
            padding: 35px;
            margin: 35px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-top: 6px solid #f39c12;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            border-bottom: 2px solid #f1f1f1;
            padding-bottom: 18px;
        }
        .reviewer-name {
            font-weight: 700;
            color: #2c3e50;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .reviewer-name::after {
            content: "📍";
            font-size: 1.3rem;
        }
        .review-rating {
            color: #f1c40f;
            font-size: 1.6rem;
            letter-spacing: 3px;
        }
        .guide-tip {
            background-color: #fff3e0;
            border-left: 6px solid #f39c12;
            padding: 25px 30px;
            margin: 35px 0;
            border-radius: 0 12px 12px 0;
        }
        .guide-tip p {
            margin-bottom: 0;
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.15rem;
        }
        .guide-tip strong {
            color: #d35400;
            font-size: 1.25rem;
        }
        .event-card {
            background-color: white;
            border-radius: 18px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-top: 6px solid #3498db;
        }
        .event-title {
            font-weight: 800;
            color: #3498db;
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .event-title::before {
            content: "🎉";
            font-size: 1.6rem;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0;
        }
        .tag {
            background-color: #7f8c8d;
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .genre-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0 50px;
        }
        .genre-link {
            color: #d35400;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-bottom: 4px solid transparent;
            transition: all 0.3s ease;
            padding: 8px 0;
        }
        .genre-link:hover {
            border-color: #fff176;
            color: #e67e22;
        }
        .download-section {
            background: linear-gradient(135deg, #fef9c3, #fffbeb);
            border-radius: 25px;
            padding: 50px 25px;
            margin: 70px 0;
            text-align: center;
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }
        .download-section h3 {
            justify-content: center;
            margin-bottom: 40px;
            color: #d35400;
            font-size: 2rem;
        }
        .download-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-bottom: 35px;
        }
        .community-section {
            background-color: #f9f5f0;
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .community-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .community-tab {
            padding: 12px 25px;
            background-color: white;
            border-radius: 10px;
            font-weight: 700;
            color: #34495e;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .community-tab.active {
            background-color: #d35400;
            color: white;
        }
        .community-content {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 70px 0 40px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-heading {
            font-size: 1.6rem;
            margin-bottom: 30px;
            color: #fff176;
            font-weight: 800;
            border-bottom: 3px solid #fff176;
            padding-bottom: 12px;
            display: inline-block;
        }
        .footer-note {
            font-size: 1.15rem;
            margin-bottom: 35px;
            line-height: 1.9;
            color: #ecf0f1;
        }
        .footer-note a {
            color: #fff176;
            text-decoration: none;
            font-weight: 700;
        }
        .footer-note a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 2px solid #34495e;
            font-size: 1.05rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #d35400, #e67e22);
                padding: 40px 25px;
                gap: 25px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.2);
                border-radius: 0 0 20px 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.4rem;
                margin-bottom: 45px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 2rem;
                margin: 55px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 25px;
            }
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 20px;
            }
            .btn-download {
                margin-right: 0;
            }
            .stats-box {
                padding: 25px;
                gap: 20px;
            }
            .stat-number {
                font-size: 2.3rem;
            }
            .review-container {
                padding: 25px;
            }
            .download-section {
                padding: 40px 20px;
            }
            .footer {
                padding: 50px 0 30px;
            }
            .community-tabs {
                gap: 15px;
            }
            .community-tab {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }
        .text-center {
            text-align: center !important;
        }
        .mb-70 {
            margin-bottom: 70px !important;
        }
        .mt-40 {
            margin-top: 40px !important;
        }
        .list-item {
            margin-bottom: 15px;
            font-size: 1.15rem;
            padding-left: 20px;
            position: relative;
        }
        .list-item::before {
            content: "•";
            color: #d35400;
            font-weight: 900;
            position: absolute;
            left: 0;
        }
