*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --fnf-pink: #ff6b9d;
            --fnf-dark: #1a1a2e;
            --fnf-navy: #16213e;
            --fnf-red: #e94560;
            --fnf-light: #f8f9fa;
            --fnf-grey: #6c757d;
            --fnf-white: #ffffff;
            --fnf-border: #dee2e6;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
            --radius: 12px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--fnf-light);
            color: #2d2d2d;
            line-height: 1.75;
            font-size: 16px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--fnf-dark);
            line-height: 1.3;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--fnf-pink), var(--fnf-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            margin-top: 50px;
            border-left: 5px solid var(--fnf-pink);
            padding-left: 18px;
            position: relative;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 30px;
            color: var(--fnf-navy);
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 20px;
            color: var(--fnf-grey);
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--fnf-dark);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-md);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 26px;
            font-weight: 900;
            color: var(--fnf-white);
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo i {
            color: var(--fnf-pink);
            font-size: 30px;
        }
        .my-logo small {
            display: block;
            font-size: 12px;
            font-weight: 400;
            color: #aaa;
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        .nav-links a {
            color: #ddd;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            background: var(--fnf-pink);
            color: var(--fnf-white);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--fnf-white);
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--fnf-dark);
                padding: 10px 0;
                border-radius: 0 0 12px 12px;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li {
                text-align: center;
                padding: 10px 0;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        .breadcrumb {
            background: transparent;
            padding: 12px 0;
            font-size: 14px;
            color: var(--fnf-grey);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
        }
        .breadcrumb a {
            color: var(--fnf-pink);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #aaa;
        }
        .search-box {
            background: var(--fnf-white);
            border-radius: 50px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            box-shadow: var(--shadow-sm);
            max-width: 500px;
            margin: 20px auto;
        }
        .search-box i {
            color: var(--fnf-pink);
            font-size: 18px;
            margin-right: 12px;
        }
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 16px;
            background: transparent;
        }
        .search-box button {
            background: var(--fnf-pink);
            color: var(--fnf-white);
            border: none;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: var(--fnf-red);
            transform: scale(1.04);
        }
        .hero {
            background: linear-gradient(135deg, var(--fnf-dark), var(--fnf-navy));
            color: var(--fnf-white);
            padding: 60px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #ccc;
        }
        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 25px;
            flex-wrap: wrap;
        }
        .hero-badge {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 14px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
        }
        .hero-badge i {
            color: var(--fnf-pink);
            margin-right: 6px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-body img {
            max-width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            margin: 25px 0;
            height: auto;
        }
        .article-body p {
            margin-bottom: 1.2em;
        }
        .article-body ul {
            margin: 15px 0 20px 25px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        blockquote {
            border-left: 4px solid var(--fnf-pink);
            background: #fff;
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            box-shadow: var(--shadow-sm);
            font-style: italic;
        }
        .tip-box {
            background: #f0f7ff;
            border-left: 4px solid #2196f3;
            padding: 18px 22px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 25px 0;
        }
        .alert-box {
            background: #fff5f5;
            border-left: 4px solid var(--fnf-red);
            padding: 18px 22px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 25px 0;
        }
        .sidebar {
            padding: 20px;
            background: var(--fnf-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 80px;
            height: fit-content;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--fnf-dark);
            border-bottom: 2px solid var(--fnf-light);
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            color: var(--fnf-dark);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            border-radius: 8px;
            transition: all 0.2s;
        }
        .sidebar a:hover {
            background: var(--fnf-light);
            color: var(--fnf-pink);
        }
        .sidebar i {
            font-size: 14px;
            width: 18px;
            color: var(--fnf-pink);
        }
        .mod-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 15px;
        }
        .mod-table th {
            background: var(--fnf-dark);
            color: var(--fnf-white);
            padding: 14px;
            text-align: left;
            font-weight: 600;
        }
        .mod-table td {
            padding: 12px 14px;
            border-bottom: 1px solid var(--fnf-border);
        }
        .mod-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        .mod-table tr:hover {
            background: #f0f0ff;
        }
        .interaction-section {
            background: var(--fnf-white);
            border-radius: var(--radius);
            padding: 30px;
            margin-top: 40px;
            box-shadow: var(--shadow-sm);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 28px;
            cursor: pointer;
            margin: 15px 0;
        }
        .rating-stars i {
            color: #ccc;
            transition: color 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #ffc107;
        }
        .comment-form textarea {
            width: 100%;
            border: 2px solid var(--fnf-border);
            border-radius: 10px;
            padding: 14px;
            font-size: 14px;
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }
        .comment-form input[type="submit"] {
            background: var(--fnf-pink);
            color: var(--fnf-white);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.3s;
            margin-top: 10px;
        }
        .comment-form input[type="submit"]:hover {
            background: var(--fnf-red);
            transform: scale(1.04);
        }
        .site-footer {
            background: var(--fnf-dark);
            color: #aaa;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-title {
            color: var(--fnf-white);
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--fnf-pink);
        }
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
        }
        friend-link {
            display: block;
            padding: 10px;
            background: #222;
            margin: 5px 0;
            border-radius: 8px;
            text-align: center;
        }
        friend-link a {
            color: var(--fnf-pink);
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .mod-table {
                font-size: 13px;
            }
            .mod-table th,
            .mod-table td {
                padding: 8px;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        figure {
            margin: 25px 0;
            text-align: center;
        }
        figcaption {
            font-size: 13px;
            color: var(--fnf-grey);
            margin-top: 10px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--fnf-pink);
            color: var(--fnf-white);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: var(--shadow-md);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--fnf-red);
            transform: translateY(-3px);
        }
        .nav-links a.active {
            background: var(--fnf-pink);
            color: white;
        }
