:root {
            --ea-orange: #FF5500;
            --ea-blue: #0055FF;
            --ea-dark: #0A0A0A;
            --ea-light: #F5F5F5;
            --ea-gray: #333333;
            --ea-card-bg: #1A1A1A;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--ea-dark);
            color: var(--ea-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--ea-orange);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #FF8C00;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--ea-dark) 0%, var(--ea-gray) 100%);
            padding: 1rem 0;
            border-bottom: 3px solid var(--ea-orange);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--ea-orange), var(--ea-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--ea-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 85, 0, 0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--ea-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--ea-card-bg);
            padding: 1rem;
            border-top: 1px solid var(--ea-gray);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: var(--ea-light);
            display: block;
            padding: 0.8rem;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--ea-orange);
            background-color: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--ea-card-bg);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
            color: #888;
        }
        .search-section {
            background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 3rem 1rem;
            border-radius: 12px;
            margin-bottom: 3rem;
            text-align: center;
        }
        .search-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: white;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            background-color: rgba(255,255,255,0.95);
        }
        .search-form button {
            background: linear-gradient(90deg, var(--ea-orange), #FF3300);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-container {
            background-color: var(--ea-card-bg);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--ea-orange);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            background: linear-gradient(90deg, #FFF, var(--ea-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .meta-info {
            display: flex;
            gap: 1rem;
            color: #AAA;
            font-size: 0.9rem;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: #FFF;
            border-left: 5px solid var(--ea-blue);
            padding-left: 1rem;
        }
        .article-body h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #DDD;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255,85,0,0.1), rgba(0,85,255,0.1));
            border-left: 4px solid var(--ea-orange);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .rating-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background-color: rgba(255,255,255,0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        .rating-table th, .rating-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .rating-table th {
            background-color: var(--ea-orange);
            color: white;
            font-weight: bold;
        }
        .rating-table tr:hover {
            background-color: rgba(255,85,0,0.1);
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dashed currentColor;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--ea-card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--ea-orange);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid currentColor;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            position: relative;
        }
        .related-links li::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: var(--ea-blue);
            font-size: 0.8rem;
        }
        .user-rating-module, .user-comment-module {
            background-color: var(--ea-card-bg);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px solid rgba(255,85,0,0.3);
        }
        .module-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #FFF;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .module-title i {
            color: var(--ea-orange);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: gold;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: bold;
            color: #DDD;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 1rem;
            background-color: rgba(255,255,255,0.1);
            border: 1px solid #555;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--ea-orange), #FF3300);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            align-self: flex-start;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,85,0,0.4);
        }
        .site-footer {
            background-color: #111;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--ea-blue);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--ea-orange), var(--ea-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-container {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                border-radius: 50px;
                width: 100%;
            }
            .search-form input {
                margin-bottom: 1rem;
            }
        }
