:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --accent-light: #ff7b9c;
            --text: #f1f1f1;
            --text-secondary: #b8b8b8;
            --card-bg: #0f3460;
            --border: #2d4059;
            --success: #4CAF50;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: var(--accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--secondary);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb span {
            color: var(--accent);
        }
        .hero {
            background: url('https://images.unsplash.com/photo-1553440569-bcc63803a83d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 2rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: white;
            text-shadow: 2px 2px 10px #000;
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #ddd;
        }
        .search-box {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem auto;
            max-width: 800px;
            text-align: center;
        }
        .search-box h2 {
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--border);
            border-radius: 5px 0 0 5px;
            background: var(--secondary);
            color: var(--text);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 25px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: var(--accent-light);
        }
        main {
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            color: var(--accent-light);
            border-bottom: 2px solid var(--border);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #ffcc00;
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #4db8ff;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, var(--secondary), transparent);
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-wrapper {
            margin: 2rem 0;
            text-align: center;
        }
        .image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--border);
            transition: transform 0.5s;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: var(--accent-light);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-list a {
            background: var(--secondary);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            display: inline-block;
            border: 1px solid var(--border);
        }
        .link-list a:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }
        aside {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 1.5rem;
            height: fit-content;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .widget ul {
            list-style: none;
            margin-left: 0;
        }
        .widget li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed var(--border);
        }
        .widget li:last-child {
            border-bottom: none;
        }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            background: var(--secondary);
            border-radius: 10px;
            margin-top: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: gold;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i:hover {
            color: orange;
        }
        .comment-form {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--secondary);
            border-radius: 10px;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 5px;
            background: var(--primary);
            color: var(--text);
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s;
            width: 100%;
        }
        .submit-btn:hover {
            background: var(--accent-light);
        }
        footer {
            background: var(--secondary);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            color: var(--text-secondary);
        }
        friend-link a {
            color: var(--text-secondary);
        }
        friend-link a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .last-updated {
            color: var(--accent);
            font-style: italic;
            margin: 1rem 0;
            text-align: right;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: var(--secondary);
                width: 100%;
                text-align: center;
                transition: 0.5s;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
                padding: 2rem 0;
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 1.5rem 0;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
