        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c1a2d 0%, #152642 50%, #1a1e2c 100%);
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d6a7;
        }
        h4 {
            font-size: 1.4rem;
            color: #ffab91;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        .lead {
            font-size: 1.4rem;
            color: #bbdefb;
            font-style: italic;
            border-left: 4px solid #d4af37;
            padding-left: 1.5rem;
            margin: 2.5rem 0;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #d4af37;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 2.4rem;
            font-weight: 900;
            color: #ffcc00;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: #4fc3f7;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            background: rgba(255, 204, 0, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1.2rem 0;
            background: rgba(21, 38, 66, 0.7);
            margin-bottom: 2.5rem;
            border-bottom: 1px solid #2a3f5f;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.7rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.7rem;
            color: #4fc3f7;
        }
        .search-container {
            margin: 2.5rem auto;
            max-width: 700px;
            padding: 1.5rem;
            background: rgba(30, 45, 70, 0.7);
            border-radius: 12px;
            border: 1px solid #3a506b;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #3a506b;
            border-radius: 8px;
            background: rgba(15, 25, 40, 0.9);
            color: #fff;
            font-size: 1.1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: #4fc3f7;
            box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
        }
        .search-button {
            padding: 0 2rem;
            background: linear-gradient(to right, #d4af37, #ffcc00);
            color: #0c1a2d;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0 4rem;
        }
        .content-area {
            background: rgba(21, 38, 66, 0.6);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a3f5f;
        }
        .sidebar {
            background: rgba(21, 38, 66, 0.6);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid #2a3f5f;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar h3 {
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #3a506b;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2.5rem 0;
            border: 3px solid #d4af37;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .info-box {
            background: linear-gradient(to right, rgba(30, 60, 114, 0.8), rgba(21, 38, 66, 0.9));
            border-left: 5px solid #d4af37;
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 12px 12px 0;
        }
        .warning-box {
            background: rgba(179, 68, 54, 0.15);
            border-left: 5px solid #e57373;
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 12px 12px 0;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 3rem 0;
            background: rgba(15, 25, 40, 0.8);
            border-radius: 10px;
            overflow: hidden;
        }
        .comparison-table th, .comparison-table td {
            padding: 1.2rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid #2a3f5f;
        }
        .comparison-table th {
            background: #1a3a5f;
            color: #ffcc00;
            font-weight: 700;
        }
        .comparison-table tr:hover {
            background: rgba(79, 195, 247, 0.1);
        }
        .rating-section {
            background: rgba(30, 45, 70, 0.7);
            padding: 3rem;
            border-radius: 15px;
            margin: 4rem 0;
            border: 1px solid #3a506b;
        }
        .star-rating {
            color: #ffcc00;
            font-size: 1.8rem;
            margin: 1rem 0;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #bbdefb;
        }
        .form-input, .form-textarea, .form-select {
            padding: 1rem;
            border: 2px solid #3a506b;
            border-radius: 8px;
            background: rgba(15, 25, 40, 0.9);
            color: #fff;
            font-size: 1rem;
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: #4fc3f7;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            padding: 1.2rem 2.5rem;
            background: linear-gradient(to right, #2e7d32, #4caf50);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            justify-self: start;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(76, 175, 80, 0.5);
        }
        footer {
            background: rgba(12, 26, 45, 0.98);
            padding: 4rem 0 2rem;
            border-top: 3px solid #d4af37;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(30, 45, 70, 0.5);
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(79, 195, 247, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2a3f5f;
            color: #90a4ae;
            font-size: 0.95rem;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .highlight { background: rgba(255, 204, 0, 0.15); padding: 0.2rem 0.5rem; border-radius: 3px; }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .main-nav.active .nav-links {
                display: flex;
                flex-direction: column;
                width: 100%;
                background: rgba(12, 26, 45, 0.98);
                padding: 2rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
            .nav-links {
                display: none;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-area, .sidebar, .rating-section {
                padding: 2rem;
            }
        }
