* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f8f5f0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a1a1a;
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #ff7f0e;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fff;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links li a:hover {
            color: #ff7f0e;
        }
        .nav-buttons {
            display: flex;
            gap: 15px;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .btn-download {
            background-color: #ff7f0e;
            color: #fff;
        }
        .btn-download:hover {
            background-color: #e06c00;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #fff;
            color: #1a1a1a;
        }
        .btn-login:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        .daman-link {
            color: #ff7f0e;
            text-decoration: none;
            font-weight: 600;
            margin-left: 20px;
        }
        .daman-link:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
        }
        .intro-section {
            margin-bottom: 60px;
            text-align: center;
        }
        h1 {
            font-size: 42px;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 span {
            color: #ff7f0e;
        }
        .intro-text {
            font-size: 18px;
            max-width: 900px;
            margin: 0 auto 30px;
            color: #555;
        }
        .feature-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 32px;
            color: #1a1a1a;
            margin: 60px 0 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff7f0e;
        }
        h3 {
            font-size: 24px;
            color: #1a1a1a;
            margin: 40px 0 20px;
        }
        p {
            margin-bottom: 25px;
            font-size: 17px;
            color: #444;
        }
        .highlight {
            font-weight: 700;
            color: #ff7f0e;
        }
        .gameplay-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .gameplay-card {
            background-color: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .gameplay-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        .gameplay-card p {
            margin-bottom: 15px;
        }
        .gameplay-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        .myth-section {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            margin: 40px 0;
        }
        .trivia-list {
            list-style-type: disc;
            margin-left: 30px;
            margin-bottom: 30px;
        }
        .trivia-list li {
            margin-bottom: 15px;
            font-size: 17px;
            color: #444;
        }
        .faq-section {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            margin: 40px 0;
        }
        .faq-item {
            margin-bottom: 25px;
        }
        .faq-question {
            font-weight: 700;
            font-size: 18px;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        .faq-answer {
            font-size: 17px;
            color: #444;
        }
        footer {
            background-color: #1a1a1a;
            color: #fff;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #ff7f0e;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links li a:hover {
            color: #ff7f0e;
        }
        .recommendation {
            background-color: #2a2a2a;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 40px;
        }
        .recommendation h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #ff7f0e;
        }
        .recommendation p {
            color: #eee;
            margin-bottom: 0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #ccc;
            font-size: 14px;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .nav-links, .nav-buttons {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-nav {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a1a1a;
                padding: 20px;
                gap: 15px;
                border-top: 1px solid #333;
            }
            .mobile-nav.active {
                display: flex;
            }
            .mobile-nav li a {
                color: #fff;
                text-decoration: none;
                font-size: 16px;
            }
            .mobile-buttons {
                display: flex;
                gap: 15px;
                margin-top: 10px;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 22px;
            }
            .intro-text {
                font-size: 16px;
            }
            .myth-section, .faq-section {
                padding: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .footer-content {
                gap: 30px;
            }
        }
