        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 100%);
            color: #f0f0f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #ff66cc; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ffcc00; text-shadow: 0 0 8px rgba(255, 204, 0, 0.7); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(20, 20, 40, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2rem;
            background: linear-gradient(90deg, #ff66cc, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            font-weight: 900;
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            border: 2px solid transparent;
        }
        .main-nav a:hover {
            border-color: #ff66cc;
            background: rgba(255, 102, 204, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ffcc00; }
        .breadcrumb span { color: #ff66cc; }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(255, 102, 204, 0.1);
            border-radius: 20px;
            border-left: 5px solid #ff66cc;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #ffcc00, #ff66cc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.5rem;
            margin: 2.5rem 0 1.5rem;
            color: #ffcc00;
            border-bottom: 3px solid #ff66cc;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #ff66cc;
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem;
            color: #cc99ff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: #ffcc00;
            margin-bottom: 2rem;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #ffcc00;
            margin: 2rem 0;
        }
        .mod-image {
            float: right;
            margin: 0 0 1.5rem 2rem;
            max-width: 500px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            border: 3px solid #ff66cc;
        }
        .mod-image:hover { transform: translateY(-5px); }
        .interactive-module {
            background: rgba(30, 30, 60, 0.8);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
        }
        .module-title i { font-size: 2rem; }
        form {
            display: grid;
            gap: 1.5rem;
        }
        .form-group { display: flex; flex-direction: column; }
        label { margin-bottom: 0.5rem; font-weight: bold; }
        input, textarea, select {
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid #555;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff66cc;
            box-shadow: 0 0 10px rgba(255, 102, 204, 0.5);
        }
        button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #ff66cc, #ffcc00);
            color: #000;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 102, 204, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star:hover,
        .star-rating .star.active { color: #ffcc00; }
        .internal-links {
            background: rgba(255, 102, 204, 0.1);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        .internal-links h3 { text-align: center; }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .link-card {
            background: rgba(40, 40, 80, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
        }
        .link-card:hover {
            background: rgba(255, 102, 204, 0.2);
            transform: scale(1.05);
        }
        .site-footer {
            background: rgba(10, 10, 20, 0.98);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(255, 102, 204, 0.2); }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(20, 20, 40, 0.98);
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul { display: flex; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .mod-image { float: none; margin: 1.5rem auto; max-width: 100%; }
            .links-grid { grid-template-columns: 1fr; }
        }
