        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #80c1ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #ff7e00, #ff5500);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 86, 0, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 86, 0, 0.5);
            text-decoration: none;
            color: white;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center {
            text-align: center;
        }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff7e00;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff7e00, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(255, 126, 0, 0.3);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ff7e00;
            margin: 3px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #b0b0b0;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ff7e00;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff7e00;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background: rgba(30, 50, 80, 0.7);
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a4365;
        }
        .breadcrumb a {
            color: #a0c8ff;
        }
        .breadcrumb span {
            color: #cccccc;
        }
        .hero {
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            margin-bottom: 40px;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 20, 40, 0.75);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 40px;
            background: rgba(20, 40, 70, 0.85);
            border-radius: 15px;
            border-left: 5px solid #ff7e00;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: #d0e4ff;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(25, 45, 70, 0.8);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #2a4a75;
        }
        .article-content h2 {
            color: #ffaa33;
            font-size: 2.3rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff7e00;
        }
        .article-content h3 {
            color: #66b3ff;
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        .article-content h4 {
            color: #99ccff;
            font-size: 1.4rem;
            margin: 25px 0 12px;
        }
        .article-content p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .article-content strong {
            color: #ffcc66;
            font-weight: 700;
        }
        .feature-img {
            margin: 30px 0;
            border: 3px solid #ff7e00;
            overflow: hidden;
        }
        .feature-img img {
            transition: transform 0.5s ease;
        }
        .feature-img:hover img {
            transform: scale(1.03);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(25, 45, 70, 0.9);
            padding: 25px;
            border-radius: 12px;
            border-top: 4px solid #ff7e00;
        }
        .widget h3 {
            color: #ffaa33;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 14px;
            border: none;
            border-radius: 30px 0 0 30px;
            background: #1a2d44;
            color: white;
            outline: none;
        }
        .search-form button {
            background: #ff7e00;
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 20px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff5500;
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid #3a5a80;
            background: #1a2d44;
            color: white;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #ff7e00;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li::before {
            content: '🎮';
            position: absolute;
            left: 0;
        }
        .related-links a {
            color: #a0d2ff;
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #3a5a80;
        }
        .related-links a:hover {
            color: #ffaa33;
            border-bottom-color: #ffaa33;
        }
        .site-footer {
            background: #0a1525;
            border-top: 3px solid #ff7e00;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-widget h4 {
            color: #ffaa33;
            font-size: 1.5rem;
            margin-bottom: 25px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 126, 0, 0.15);
            padding: 10px 20px;
            border-radius: 6px;
            border: 1px solid #ff7e00;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 126, 0, 0.3);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a4365;
            color: #8a9bb2;
            font-size: 0.95rem;
        }
        .last-updated {
            background: #1a3a5f;
            padding: 15px;
            border-radius: 8px;
            margin: 30px 0;
            font-style: italic;
            color: #cccccc;
            border-left: 4px solid #00cc66;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: rgba(12, 26, 45, 0.98);
                width: 100%;
                padding: 20px;
                transition: left 0.5s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 2rem;
            }
            .article-content h3 {
                font-size: 1.6rem;
            }
        }
