        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #ff6b6b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff8e8e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0a0e17 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #ff6b6b;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ff6b6b;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #ff6b6b, #ffd166);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff6b6b;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b6b;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff6b6b;
        }
        main {
            padding: 2rem 0;
            background: radial-gradient(circle at 50% 0%, #1a1f2e 0%, #0a0e17 100%);
        }
        article {
            background: rgba(26, 31, 46, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 3.2rem;
            color: #ffd166;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            color: #ff9a76;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #333;
        }
        h3 {
            font-size: 1.8rem;
            color: #6ac6ff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #a78bfa;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #ffd166;
            font-weight: 500;
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(255, 107, 107, 0.1);
            border-left: 4px solid #ff6b6b;
            border-radius: 0 8px 8px 0;
        }
        strong {
            color: #ff9a76;
            font-weight: 700;
        }
        em {
            color: #6ac6ff;
            font-style: italic;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        blockquote {
            border-left: 5px solid #ff6b6b;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #ccc;
            background: rgba(255, 107, 107, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            text-align: center;
        }
        .feature-img figcaption {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
            text-decoration: none;
        }
        .interactive-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ffd166;
        }
        .form-control {
            width: 100%;
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #444;
            background: #1a1f2e;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #ff6b6b;
            box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd166;
        }
        footer {
            background: #1a1f2e;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid #333;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ff9a76;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: #ff6b6b;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                display: none;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0.5rem 0;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 1.5rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
