        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background-color: #0f1419;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #00a8ff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffdd40;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0a0e14 100%);
            padding: 20px 0;
            border-bottom: 3px solid #00a8ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffdd40;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: #00a8ff;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: #00a8ff;
            color: #0f1419;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffdd40;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a2332;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e0e0e0;
            padding: 15px;
            border-bottom: 1px solid #2a3a4a;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: #00a8ff;
            color: #0f1419;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #151e29;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #00a8ff;
        }
        .breadcrumb a {
            color: #8fa3b8;
        }
        .breadcrumb a:hover {
            color: #ffdd40;
        }
        main {
            padding: 30px 0;
            background-color: #0f1419;
        }
        article {
            background-color: #151e29;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 40px;
        }
        h1, h2, h3 {
            color: #ffdd40;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 5px solid #00a8ff;
            padding-left: 20px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 40px;
            border-bottom: 2px solid #2a3a4a;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 30px;
            color: #00a8ff;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #1a2b3c;
            padding: 25px;
            border-left: 5px solid #ffdd40;
            border-radius: 10px;
            margin: 25px 0;
        }
        .highlight p {
            margin-bottom: 0;
        }
        b, strong {
            color: #ffdd40;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            border: 3px solid #00a8ff;
            max-width: 800px;
            width: 100%;
            box-shadow: 0 5px 15px rgba(0,168,255,0.3);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #8fa3b8;
            font-size: 0.9rem;
        }
        .functional-section {
            background-color: #1a2332;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .section-title {
            font-size: 1.8rem;
            color: #00a8ff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title i {
            font-size: 1.5rem;
        }
        form {
            display: grid;
            gap: 20px;
            max-width: 600px;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 2px solid #2a3a4a;
            border-radius: 8px;
            background-color: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00a8ff;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #00a8ff, #0088cc);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: start;
        }
        button:hover {
            background: linear-gradient(90deg, #ffdd40, #ffaa00);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,221,64,0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating input[type="radio"] {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #2a3a4a;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffdd40;
        }
        .rating input:checked ~ label {
            color: #ffdd40;
        }
        .tier-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .tier-category {
            background-color: #1a2332;
            border-radius: 10px;
            padding: 25px;
            border-top: 5px solid;
        }
        .tier-category.s-tier { border-color: #ff4d4d; }
        .tier-category.a-tier { border-color: #ff944d; }
        .tier-category.b-tier { border-color: #ffdd40; }
        .tier-category.c-tier { border-color: #4dff4d; }
        .tier-category.d-tier { border-color: #4dd4ff; }
        .tier-header {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-align: center;
        }
        .tier-list {
            list-style: none;
        }
        .tier-list li {
            padding: 15px;
            margin-bottom: 10px;
            background-color: #0f1419;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: transform 0.3s ease;
        }
        .tier-list li:hover {
            transform: translateX(10px);
            background-color: #151e29;
        }
        .legend-name {
            font-weight: 700;
            color: #e0e0e0;
        }
        .weapon-icons {
            display: flex;
            gap: 10px;
            color: #8fa3b8;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 40px 0;
            border-top: 2px solid #2a3a4a;
            border-bottom: 2px solid #2a3a4a;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: #1a2332;
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #00a8ff;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #e0e0e0;
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        .web-link:hover a {
            color: #0f1419;
        }
        footer {
            background-color: #0a0e14;
            padding: 40px 0;
            text-align: center;
        }
        .copyright {
            color: #8fa3b8;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        .copyright a {
            color: #00a8ff;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 25px; }
            .functional-section { padding: 25px; }
            .tier-table { grid-template-columns: 1fr; }
        }
