* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background-color: #0a0a14;
            background-image: linear-gradient(135deg, #0a0a14 0%, #121230 100%);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
            color: #ff4655;
            margin-bottom: 1.2rem;
            line-height: 1.3;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            background: linear-gradient(90deg, #ff4655, #ff8e53);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            border-left: 5px solid #ff4655;
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: #4fc3f7;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            max-width: 85ch;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff4655;
            text-shadow: 0 0 8px rgba(255, 70, 85, 0.5);
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        em {
            color: #a5d6a7;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #ff4655;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #b0bec5;
            background: rgba(255, 70, 85, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff4655, #ff8e53);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(255, 70, 85, 0.3);
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .logo a:hover {
            text-shadow: 0 2px 20px rgba(255, 70, 85, 0.6);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e0e0e0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background: rgba(255, 70, 85, 0.2);
            color: #ff4655;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ff4655;
            transition: 0.3s;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 20, 0.98);
            border-top: 1px solid #333;
            padding: 1rem 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .mobile-nav a {
            display: block;
            padding: 1rem 2rem;
            color: #e0e0e0;
            font-size: 1.2rem;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .mobile-nav a:hover {
            border-left-color: #ff4655;
            background: rgba(255, 70, 85, 0.1);
            color: #ff4655;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(20, 20, 40, 0.7);
            margin-bottom: 2rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #666;
        }
        .search-container {
            background: rgba(30, 30, 60, 0.7);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #444;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #444;
            border-radius: 50px 0 0 50px;
            background: #1a1a2e;
            color: #fff;
            font-size: 1.1rem;
            transition: border-color 0.3s ease;
        }
        .search-form input:focus {
            outline: none;
            border-color: #ff4655;
        }
        .search-form button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #ff4655, #ff8e53);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 20, 40, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid #333;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(20, 20, 40, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #333;
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
            color: #ffcc00;
            border-bottom: 2px solid #ff4655;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .interactive-forms {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-form, .rating-form {
            background: rgba(30, 30, 60, 0.8);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #444;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ffcc00;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            background: #1a1a2e;
            border: 2px solid #444;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff4655;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            margin: 0.5rem 0;
        }
        .star-rating i {
            color: #666;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffcc00;
            transform: scale(1.2);
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff4655, #ff8e53);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 70, 85, 0.4);
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
            padding: 0.5rem;
            background: rgba(0, 0, 0, 0.5);
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .feature-card {
            background: rgba(40, 40, 70, 0.5);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #4fc3f7;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(79, 195, 247, 0.2);
        }
        .feature-card h4 {
            color: #4fc3f7;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(30, 30, 60, 0.7);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .data-table th {
            background: linear-gradient(90deg, #ff4655, #ff8e53);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 1rem;
            border-bottom: 1px solid #333;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover {
            background: rgba(255, 70, 85, 0.1);
        }
        .footer-links {
            background: rgba(15, 15, 30, 0.9);
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 2px solid #ff4655;
            border-bottom: 1px solid #333;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(40, 40, 70, 0.5);
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid #444;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 70, 85, 0.1);
            border-color: #ff4655;
            transform: translateX(5px);
        }
        .web-link a {
            color: #e0e0e0;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .web-link a::before {
            content: "▶";
            color: #ff4655;
            font-size: 0.8rem;
        }
        footer {
            background: #0a0a14;
            padding: 3rem 0 1.5rem;
            text-align: center;
            border-top: 1px solid #333;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 70, 85, 0.2), rgba(255, 142, 83, 0.2));
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .main-content {
                padding: 1rem 0;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 50px;
                margin-bottom: 1rem;
            }
            .search-form button {
                border-radius: 50px;
            }
            .game-features {
                grid-template-columns: 1fr;
            }
            .data-table {
                display: block;
                overflow-x: auto;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .widget, .feature-card {
            animation: fadeIn 0.8s ease-out;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #ff4655, #ff8e53);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #ff3040, #ff7a40);
        }
