* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0c0c14;
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ff1e56;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        a:hover {
            color: #00ffea;
            transform: translateY(-2px);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(255, 30, 86, 0.2);
            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: 900;
            background: linear-gradient(90deg, #ff1e56, #00ffea);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 30, 86, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff1e56;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a1a2e;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-left: 4px solid #ff1e56;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            background-color: #121226;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #00ffea;
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
            background-color: #0f0f1a;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .content-section {
            background: linear-gradient(145deg, #1a1a2e, #222242);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h1, h2, h3 {
            color: #ff1e56;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        h1 {
            font-size: 3.5rem;
            text-align: center;
            background: linear-gradient(90deg, #ff1e56, #00ffea);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 6px solid #00ffea;
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.8rem;
            color: #00ffea;
            margin-top: 25px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 30, 86, 0.1);
            padding: 20px;
            border-left: 5px solid #ff1e56;
            border-radius: 8px;
            margin: 25px 0;
        }
        .highlight strong {
            color: #00ffea;
            font-size: 1.3rem;
        }
        .image-wrapper {
            text-align: center;
            margin: 40px 0;
        }
        .image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 3px solid #ff1e56;
            box-shadow: 0 10px 30px rgba(255, 30, 86, 0.4);
            transition: transform 0.5s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 1rem;
        }
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .feature-box {
            background: #16213e;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .feature-box:hover {
            border-color: #00ffea;
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 255, 234, 0.2);
        }
        .feature-box i {
            font-size: 3rem;
            color: #ff1e56;
            margin-bottom: 20px;
        }
        .feature-box h3 {
            margin-bottom: 15px;
        }
        .feature-box form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .feature-box input, .feature-box textarea, .feature-box select {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #444;
            background-color: #0c0c14;
            color: #f0f0f0;
            font-size: 1rem;
        }
        .feature-box button {
            padding: 12px;
            background: linear-gradient(90deg, #ff1e56, #00a2ff);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .feature-box button:hover {
            transform: scale(1.05);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background-color: #121226;
            border-radius: 12px;
        }
        .web-link {
            background: #1a1a2e;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #333;
        }
        .web-link a {
            color: #00ffea;
            font-weight: 600;
        }
        .web-link:hover {
            background-color: #222242;
        }
        footer {
            background-color: #0a0a12;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid #ff1e56;
        }
        .footer-content p {
            font-size: 1rem;
            color: #aaa;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.1rem;
            }
            .features {
                grid-template-columns: 1fr;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .logo a {
                font-size: 2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            .content-section {
                padding: 20px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
