        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #2a2d43;
            --secondary: #1a1c2b;
            --accent: #ff6b35;
            --accent-dark: #e55a2b;
            --text: #e0e0e0;
            --text-light: #a0a0b0;
            --card-bg: #34374c;
            --border: #4a4d6a;
            --success: #4caf50;
            --warning: #ff9800;
            --error: #f44336;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(26, 28, 43, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent);
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ff6b35, #ffdd00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover {
            color: var(--accent);
            background: rgba(255, 107, 53, 0.1);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background: rgba(52, 55, 76, 0.7);
            padding: 15px 0;
            margin-bottom: 30px;
            border-radius: 8px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .separator {
            color: var(--accent);
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: rgba(52, 55, 76, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
        }
        .sidebar {
            background: rgba(52, 55, 76, 0.7);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border);
        }
        .sidebar-widget:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        h1 {
            font-size: 3.2rem;
            color: #fff;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            background: linear-gradient(45deg, #ff6b35, #ffdd00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            font-size: 1.8rem;
            color: #fff;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-light);
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #fff;
            font-weight: 500;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 107, 53, 0.2), transparent);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--accent), var(--accent-dark));
            color: white;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }
        .btn-secondary {
            background: var(--card-bg);
            border: 2px solid var(--accent);
        }
        .btn-secondary:hover {
            background: var(--accent);
        }
        .search-form {
            display: flex;
            margin: 30px 0;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--border);
            border-right: none;
            border-radius: 8px 0 0 8px;
            color: var(--text);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent);
        }
        .search-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--accent-dark);
        }
        .comment-section, .rating-section {
            background: rgba(42, 45, 67, 0.8);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid var(--border);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-light);
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: var(--border);
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--warning);
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 3px solid var(--accent);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .link-card {
            background: rgba(42, 45, 67, 0.8);
            padding: 25px;
            border-radius: 10px;
            text-decoration: none;
            color: var(--text);
            border: 2px solid transparent;
            transition: var(--transition);
            display: block;
        }
        .link-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .link-card h4 {
            color: var(--accent);
            margin-bottom: 10px;
        }
        footer {
            background: var(--secondary);
            padding: 60px 0 30px;
            margin-top: 60px;
            border-top: 3px solid var(--accent);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-links h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            padding: 15px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 8px;
            margin: 10px 0;
            border-left: 4px solid var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mt-30 { margin-top: 30px; }
        .mb-30 { margin-bottom: 30px; }
        .pt-30 { padding-top: 30px; }
        .pb-30 { padding-bottom: 30px; }
        .last-updated {
            background: rgba(76, 175, 80, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid var(--success);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            nav {
                width: 100%;
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--secondary);
                padding: 20px;
                box-shadow: var(--shadow);
                border-top: 2px solid var(--accent);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .content-area {
                padding: 25px;
            }
            .sidebar {
                position: static;
            }
            .featured-image {
                height: 250px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-dark);
        }
