        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9900;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            padding: 15px 0;
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .my-logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            background: rgba(255, 204, 0, 0.1);
        }
        .nav-desktop a:hover {
            background: rgba(255, 204, 0, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
            background: none;
            border: none;
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.95);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 2px solid #ffcc00;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #333;
            font-size: 1.2rem;
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ffcc00;
        }
        .breadcrumb a:hover {
            color: #ff9900;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 3.2rem;
            color: #ffcc00;
            text-align: center;
            margin-bottom: 25px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            border-bottom: 3px solid #ff9900;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.5rem;
            color: #ffcc00;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #ff9900;
        }
        h3 {
            font-size: 2rem;
            color: #ffcc00;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.5rem;
            color: #ffcc00;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .bold-text {
            font-weight: bold;
            color: #ffcc00;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 25px auto;
            display: block;
            border: 3px solid #ffcc00;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .functional-section {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 2px solid #ffcc00;
        }
        .functional-section h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .functional-section form {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 15px;
        }
        .functional-section input, .functional-section textarea, .functional-section select {
            padding: 12px;
            border: 1px solid #ffcc00;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        .functional-section button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            color: #000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        .functional-section button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(255, 204, 0, 0.4);
        }
        .comment-form, .rating-form {
            grid-template-columns: 1fr;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .stars span:hover, .stars span.active {
            color: #ff9900;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
            justify-content: center;
        }
        .link-list a {
            background: rgba(255, 204, 0, 0.2);
            padding: 10px 20px;
            border-radius: 30px;
            border: 1px solid #ffcc00;
            transition: all 0.3s ease;
        }
        .link-list a:hover {
            background: rgba(255, 204, 0, 0.4);
            transform: scale(1.05);
        }
        .update-time {
            text-align: center;
            font-size: 1rem;
            color: #aaa;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px dashed #ffcc00;
        }
        footer {
            background: rgba(0, 0, 0, 0.95);
            padding: 30px 0;
            border-top: 3px solid #ffcc00;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .friend-links {
            background: rgba(255, 204, 0, 0.1);
            padding: 20px;
            border-radius: 10px;
        }
        .friend-links h3 {
            color: #ffcc00;
            margin-bottom: 15px;
        }
        friend-link {
            display: block;
            padding: 10px;
            margin: 8px 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            border-left: 3px solid #ffcc00;
        }
        friend-link:hover {
            background: rgba(255, 204, 0, 0.2);
            transform: translateX(5px);
            transition: all 0.3s ease;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
            grid-column: 1 / -1;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            h4 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1.1rem;
                padding: 0 5px;
            }
            .functional-section form {
                grid-template-columns: 1fr;
            }
            .link-list {
                flex-direction: column;
                align-items: center;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            article {
                padding: 20px;
            }
        }
