        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #e67e22;
            --secondary: #2c3e50;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #1a1a1a;
            --gray: #95a5a6;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d0d0d;
            color: #ddd;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 20% 30%, rgba(46, 64, 83, 0.2) 0%, transparent 20%), radial-gradient(circle at 80% 80%, rgba(230, 126, 34, 0.1) 0%, transparent 20%);
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            color: var(--light);
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--primary), #d35400);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
            background: linear-gradient(90deg, #d35400, var(--primary));
        }
        header {
            background-color: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            text-shadow: 0 0 10px var(--primary);
            letter-spacing: -1px;
        }
        .logo span {
            color: var(--primary);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: var(--light);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-links a:hover::before {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light);
        }
        .breadcrumb {
            background-color: rgba(44, 62, 80, 0.6);
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .hero {
            background: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(230, 126, 34, 0.3);
        }
        .search-box h2 {
            margin-bottom: 20px;
            color: var(--light);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #444;
            border-radius: 8px;
            background: #222;
            color: white;
            font-size: 1rem;
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            background: rgba(30, 30, 30, 0.7);
            padding: 40px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
        }
        article h2, article h3 {
            margin-top: 40px;
            color: var(--light);
        }
        article h2 {
            font-size: 2rem;
            border-bottom: 2px solid #333;
            padding-bottom: 10px;
        }
        article h3 {
            font-size: 1.5rem;
            color: var(--primary);
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(230, 126, 34, 0.1);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .video-placeholder {
            background: #111;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid #444;
            position: relative;
            overflow: hidden;
        }
        .video-placeholder i {
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.7;
        }
        .video-placeholder::after {
            content: 'RUST GAMEPLAY VIDEO - EXCLUSIVE FOOTAGE';
            position: absolute;
            bottom: 20px;
            left: 20px;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            text-shadow: 0 2px 5px black;
        }
        .sidebar {
            background: rgba(30, 30, 30, 0.7);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            border-top: 5px solid var(--accent);
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            color: var(--light);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #444;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 15px;
            position: relative;
        }
        .link-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        .rating-section, .comment-section {
            background: rgba(30, 30, 30, 0.7);
            padding: 40px;
            border-radius: 15px;
            margin-top: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: gold;
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: #222;
            border: 2px solid #444;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            margin-bottom: 15px;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form input {
            width: 100%;
            padding: 15px;
            background: #222;
            border: 2px solid #444;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .footer-links {
            background: rgba(44, 62, 80, 0.8);
            padding: 40px 20px;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 25px;
            margin: 8px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(230, 126, 34, 0.2);
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark);
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid var(--primary);
        }
        .copyright {
            margin-top: 30px;
            color: var(--gray);
            font-size: 0.9rem;
            border-top: 1px solid #444;
            padding-top: 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(26, 26, 26, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                gap: 30px;
                transition: left 0.5s ease;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .main-content, .sidebar, .rating-section, .comment-section {
                padding: 25px;
            }
        }
