        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #ff4655;
            --primary-dark: #d13a47;
            --secondary: #1c1c2e;
            --accent: #00c9ff;
            --light: #f8f9fa;
            --dark: #121220;
            --gray: #6c757d;
            --border: #2d2d4a;
            --success: #28a745;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--dark);
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 70, 85, 0.4);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 70, 85, 0.6);
        }
        .highlight {
            color: var(--primary);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .header {
            background-color: rgba(18, 18, 32, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-shadow: 0 0 10px var(--primary);
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--primary);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            color: #ccc;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: white;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            padding: 20px;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin-bottom: 15px;
        }
        .nav-mobile a {
            color: #ccc;
            font-size: 1.1rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: white;
        }
        .breadcrumb {
            background-color: var(--secondary);
            padding: 15px 0;
            margin-top: 10px;
            border-radius: 8px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }
        .hero {
            background: radial-gradient(circle at 20% 50%, rgba(40, 40, 70, 0.8), transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 70, 85, 0.2), transparent 50%),
                        linear-gradient(135deg, var(--secondary), var(--dark));
            padding: 80px 0;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--border);
        }
        .search-box h2 {
            margin-bottom: 20px;
            color: white;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border-radius: 50px;
            border: 2px solid var(--border);
            background-color: rgba(255, 255, 255, 0.07);
            color: white;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .search-btn {
            padding: 15px 30px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--accent), #0099cc);
            color: white;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        .article-content {
            background-color: var(--secondary);
            border-radius: 15px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }
        .article-content h2, .article-content h3 {
            color: white;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        .article-content h2 {
            font-size: 2.2rem;
        }
        .article-content h3 {
            font-size: 1.8rem;
        }
        .article-content p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-left: 20px;
            margin-bottom: 1.5em;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .article-content strong {
            color: var(--primary);
        }
        .article-content blockquote {
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #aaa;
            background: rgba(0, 201, 255, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .img-container {
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .note-box {
            background: linear-gradient(135deg, rgba(255, 70, 85, 0.1), rgba(28, 28, 46, 0.8));
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .note-box strong {
            display: block;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        .comment-box, .rating-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid var(--border);
        }
        .comment-box h3, .rating-box h3 {
            color: white;
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background-color: rgba(255, 255, 255, 0.07);
            color: white;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .footer-links {
            background-color: var(--secondary);
            padding: 40px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: 8px;
            border-left: 3px solid var(--accent);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.07);
            transform: translateX(5px);
        }
        .web-link a {
            color: #ddd;
            font-weight: 500;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        .footer {
            text-align: center;
            padding: 30px 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .footer p {
            margin-bottom: 10px;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--border);
            border-radius: 50%;
            color: #ccc;
            transition: var(--transition);
        }
        .social-links a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .article-content { padding: 30px; }
        }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            .nav-desktop { display: none; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            .search-form { flex-direction: column; }
            .search-btn { width: 100%; }
            .interactive-section { grid-template-columns: 1fr; }
            .article-content h2 { font-size: 1.8rem; }
            .article-content h3 { font-size: 1.5rem; }
            .header-content { padding: 0 15px; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            .article-content { padding: 20px; }
            .hero { padding: 50px 0; }
            .section { padding: 40px 0; }
        }
