        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e6e6e6;
            line-height: 1.8;
            font-size: 1.1rem;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #80c1ff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(25, 30, 36, 0.7);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid #2a323d;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0c0f15 100%);
            padding: 1.2rem 0;
            border-bottom: 3px solid #4da6ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd166, #ff9e6d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo a:hover {
            transform: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: #b3ccff;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background: rgba(77, 166, 255, 0.15);
            color: #ffffff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #b3ccff;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            color: #8a9ba8;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #8a9ba8;
        }
        .breadcrumb a:hover {
            color: #4da6ff;
        }
        main {
            padding: 2rem 0;
        }
        h1 {
            font-size: 3rem;
            color: #ffd166;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 209, 102, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            color: #4da6ff;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 3px solid #2a323d;
        }
        h3 {
            font-size: 1.7rem;
            color: #ff9e6d;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 209, 102, 0.1);
            border-left: 5px solid #ffd166;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .keyword {
            font-weight: bold;
            color: #ff9e6d;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #1e2530, #171d26);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2a323d;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #4da6ff;
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #ffd166;
        }
        .form-container {
            background: rgba(30, 35, 42, 0.8);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #b3ccff;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #3a4553;
            background-color: #1a2029;
            color: #e6e6e6;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4da6ff;
            box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
        }
        button {
            background: linear-gradient(90deg, #4da6ff, #2b6cb0);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #66b3ff, #3182ce);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(77, 166, 255, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffd166;
            margin: 1rem 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .web-links-section {
            margin: 3rem 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(40, 45, 55, 0.7);
            padding: 1.2rem;
            border-radius: 10px;
            border-left: 5px solid #ff9e6d;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(50, 55, 65, 0.9);
        }
        .web-link a {
            color: #e6e6e6;
            font-size: 1.1rem;
        }
        footer {
            background: #0c0f15;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #2a323d;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            color: #8a9ba8;
            font-size: 0.9rem;
            border-top: 1px solid #2a323d;
            padding-top: 1.5rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: #1a1f2e;
                width: 100%;
                padding: 2rem;
                transition: left 0.5s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 768px) {
            section {
                padding: 1.5rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
            .form-container {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .logo { font-size: 2rem; }
        }
