        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: #007bff;
        }
        a:hover {
            color: #0056b3;
            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(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00ff88;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #00cc6a;
            text-decoration: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            color: #e0e0e0;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: #00ff88;
            color: #16213e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00ff88;
        }
        #menu-toggle {
            display: none;
        }
        .mobile-nav {
            display: none;
            background-color: #1a1a2e;
            padding: 15px;
            margin-top: 10px;
            border-radius: 8px;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 12px 0;
        }
        .mobile-nav a {
            color: #e0e0e0;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: #00ff88;
            color: #16213e;
        }
        #menu-toggle:checked ~ .mobile-nav {
            display: block;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #00ff88;
        }
        main {
            padding: 30px 0;
            background-color: white;
            min-height: 80vh;
        }
        article {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #16213e;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #00ff88;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #1a1a2e;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #007bff;
        }
        h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 25px 0 12px;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background-color: #f0f8ff;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #007bff;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .link-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        .link-item:hover {
            background: #e9ecef;
            border-color: #007bff;
            transform: translateY(-3px);
        }
        .form-section {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #dee2e6;
        }
        .form-section h3 {
            color: #1a1a2e;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #007bff;
            outline: none;
        }
        button {
            background: linear-gradient(to right, #007bff, #00ff88);
            color: white;
            border: none;
            padding: 12px 24px;
            font-size: 1.1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #0056b3, #00cc6a);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        footer {
            background-color: #1a1a2e;
            color: #e0e0e0;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #00ff88;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .friend-links ul {
            list-style: none;
        }
        .friend-links li {
            margin: 10px 0;
        }
        .friend-links a {
            color: #e0e0e0;
            padding: 5px 0;
            display: block;
            border-bottom: 1px dashed #444;
        }
        .friend-links a:hover {
            color: #00ff88;
            border-bottom-color: #00ff88;
        }
        .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;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1rem;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .form-section {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .logo a {
                font-size: 1.5rem;
            }
        }
