* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1a20;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a3a4a 0%, #0c252f 100%);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #4ecdc4;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }
        .my-logo:hover {
            color: #ff6b6b;
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.7);
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #4ecdc4;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: #4ecdc4;
            color: #0f1a20;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #e0e0e0;
            cursor: pointer;
            background: none;
            border: none;
        }
        .search-box {
            margin: 40px auto;
            max-width: 600px;
            text-align: center;
        }
        .search-box h2 {
            color: #4ecdc4;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #2a4a5a;
            border-radius: 30px;
            background-color: #1a2b35;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #4ecdc4;
        }
        .search-form button {
            padding: 15px 30px;
            background: linear-gradient(to right, #ff6b6b, #4ecdc4);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        main {
            padding: 40px 0;
            background-color: #15232b;
            border-radius: 15px;
            margin-top: 30px;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
        }
        article {
            padding: 0 30px;
        }
        h1 {
            font-size: 3.5rem;
            color: #ff6b6b;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
            border-bottom: 3px solid #4ecdc4;
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.5rem;
            color: #4ecdc4;
            margin-top: 40px;
            margin-bottom: 20px;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
        }
        h3 {
            font-size: 2rem;
            color: #ffd166;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #aaa;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 10px;
        }
        strong {
            color: #ff6b6b;
            font-weight: 900;
        }
        em {
            color: #4ecdc4;
            font-style: italic;
        }
        .highlight {
            background-color: #2a4a5a;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #ff6b6b;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 3px solid #4ecdc4;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.03);
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .link-card {
            background-color: #1a3a4a;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .link-card:hover {
            background-color: #2a5a6a;
            transform: translateY(-10px);
        }
        .link-card a {
            color: #ffd166;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .link-card a:hover {
            text-decoration: underline;
        }
        .interaction {
            margin-top: 60px;
            padding: 30px;
            background-color: #1a2b35;
            border-radius: 15px;
        }
        .interaction h2 {
            text-align: center;
            border: none;
        }
        .comment-form, .rating-form {
            max-width: 800px;
            margin: 30px auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .comment-form input, .comment-form textarea, .rating-form select {
            padding: 15px;
            border: 2px solid #2a4a5a;
            border-radius: 10px;
            background-color: #0f1a20;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form input:focus, .comment-form textarea:focus, .rating-form select:focus {
            border-color: #4ecdc4;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button, .rating-form button {
            padding: 15px;
            background: linear-gradient(to right, #4ecdc4, #ff6b6b);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            opacity: 0.9;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #ffd166;
            margin-bottom: 20px;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover {
            color: #ff6b6b;
        }
        footer {
            background-color: #0c252f;
            padding: 40px 0;
            margin-top: 60px;
            text-align: center;
        }
        friend-link {
            display: block;
            margin-bottom: 30px;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .friend-links a {
            color: #4ecdc4;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 10px 20px;
            border: 2px solid #4ecdc4;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .friend-links a:hover {
            background-color: #4ecdc4;
            color: #0f1a20;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
            border-top: 1px solid #2a4a5a;
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                flex-direction: column;
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .search-form {
                flex-direction: column;
            }
            .links-list {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
        }
