        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e6e6e6;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #2a9fd6;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #6cb9e0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #fff;
            border-left: 5px solid #2a9fd6;
            padding-left: 15px;
        }
        .section-subtitle {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #b8d4e3;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(42, 159, 214, 0.2), transparent);
            border-left: 4px solid #2a9fd6;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #2a9fd6, #1c6b94);
            color: white;
            padding: 12px 28px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(135deg, #1c6b94, #2a9fd6);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .card {
            background: #1a1f26;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #2d3743;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .site-header {
            background: rgba(15, 20, 25, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #2a9fd6;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #2a9fd6, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #2a9fd6;
            transition: width 0.3s;
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #2a9fd6;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(15, 20, 25, 0.98);
            flex-direction: column;
            padding: 20px;
            border-top: 1px solid #2d3743;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid #2d3743;
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #141a21;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #8ba3b4;
        }
        .breadcrumb a:hover {
            color: #2a9fd6;
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: #4a5f73;
        }
        .breadcrumb .current {
            color: #e6e6e6;
            font-weight: 600;
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
        }
        .article-header {
            text-align: center;
            padding: 40px 0 20px;
            border-bottom: 2px solid #2d3743;
            margin-bottom: 40px;
        }
        .article-header h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: #fff;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #8ba3b4;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        .article-image {
            margin: 40px 0;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #2d3743;
        }
        .rank-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: #1a1f26;
            border-radius: 10px;
            overflow: hidden;
        }
        .rank-table th, .rank-table td {
            padding: 18px 15px;
            text-align: left;
            border-bottom: 1px solid #2d3743;
        }
        .rank-table th {
            background: #2a9fd6;
            color: white;
            font-weight: 600;
        }
        .rank-table tr:hover {
            background-color: #222831;
        }
        .rank-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        .copper { color: #b87333; }
        .bronze { color: #cd7f32; }
        .silver { color: #c0c0c0; }
        .gold { color: #ffd700; }
        .platinum { color: #8ba3b4; }
        .emerald { color: #50c878; }
        .diamond { color: #4ee2ec; }
        .champion { color: #9b59b6; }
        .sidebar-widget {
            background: #1a1f26;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #2d3743;
        }
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fff;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a9fd6;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            background: #141a21;
            border: 1px solid #2d3743;
            border-radius: 5px 0 0 5px;
            color: #e6e6e6;
        }
        .search-form button {
            background: #2a9fd6;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #1c6b94;
        }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .rating-widget .stars i {
            color: #4a5f73;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #ffd700;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            background: #141a21;
            border: 1px solid #2d3743;
            border-radius: 5px;
            color: #e6e6e6;
            resize: vertical;
            margin-bottom: 15px;
        }
        .related-links a {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background: #141a21;
            border-radius: 5px;
            border-left: 4px solid #2a9fd6;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: #222831;
            transform: translateX(5px);
        }
        .site-footer {
            background: #0a0e12;
            padding: 50px 0 30px;
            margin-top: 60px;
            border-top: 3px solid #2a9fd6;
        }
        .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, #2a9fd6, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 10px;
            background: #141a21;
            margin: 10px 0;
            border-radius: 5px;
            border: 1px dashed #2d3743;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d3743;
            color: #8ba3b4;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .article-header h1 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .content-layout { gap: 30px; }
            .header-container, .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
        }
