        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: #121212;
            padding: 0;
            margin: 0;
            overflow-x: hidden;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9900;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1a1a1a;
            border-bottom: 3px solid #ff9900;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a.my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ff9900;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #ff9900, #ff3300);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 4px;
            background: #262626;
        }
        .nav-links a:hover {
            background: #ff9900;
            color: #121212;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ff9900;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #262626;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #cccccc;
        }
        .breadcrumb span {
            color: #ff9900;
        }
        main {
            padding: 30px 0;
            background: #1a1a1a;
            border-radius: 10px;
            margin: 20px auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        article {
            padding: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ff9900;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 2px 2px 4px #000;
        }
        h2 {
            font-size: 2.2rem;
            color: #4da6ff;
            margin: 40px 0 20px;
            border-left: 5px solid #ff9900;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #cccccc;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #999999;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background: #333333;
            border-left: 4px solid #ff9900;
            padding: 15px;
            margin: 20px 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: #ff9900;
        }
        .feature-img {
            width: 80%;
            margin: 30px auto;
            border: 5px solid #ff9900;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255,153,0,0.5);
        }
        .feature-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .feature-img img:hover {
            transform: scale(1.03);
        }
        .form-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
            padding: 20px;
            background: #262626;
            border-radius: 10px;
        }
        .form-box {
            background: #333333;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .form-box h3 {
            color: #ff9900;
            margin-bottom: 20px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #555;
            border-radius: 5px;
            background: #1a1a1a;
            color: #e0e0e0;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #ff9900, #ff3300);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,153,0,0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            margin: 15px 0;
        }
        .star {
            font-size: 1.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ff9900;
        }
        footer {
            background: #1a1a1a;
            padding: 40px 0 20px;
            border-top: 3px solid #ff9900;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ff9900;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 15px;
            background: #262626;
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #333333;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #999;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .form-section {
                grid-template-columns: 1fr;
            }
            .feature-img {
                width: 95%;
            }
        }
