        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a0f;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #e10600;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffffff;
            text-shadow: 0 0 8px #e10600;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .text-red { color: #e10600; }
        .bold { font-weight: 800; }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, #1a1a2a 50%, transparent 100%);
            padding: 15px;
            border-left: 4px solid #e10600;
            margin: 20px 0;
        }
        .emoji { font-size: 1.2em; }
        header {
            background: linear-gradient(180deg, #000000 0%, #1a1a2a 100%);
            border-bottom: 2px solid #e10600;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(45deg, #e10600, #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(225, 6, 0, 0.3);
        }
        .my-logo a { color: transparent; }
        .search-form {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #333;
            background: #111;
            color: #fff;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background: #e10600;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #ff2a20; }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .main-nav {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #e10600;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #fff; }
        .hero {
            background: url('https://images.unsplash.com/photo-1547036967-23d11aacaee0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            min-height: 400px;
            display: flex;
            align-items: 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;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
        }
        main {
            background: #0f0f15;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article h2 {
            font-size: 2.2rem;
            color: #fff;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #222;
        }
        article h3 {
            font-size: 1.7rem;
            color: #f0f0f0;
            margin: 25px 0 10px;
        }
        article h4 {
            font-size: 1.3rem;
            color: #ccc;
            margin: 20px 0 10px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-img {
            margin: 30px auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border: 1px solid #333;
        }
        .sidebar-widget {
            background: #1a1a2a;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
            border: 1px solid #333;
        }
        .sidebar-widget h3 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form textarea, .comment-form input, .rating-form select {
            padding: 12px;
            background: #111;
            border: 1px solid #333;
            color: #fff;
            border-radius: 4px;
            font-size: 1rem;
        }
        .comment-form button, .rating-form button {
            background: #e10600;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover { background: #ff2a20; }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #444;
            cursor: pointer;
        }
        .stars .active { color: #ffcc00; }
        footer {
            background: #000;
            padding: 50px 0 20px;
            border-top: 2px solid #e10600;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-links h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background: #111;
            margin-bottom: 10px;
            border-radius: 4px;
            border-left: 3px solid #e10600;
            transition: background 0.3s;
        }
        friend-link:hover { background: #222; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.8rem; }
        }
        @media (max-width: 768px) {
            .header-top { flex-direction: column; gap: 20px; }
            .search-form { max-width: 100%; }
            .hamburger { display: block; }
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1a2a;
                padding: 20px;
                border-top: 1px solid #333;
            }
            .main-nav.active { display: flex; }
            .hero h1 { font-size: 2.2rem; }
            article h2 { font-size: 1.9rem; }
        }
