        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #f0f0f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ff6b6b;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffa8a8;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        }
        header {
            background: rgba(10, 10, 10, 0.95);
            padding: 1.5rem 2rem;
            border-bottom: 3px solid #ff6b6b;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ff6b6b;
            text-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
            letter-spacing: 2px;
            font-family: 'Arial Black', sans-serif;
        }
        .my-logo:hover {
            color: #ffa8a8;
            text-shadow: 0 0 20px rgba(255, 168, 168, 0.9);
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(26, 26, 46, 0.8);
            font-size: 0.95rem;
            max-width: 1400px;
            margin: 0 auto;
            border-radius: 0 0 12px 12px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.75rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.75rem;
            color: #ff6b6b;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            background: rgba(255, 107, 107, 0.1);
        }
        .nav-links a:hover {
            background: rgba(255, 107, 107, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            color: #ff6b6b;
            cursor: pointer;
            background: none;
            border: none;
        }
        main {
            flex: 1;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            width: 100%;
        }
        article {
            background: rgba(22, 33, 62, 0.85);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            margin-bottom: 3rem;
            backdrop-filter: blur(5px);
        }
        h1 {
            font-size: 3.5rem;
            color: #ffd166;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 0 0 20px rgba(255, 209, 102, 0.5);
            border-bottom: 4px solid #ff6b6b;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #06d6a0;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
            border-left: 6px solid #06d6a0;
        }
        h3 {
            font-size: 2rem;
            color: #118ab2;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #ffd166;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 0.5rem;
        }
        .highlight {
            background: rgba(255, 209, 102, 0.15);
            border-left: 5px solid #ffd166;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            font-weight: bold;
            color: #ffd166;
        }
        .game-ranking {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .game-card {
            background: rgba(26, 26, 46, 0.9);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #118ab2;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(17, 138, 178, 0.4);
        }
        .game-card h3 {
            color: #06d6a0;
        }
        .search-box, .comments-section, .rating-section {
            background: rgba(10, 10, 10, 0.8);
            padding: 2rem;
            border-radius: 15px;
            margin: 2.5rem 0;
            border: 2px solid #ff6b6b;
        }
        .search-box h2, .comments-section h2, .rating-section h2 {
            color: #ff6b6b;
            border-left-color: #ff6b6b;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        input, textarea, select {
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid #118ab2;
            background: rgba(255, 255, 255, 0.1);
            color: #f0f0f0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #06d6a0;
        }
        button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #ff6b6b, #ffa8a8);
            color: #0a0a0a;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
        }
        footer {
            background: rgba(10, 10, 10, 0.95);
            padding: 3rem 2rem;
            border-top: 3px solid #ff6b6b;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #06d6a0;
        }
        friend-link a:hover {
            color: #ffd166;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.8rem; }
            .header-container { flex-direction: column; gap: 1.5rem; }
            .nav-links { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 2rem;
                border-top: 2px solid #ff6b6b;
            }
            .nav-links.active { display: flex; }
            .nav-links li { margin-bottom: 1rem; }
            main { padding: 0 1rem; }
            article { padding: 2rem; }
            .game-ranking { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .my-logo { font-size: 2rem; }
            .breadcrumb { font-size: 0.85rem; }
        }
