        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
            color: #f0f0f0;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffed4e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, #8b0000, #b22222);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 0 0 10px #ffd700;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links li a:hover {
            background: rgba(255, 215, 0, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd700;
        }
        .breadcrumb {
            padding: 10px 0;
            background: #222;
            margin-top: 5px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #ffd700;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(30, 30, 30, 0.9);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd700;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 2px 2px 5px #000;
        }
        h2 {
            font-size: 2.2rem;
            color: #ff6347;
            margin: 30px 0 15px;
            border-left: 5px solid #ffd700;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #00bfff;
            margin: 25px 0 12px;
        }
        h4 {
            font-size: 1.4rem;
            color: #32cd32;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            padding: 15px;
            border-left: 4px solid #ffd700;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            width: 80%;
            margin: 25px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.03);
        }
        .function-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .function-box {
            background: #222;
            padding: 25px;
            border-radius: 10px;
            border: 2px solid #444;
            transition: all 0.3s ease;
        }
        .function-box:hover {
            border-color: #ffd700;
            transform: translateY(-5px);
        }
        .function-box h3 {
            color: #ffd700;
            margin-top: 0;
        }
        .function-box form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .function-box input, .function-box textarea, .function-box select {
            padding: 12px;
            border: 1px solid #555;
            border-radius: 5px;
            background: #111;
            color: #fff;
            font-size: 1rem;
        }
        .function-box button {
            padding: 12px;
            background: linear-gradient(to right, #b22222, #8b0000);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        .function-box button:hover {
            background: linear-gradient(to right, #8b0000, #b22222);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.5rem;
            color: #ffd700;
            cursor: pointer;
        }
        .star-rating i:hover {
            color: #ffed4e;
        }
        footer {
            background: #111;
            padding: 30px 0 20px;
            margin-top: 40px;
            border-top: 3px solid #ffd700;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 25px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            border-bottom: 1px dotted #444;
        }
        friend-link a {
            color: #00bfff;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #8b0000;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .function-section {
                grid-template-columns: 1fr;
            }
            .featured-image {
                width: 100%;
            }
        }
