        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a2b3e 100%);
            color: #e0e7ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            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;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #339af0, #228be6);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #228be6, #1c7ed6);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #dbe4ff;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #74c0fc, #b197fc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #339af0;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d8ff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        blockquote {
            border-left: 4px solid #ff6b6b;
            background: rgba(255, 107, 107, 0.08);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2d3748;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #4dabf7, #da77f2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo span {
            color: #ff6b6b;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #c5d9ff;
            font-weight: 500;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #4dabf7;
            left: 0;
            bottom: 0;
            transition: width 0.3s ease;
        }
        nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #c5d9ff;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(26, 43, 62, 0.7);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            margin: 0;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-bottom: 0;
        }
        .breadcrumb li:not(:last-child):after {
            content: '›';
            margin: 0 10px;
            color: #74c0fc;
        }
        .hero {
            background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(190, 75, 219, 0.1) 0%, transparent 50%);
            padding: 80px 0;
            text-align: center;
            border-bottom: 1px solid #2d3748;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 20px auto 30px;
            color: #b3c7ff;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: rgba(26, 43, 62, 0.7);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #3a506b;
        }
        .search-box h3 {
            text-align: center;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border-radius: 50px 0 0 50px;
            border: 2px solid #339af0;
            background: #0c1a2d;
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(90deg, #339af0, #228be6);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #228be6, #1c7ed6);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        main {
            background: rgba(18, 32, 47, 0.7);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid #2d3748;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .featured-img {
            margin: 30px 0;
            text-align: center;
        }
        .featured-img img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .img-caption {
            font-style: italic;
            color: #94a3b8;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(51, 154, 240, 0.15), transparent);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #339af0;
        }
        aside {
            background: rgba(18, 32, 47, 0.7);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #2d3748;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            border-bottom: 2px solid #339af0;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd43b;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comments-section {
            margin-top: 60px;
        }
        .comment-form, .rating-form {
            background: rgba(26, 43, 62, 0.7);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #a5d8ff;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #3a506b;
            background: #0c1a2d;
            color: white;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .footer-links {
            background: rgba(12, 26, 45, 0.9);
            padding: 40px 0;
            border-top: 1px solid #2d3748;
            border-bottom: 1px solid #2d3748;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(26, 43, 62, 0.5);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(51, 154, 240, 0.15);
            transform: translateX(5px);
        }
        footer {
            background: #0c1a2d;
            padding: 40px 0 20px;
            text-align: center;
            margin-top: auto;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2d3748;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 26, 45, 0.98);
                padding: 20px;
                border-top: 1px solid #2d3748;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 50px;
                margin: 5px 0;
            }
            main, aside {
                padding: 25px;
            }
        }
