        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #ff4655; 
            --secondary: #1c1c28; 
            --accent: #f9a826; 
            --light: #f5f5f7;
            --dark: #121218;
            --text: #e0e0e8;
            --text-secondary: #a0a0b0;
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            background-color: var(--secondary);
            color: var(--text);
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        ul, ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .btn {
            display: inline-block;
            padding: 0.75rem 1.75rem;
            background: linear-gradient(135deg, var(--primary), #d81c38);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            background: linear-gradient(135deg, #d81c38, var(--primary));
        }
        section {
            padding: 4rem 0;
        }
        h1, h2, h3, h4 {
            color: var(--light);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid var(--primary);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text);
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        blockquote {
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            background-color: rgba(255, 255, 255, 0.03);
            font-style: italic;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight {
            background-color: rgba(255, 70, 85, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: bold;
            color: var(--primary);
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        header {
            background-color: rgba(18, 18, 24, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .logo i {
            color: var(--primary);
        }
        .logo span {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background-color: rgba(28, 28, 40, 0.7);
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb span {
            color: var(--text-secondary);
            margin: 0 0.5rem;
        }
        .hero {
            background: linear-gradient(rgba(18, 18, 24, 0.9), rgba(18, 18, 24, 0.9)), url('https://images.unsplash.com/photo-1552820728-8b83bb6b773f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 6rem 0;
            text-align: center;
        }
        .hero h1 {
            margin-bottom: 1.5rem;
            font-size: 3.5rem;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-secondary);
        }
        .search-container {
            max-width: 600px;
            margin: 3rem auto;
            padding: 2rem;
            background-color: rgba(28, 28, 40, 0.8);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-container h3 {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        #search-form {
            display: flex;
            gap: 0.5rem;
        }
        #search-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            background-color: rgba(18, 18, 24, 0.8);
            color: var(--text);
            font-size: 1rem;
        }
        #search-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        main {
            background-color: rgba(28, 28, 40, 0.5);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .featured-image {
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: rgba(28, 28, 40, 0.8);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        .quick-links ul {
            list-style: none;
            padding-left: 0;
        }
        .quick-links li {
            margin-bottom: 0.75rem;
        }
        .quick-links a {
            display: block;
            padding: 0.75rem;
            background-color: rgba(18, 18, 24, 0.6);
            border-radius: var(--border-radius);
            border-left: 3px solid transparent;
        }
        .quick-links a:hover {
            border-left-color: var(--accent);
            background-color: rgba(18, 18, 24, 0.9);
        }
        .rating-widget, .comment-widget {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            justify-content: center;
        }
        .stars .star {
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent);
        }
        #rating-value {
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            background-color: rgba(18, 18, 24, 0.8);
            color: var(--text);
            font-family: inherit;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        footer {
            background-color: var(--dark);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            margin-bottom: 1.5rem;
            color: var(--light);
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 600;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(255, 70, 85, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .hero h1 { font-size: 3rem; }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding-top: 3rem;
                gap: 2rem;
                transition: var(--transition);
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 1rem;
            }
            .hero {
                padding: 4rem 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            main, .sidebar-widget {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            #search-form {
                flex-direction: column;
            }
            .btn {
                width: 100%;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
        }
