        * {
            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, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dccbd;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #00fff2;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 30px;
            color: #00fff2;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #00fff2, #4dccbd);
            border-radius: 2px;
        }
        .highlight {
            color: #00fff2;
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #00adb5, #4dccbd);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 173, 181, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #4dccbd, #00fff2);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 173, 181, 0.5);
        }
        header {
            background: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00fff2, #4dccbd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            font-size: 2.5rem;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            position: relative;
            padding: 5px 0;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #00fff2;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00fff2;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(22, 33, 62, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            gap: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border-top: 2px solid #00fff2;
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            padding: 20px 0;
            background: rgba(255,255,255,0.05);
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #4dccbd;
        }
        .hero {
            text-align: center;
            padding: 80px 0;
            background: radial-gradient(circle at center, rgba(0, 173, 181, 0.15) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #cccccc;
        }
        .search-box {
            max-width: 700px;
            margin: 40px auto;
            background: rgba(255, 255, 255, 0.08);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 242, 0.2);
        }
        .search-box form {
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border-radius: 50px;
            border: 2px solid #00adb5;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-box input:focus {
            border-color: #00fff2;
        }
        .search-box button {
            padding: 18px 35px;
            border-radius: 50px;
            font-size: 1.1rem;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 255, 242, 0.3);
        }
        .content-section h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: #4dccbd;
        }
        .content-section h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #00fff2;
        }
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            color: #d9d9d9;
        }
        .content-section ul, .content-section ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .content-section li {
            margin-bottom: 10px;
        }
        .featured-image {
            margin: 40px auto;
            max-width: 900px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }
        .inline-link {
            font-weight: 700;
            border-bottom: 2px dashed #4dccbd;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        .comment-box, .rating-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 242, 0.2);
        }
        .interactive-section h3 {
            color: #00fff2;
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        .interactive-section textarea, .interactive-section input, .interactive-section select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 10px;
            border: 1px solid #00adb5;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 1rem;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 2rem;
            color: #ffd700;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .footer-links {
            background: rgba(0, 0, 0, 0.4);
            padding: 50px 0;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 25px;
            margin: 10px;
            border-radius: 50px;
            border: 1px solid rgba(0, 255, 242, 0.2);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(0, 255, 242, 0.1);
            transform: translateY(-5px);
        }
        .links-container {
            text-align: center;
        }
        footer {
            background: #0f1525;
            padding: 40px 0 20px;
            margin-top: auto;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .section-title { font-size: 2.4rem; }
            .content-section h2 { font-size: 1.9rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.3rem; }
            .section-title { font-size: 2rem; }
            .search-box form { flex-direction: column; }
            .search-box button { width: 100%; }
            .content-section { padding: 25px; }
            .interactive-section { grid-template-columns: 1fr; }
            .web-link { display: block; margin: 10px 0; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .section-title { font-size: 1.8rem; }
            .btn { padding: 12px 25px; }
        }
