        * {
            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, #0c1e3e 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.8;
            font-size: 1.1rem;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            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;
        }
        .section-padding {
            padding: 60px 0;
        }
        header {
            background: rgba(12, 30, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #00bcd4;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00bcd4, #4fc3f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0, 188, 212, 0.3);
        }
        .logo a:hover {
            text-shadow: 0 4px 10px rgba(0, 188, 212, 0.5);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 1.1rem;
        }
        .desktop-nav a:hover {
            background: rgba(79, 195, 247, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00bcd4;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(12, 30, 62, 0.98);
            flex-direction: column;
            padding: 20px;
            border-top: 1px solid #00bcd4;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 5px;
            font-size: 1.2rem;
            text-align: center;
            border: 1px solid transparent;
        }
        .mobile-nav a:hover {
            border-color: #00bcd4;
            background: rgba(79, 195, 247, 0.1);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 0;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #4fc3f7;
        }
        main {
            background: rgba(255, 255, 255, 0.03);
            min-height: 100vh;
            border-radius: 10px;
            margin: 20px auto;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        article {
            max-width: 1000px;
            margin: 0 auto;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            background: linear-gradient(90deg, #00bcd4, #ff9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            border-bottom: 3px solid #00bcd4;
            padding-bottom: 20px;
            margin-bottom: 40px;
        }
        h2 {
            font-size: 2.4rem;
            color: #4fc3f7;
            border-left: 5px solid #ff9800;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffb74d;
        }
        h4 {
            font-size: 1.5rem;
            color: #a5d6a7;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.4rem;
            color: #bbdefb;
            font-weight: 300;
            text-align: center;
            font-style: italic;
            margin-bottom: 50px;
            padding: 0 10px;
        }
        .highlight {
            background: rgba(255, 152, 0, 0.15);
            border-left: 4px solid #ff9800;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .stat-box {
            background: linear-gradient(135deg, #1a237e, #311b92);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border: 1px solid #3949ab;
        }
        .stat-box h3 {
            color: #8c9eff;
        }
        .search-box {
            background: rgba(26, 35, 126, 0.7);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
        }
        .search-box form {
            display: flex;
            max-width: 600px;
            margin: 20px auto 0;
        }
        .search-box input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
            background: rgba(255,255,255,0.9);
        }
        .search-box button {
            background: linear-gradient(90deg, #ff9800, #ff5722);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #ff5722, #ff9800);
            transform: scale(1.05);
        }
        .comment-section, .rating-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid rgba(79, 195, 247, 0.3);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .comment-form textarea, .comment-form input, .rating-form select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #4fc3f7;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00bcd4, #0097a7);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            align-self: flex-start;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #0097a7, #00bcd4);
            box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: #ffd700;
        }
        .featured-image {
            margin: 40px auto;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            border: 3px solid #00bcd4;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            padding: 15px;
            background: rgba(0, 0, 0, 0.7);
            font-style: italic;
            color: #bbdefb;
            font-size: 0.95rem;
        }
        .internal-links {
            background: rgba(255, 193, 7, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #ffc107;
        }
        .internal-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        .internal-links li {
            padding: 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            transition: background 0.3s;
        }
        .internal-links li:hover {
            background: rgba(255, 193, 7, 0.2);
        }
        footer {
            background: #0a1520;
            padding: 50px 0 20px;
            border-top: 3px solid #00bcd4;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #4fc3f7;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 12px 20px;
            margin: 10px 0;
            border-radius: 6px;
            border: 1px solid transparent;
            transition: all 0.3s;
        }
        friend-link:hover {
            border-color: #4fc3f7;
            background: rgba(79, 195, 247, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #90a4ae;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            body { font-size: 1rem; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            .section-padding { padding: 40px 0; }
            main { padding: 20px; }
            .search-box form { flex-direction: column; }
            .search-box input { border-radius: 8px; margin-bottom: 10px; }
            .search-box button { border-radius: 8px; padding: 15px; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.9rem; }
            .lead { font-size: 1.2rem; }
            .logo a { font-size: 1.8rem; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
