        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a1520;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4fc3f7;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            transform: translateY(-1px);
        }
        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(135deg, #1e88e5, #0d47a1);
            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(30, 136, 229, 0.3);
        }
        .btn:hover {
            background: linear-gradient(135deg, #0d47a1, #1e88e5);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(30, 136, 229, 0.5);
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #00bcd4, #4caf50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00bcd4, #4caf50);
            border-radius: 2px;
        }
        .main-header {
            background: rgba(10, 21, 32, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #1a3a5f;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00bcd4, #4caf50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 2.2rem;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: #b0bec5;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #4fc3f7;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after,
        .nav-desktop a.active::after {
            width: 100%;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #ffffff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4fc3f7;
        }
        .nav-mobile {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(15, 30, 45, 0.98);
            backdrop-filter: blur(15px);
            flex-direction: column;
            padding: 20px;
            border-top: 1px solid #1a3a5f;
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.4s ease;
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
        }
        .nav-mobile a {
            color: #b0bec5;
            padding: 15px 0;
            border-bottom: 1px solid #1a3a5f;
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(20, 40, 60, 0.7);
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb a {
            color: #80d8ff;
        }
        .breadcrumb span {
            color: #cfd8dc;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #546e7a;
            font-size: 0.8rem;
        }
        .hero-search {
            background: linear-gradient(rgba(10, 21, 32, 0.9), rgba(10, 21, 32, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 60px 0;
            text-align: center;
            border-bottom: 2px solid #1a3a5f;
        }
        .hero-search h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .search-form {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background: #ffffff;
            color: #263238;
        }
        .search-form button {
            background: linear-gradient(135deg, #1e88e5, #0d47a1);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(135deg, #0d47a1, #1e88e5);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 35, 50, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid #2a4a6e;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #2a4a6e;
            color: #90a4ae;
            font-size: 0.95rem;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: #4fc3f7;
            padding-left: 15px;
            border-left: 5px solid #00bcd4;
        }
        .article-body h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #80deea;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #cfd8dc;
        }
        .article-body strong {
            color: #ffffff;
            font-weight: 700;
        }
        .article-body em {
            color: #b0bec5;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(0, 150, 136, 0.15));
            border-left: 5px solid #00bcd4;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .gameplay-img {
            margin: 30px auto;
            border: 3px solid #2a4a6e;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
            overflow: hidden;
        }
        .gameplay-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: #90a4ae;
            font-size: 0.95rem;
            background: rgba(42, 74, 110, 0.5);
        }
        .tip {
            background: rgba(255, 193, 7, 0.1);
            border: 1px dashed #ffc107;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
        }
        .tip h4 {
            color: #ffc107;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(20, 35, 50, 0.7);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #2a4a6e;
        }
        .sidebar-widget h3 {
            color: #4fc3f7;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a4a6e;
            font-size: 1.4rem;
        }
        .link-list a {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background: rgba(42, 74, 110, 0.5);
            border-radius: 8px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        .link-list a:hover {
            background: rgba(30, 136, 229, 0.2);
            border-left-color: #1e88e5;
            transform: translateX(5px);
        }
        .popular-posts .post {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #2a4a6e;
        }
        .popular-posts .post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .post-img {
            width: 80px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
        }
        .post-title {
            font-size: 0.95rem;
            color: #e0e0e0;
            font-weight: 600;
        }
        .user-interaction {
            margin-top: 50px;
            padding-top: 40px;
            border-top: 2px solid #2a4a6e;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .comment-box, .rating-box {
            background: rgba(20, 35, 50, 0.7);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #2a4a6e;
        }
        .comment-box h3, .rating-box h3 {
            color: #4fc3f7;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #b0bec5;
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px;
            background: rgba(42, 74, 110, 0.5);
            border: 1px solid #3a5a80;
            border-radius: 8px;
            color: #ffffff;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #1e88e5;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
            font-size: 2.5rem;
            color: #546e7a;
            cursor: pointer;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffc107;
        }
        .main-footer {
            background: #0c1827;
            padding: 60px 0 30px;
            border-top: 2px solid #1a3a5f;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00bcd4, #4caf50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }
        .footer-about p {
            color: #b0bec5;
            margin-bottom: 20px;
        }
        .footer-links h4,
        friend-link h4 {
            color: #ffffff;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-links h4::after,
        friend-link h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #4fc3f7;
        }
        .footer-links ul,
        friend-link ul {
            list-style: none;
        }
        .footer-links li,
        friend-link li {
            margin-bottom: 12px;
        }
        .footer-links a,
        friend-link a {
            color: #b0bec5;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .footer-links a:hover,
        friend-link a:hover {
            color: #4fc3f7;
            transform: translateX(8px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1a3a5f;
            color: #90a4ae;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .hero-search h1 { font-size: 2.2rem; }
            .section-title { font-size: 2rem; }
            .article-content { padding: 25px; }
            .article-body h2 { font-size: 1.7rem; }
            .article-body h3 { font-size: 1.3rem; }
            .search-form { flex-direction: column; border-radius: 15px; }
            .search-form input, .search-form button { width: 100%; border-radius: 0; }
            .search-form button { padding: 15px; }
        }
        @media (max-width: 480px) {
            .article-meta { flex-direction: column; align-items: flex-start; gap: 15px; }
            .hero-search h1 { font-size: 1.8rem; }
        }
