:root {
            --primary: #ff4655;
            --primary-dark: #d43a47;
            --secondary: #0f1923;
            --accent: #1e2a39;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff7a85;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--secondary);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo .fa-bolt {
            color: var(--primary);
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 20px;
            border: 2px solid var(--accent);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: #1a2530;
            color: var(--light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--primary-dark);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-nav {
            background-color: var(--accent);
            padding: 0;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
        }
        .nav-list li {
            position: relative;
        }
        .nav-list a {
            display: block;
            padding: 18px 24px;
            color: #ccc;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .nav-list a:hover,
        .nav-list a.active {
            color: white;
            background-color: rgba(255, 70, 85, 0.1);
            text-decoration: none;
        }
        .nav-list a i {
            margin-right: 8px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #151e29;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb li:last-child {
            color: var(--primary);
            font-weight: bold;
        }
        main {
            flex-grow: 1;
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--accent);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: white;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        .article-meta span i {
            margin-right: 5px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: #151e29;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        h2, h3, h4 {
            color: white;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffb8be;
        }
        h4 {
            font-size: 1.3rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: #b0b7c3;
            font-weight: 500;
            margin-bottom: 2rem;
            padding: 20px;
            background-color: #1e2a39;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary);
        }
        strong {
            color: #fff;
            font-weight: 700;
        }
        em {
            color: #ffb8be;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a2530, #222f3e);
            border: 1px solid var(--primary);
            border-radius: var(--border-radius);
            padding: 25px;
            margin: 30px 0;
        }
        .info-note {
            background-color: rgba(32, 148, 243, 0.1);
            border-left: 4px solid #2094f3;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #1a2530;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .schedule-table th {
            background-color: var(--primary);
            color: white;
            padding: 18px 15px;
            text-align: left;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .schedule-table td {
            padding: 16px 15px;
            border-bottom: 1px solid #2a3a4d;
        }
        .schedule-table tr:hover {
            background-color: #222f3e;
        }
        .schedule-table .region {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
        }
        .region.emea { background-color: #4a6fa5; color: white; }
        .region.na { background-color: #db3a34; color: white; }
        .region.apac { background-color: #38b000; color: white; }
        .region.latam { background-color: #ff9e00; color: black; }
        .schedule-table .live {
            color: #ff4655;
            font-weight: bold;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .featured-image {
            width: 100%;
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .img-caption {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 10px;
            font-style: italic;
        }
        aside {
            background-color: #151e29;
            border-radius: var(--border-radius);
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .widget-list {
            list-style: none;
        }
        .widget-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #2a3a4d;
        }
        .widget-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .widget-list a {
            color: #ccc;
            display: block;
        }
        .widget-list a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .widget-list i {
            margin-right: 10px;
            color: var(--primary);
        }
        .interactive-module {
            background: linear-gradient(145deg, #1a2530, #151e29);
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #2a3a4d;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        .module-title i {
            font-size: 2rem;
            color: var(--primary);
        }
        .rating-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #444;
            cursor: pointer;
        }
        .stars .star {
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: gold;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 14px;
            border-radius: var(--border-radius);
            border: 1px solid #2a3a4d;
            background-color: #1a2530;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            align-self: flex-start;
        }
        .btn:hover {
            background-color: var(--primary-dark);
            text-decoration: none;
        }
        .btn i {
            margin-right: 8px;
        }
        .footer-links {
            background-color: #111820;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: #1a2530;
            padding: 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border-left: 3px solid transparent;
        }
        .web-link:hover {
            border-left-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: #b0b7c3;
            font-size: 0.95rem;
            display: block;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: white;
            text-decoration: none;
        }
        .site-footer {
            background-color: var(--secondary);
            color: #aaa;
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid #2a3a4d;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
        }
        .copyright {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .web-link-container {
                grid-template-columns: repeat(3, 1fr);
            }
            .nav-list a {
                padding: 15px 18px;
                font-size: 0.85rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                max-width: 100%;
                margin: 20px 0 0;
            }
            .mobile-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--accent);
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
            }
            .nav-list a {
                padding: 18px 20px;
                border-bottom: 1px solid #2a3a4d;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            article {
                padding: 25px;
            }
            .web-link-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-link-container {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
