        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.8;
            color: #1a1a1a;
            background-color: #f9f5f0;
            padding-bottom: 80px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .navbar {
            background: linear-gradient(135deg, #8b0000, #b22222, #cd5c5c);
            padding: 15px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding: 10px 25px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.35);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffd700;
            text-decoration: none;
            letter-spacing: 0.6px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 12px;
            font-size: 1.7rem;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        .nav-links li {
            margin-left: 35px;
            position: relative;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.08rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 0;
            display: inline-block;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 12px 26px;
            border-radius: 35px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-left: 22px;
            text-align: center;
            border: none;
            cursor: pointer;
            font-size: 1.08rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: #ffd700;
            color: #8b0000;
        }
        .btn-download:hover {
            background-color: #ffc107;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
        }
        .btn-login {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffd700;
        }
        .btn-login:hover {
            background-color: rgba(255,215,0,0.15);
            color: #ffd700;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 10000;
        }
        .hamburger div {
            width: 30px;
            height: 3px;
            background-color: #ffffff;
            margin: 7px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }
        .hamburger.active .bar1 {
            transform: rotate(-45deg) translate(-7px, 7px);
        }
        .hamburger.active .bar2 {
            opacity: 0;
        }
        .hamburger.active .bar3 {
            transform: rotate(45deg) translate(-7px, -7px);
        }
        .hero {
            max-width: 1500px;
            margin: 60px auto 80px;
            padding: 0 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -25%;
            left: -25%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(139,0,0,0.07) 0%, rgba(178,34,34,0.05) 100%);
            border-radius: 50%;
            z-index: -1;
        }
        .hero h1 {
            font-size: 3.8rem;
            color: #1a1a1a;
            margin-bottom: 30px;
            line-height: 1.35;
            font-weight: 800;
            text-shadow: 0 3px 6px rgba(0,0,0,0.15);
        }
        .hero h1 span {
            color: #8b0000;
        }
        .hero-tagline {
            font-size: 1.4rem;
            color: #4a4a4a;
            max-width: 1100px;
            margin: 0 auto 45px;
            font-weight: 500;
        }
        .hero-img {
            width: 100%;
            max-width: 950px;
            height: auto;
            border-radius: 25px;
            margin: 0 auto 50px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
            border: 2px solid rgba(255,215,0,0.4);
        }
        .hero-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 35px;
            max-width: 1000px;
            margin: 0 auto 55px;
        }
        .hero-feature {
            display: flex;
            align-items: center;
            background-color: #ffffff;
            padding: 14px 25px;
            border-radius: 35px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .hero-feature i {
            color: #8b0000;
            margin-right: 12px;
            font-size: 1.3rem;
        }
        .hero-feature span {
            font-weight: 500;
            color: #1a1a1a;
            font-size: 1.05rem;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .section {
            margin-bottom: 100px;
            position: relative;
        }
        .section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #8b0000, transparent);
        }
        .section:last-child::after {
            display: none;
        }
        .section-title {
            font-size: 2.6rem;
            color: #1a1a1a;
            margin-bottom: 45px;
            padding-bottom: 15px;
            border-bottom: 5px solid #8b0000;
            display: inline-block;
            font-weight: 700;
        }
        .sub-title {
            font-size: 1.9rem;
            color: #8b0000;
            margin: 55px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        .sub-title i {
            margin-right: 15px;
            font-size: 1.7rem;
        }
        .content-card {
            background-color: #ffffff;
            border-radius: 25px;
            padding: 45px;
            margin-bottom: 45px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-top: 6px solid #8b0000;
        }
        .content-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .content-card p {
            margin-bottom: 30px;
            font-size: 1.15rem;
            color: #2d2d2d;
            line-height: 1.85;
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .content-card ul {
            margin-left: 40px;
            margin-bottom: 35px;
        }
        .content-card li {
            margin-bottom: 18px;
            font-size: 1.15rem;
            color: #2d2d2d;
            line-height: 1.8;
            position: relative;
        }
        .content-card li::before {
            content: '•';
            position: absolute;
            left: -25px;
            color: #8b0000;
            font-weight: bold;
            font-size: 1.8rem;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
            margin-top: 45px;
        }
        .feature-card {
            background-color: #f8f5f0;
            border-radius: 20px;
            padding: 35px;
            border-left: 7px solid #8b0000;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .feature-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        .feature-card h4 {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            font-weight: 700;
        }
        .feature-card h4 i {
            margin-right: 15px;
            color: #8b0000;
            font-size: 1.4rem;
        }
        .feature-card p {
            font-size: 1.1rem;
            color: #444444;
            line-height: 1.8;
        }
        .game-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 70px 0;
            background-color: #ffffff;
            border-radius: 25px;
            padding: 50px 30px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
            border: 1px solid rgba(139,0,0,0.15);
        }
        .stat-item {
            text-align: center;
            margin: 25px;
            flex: 1;
            min-width: 180px;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #8b0000;
            margin-bottom: 12px;
            line-height: 1.25;
        }
        .stat-label {
            font-size: 1.2rem;
            color: #4a4a4a;
            font-weight: 500;
            text-transform: capitalize;
        }
        .quote {
            font-style: italic;
            font-size: 1.35rem;
            color: #3a3a3a;
            border-left: 6px solid #8b0000;
            padding: 30px 35px;
            margin: 50px 0;
            background-color: #f8f5f0;
            border-radius: 0 15px 15px 0;
            position: relative;
        }
        .quote::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 15px;
            font-size: 5rem;
            color: rgba(139,0,0,0.1);
            font-family: Georgia, serif;
        }
        .quote-author {
            display: block;
            margin-top: 20px;
            font-size: 1.15rem;
            color: #1a1a1a;
            font-weight: 600;
            font-style: normal;
            text-align: right;
        }
        .game-mode-tabs {
            display: flex;
            border-bottom: 3px solid #e0e0e0;
            margin-bottom: 40px;
            overflow-x: auto;
            scrollbar-width: thin;
        }
        .game-mode-tab {
            padding: 14px 28px;
            background-color: #f8f5f0;
            border: none;
            font-size: 1.15rem;
            font-weight: 600;
            color: #4a4a4a;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .game-mode-tab.active {
            background-color: #8b0000;
            color: #ffffff;
            border-radius: 10px 10px 0 0;
        }
        .game-mode-tab:hover:not(.active) {
            background-color: #e9ecef;
            color: #2d2d2d;
        }
        .game-mode-content {
            display: none;
        }
        .game-mode-content.active {
            display: block;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin-top: 40px;
        }
        .character-card {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-top: 5px solid;
            transition: transform 0.3s ease;
        }
        .character-card.warrior {
            border-color: #dc3545;
        }
        .character-card.mage {
            border-color: #6f42c1;
        }
        .character-card.archer {
            border-color: #28a745;
        }
        .character-card.assassin {
            border-color: #ffc107;
        }
        .character-card.priest {
            border-color: #17a2b8;
        }
        .character-card.brawler {
            border-color: #343a40;
        }
        .character-card:hover {
            transform: translateY(-8px);
        }
        .character-card h4 {
            font-size: 1.4rem;
            color: #1a1a1a;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
        }
        .character-card h4 i {
            margin-right: 12px;
            font-size: 1.3rem;
        }
        .character-role {
            font-size: 1rem;
            color: #666666;
            margin-bottom: 18px;
            font-style: italic;
        }
        .character-abilities {
            margin-left: 30px;
        }
        .character-abilities li {
            font-size: 1.05rem;
            margin-bottom: 10px;
        }
        .map-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 35px;
            margin-top: 45px;
        }
        .map-card {
            background-color: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .map-card:hover {
            transform: translateY(-8px);
        }
        .map-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-bottom: 4px solid #8b0000;
        }
        .map-info {
            padding: 25px;
        }
        .map-info h4 {
            font-size: 1.35rem;
            color: #1a1a1a;
            margin-bottom: 12px;
        }
        .map-location {
            font-size: 1rem;
            color: #666666;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
        }
        .map-location i {
            margin-right: 10px;
            color: #8b0000;
        }
        .map-description {
            font-size: 1.05rem;
            color: #444444;
            line-height: 1.7;
        }
        .tournament-table {
            width: 100%;
            border-collapse: collapse;
            margin: 45px 0;
            background-color: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .tournament-table th,
        .tournament-table td {
            padding: 20px 25px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }
        .tournament-table th {
            background-color: #8b0000;
            color: #ffffff;
            font-size: 1.15rem;
            font-weight: 600;
        }
        .tournament-table td {
            font-size: 1.1rem;
            color: #333333;
        }
        .tournament-table tr:nth-child(even) {
            background-color: #f8f5f0;
        }
        .tournament-table tr:hover {
            background-color: #f0ebe6;
        }
        .prize-pool {
            font-weight: 700;
            color: #8b0000;
        }
        .updates-timeline {
            position: relative;
            margin: 60px 0;
            padding-left: 50px;
        }
        .updates-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 15px;
            width: 5px;
            height: 100%;
            background-color: #8b0000;
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 70px;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-date {
            position: absolute;
            left: -42px;
            top: 0;
            width: 30px;
            height: 30px;
            background-color: #8b0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: bold;
            z-index: 1;
        }
        .timeline-content {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .timeline-version {
            font-size: 1.4rem;
            color: #1a1a1a;
            margin-bottom: 18px;
            font-weight: 700;
        }
        .timeline-changes {
            margin-left: 30px;
        }
        .timeline-changes li {
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .roadmap-phase {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 35px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-left: 7px solid #28a745;
        }
        .roadmap-phase h4 {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }
        .roadmap-phase h4 i {
            margin-right: 15px;
            color: #28a745;
        }
        .roadmap-timeline {
            font-size: 1rem;
            color: #666666;
            margin-bottom: 25px;
            font-weight: 500;
        }
        .why-play-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-top: 45px;
        }
        .why-play-item {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .why-play-item:hover {
            transform: translateY(-8px);
        }
        .why-play-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(139,0,0,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
        }
        .why-play-icon i {
            font-size: 2rem;
            color: #8b0000;
        }
        .why-play-title {
            font-size: 1.4rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .why-play-desc {
            font-size: 1.1rem;
            color: #444444;
            line-height: 1.8;
            flex-grow: 1;
        }
        .cultural-elements {
            background-color: #faf6f2;
            border-radius: 25px;
            padding: 50px;
            margin: 70px 0;
            border: 1px solid rgba(139,0,0,0.15);
        }
        .cultural-title {
            font-size: 2.2rem;
            color: #1a1a1a;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 700;
        }
        .cultural-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }
        .cultural-item {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .cultural-item h4 {
            font-size: 1.4rem;
            color: #8b0000;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .cultural-item h4 i {
            margin-right: 12px;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.3rem;
            }
            .section-title {
                font-size: 2.4rem;
            }
            .sub-title {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                right: -100%;
                top: 75px;
                height: calc(100vh - 75px);
                background: linear-gradient(180deg, #8b0000, #b22222);
                flex-direction: column;
                align-items: center;
                width: 75%;
                max-width: 380px;
                transition: 0.3s;
                padding-top: 60px;
                z-index: 9998;
                box-shadow: -5px 0 20px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 25px 0;
                width: 100%;
                text-align: center;
                margin-left: 0;
            }
            .nav-links a {
                font-size: 1.2rem;
                width: 100%;
                padding: 12px 0;
            }
            .btn {
                margin: 20px 0 0;
                width: 75%;
            }
            .hamburger {
                display: block;
            }
            .hero {
                margin: 50px auto 70px;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero-tagline {
                font-size: 1.3rem;
            }
            .game-stats {
                padding: 40px 25px;
            }
            .stat-number {
                font-size: 3rem;
            }
            .stat-label {
                font-size: 1.1rem;
            }
            .content-card {
                padding: 35px;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero-features {
                gap: 25px;
            }
            .hero-feature {
                padding: 12px 20px;
                font-size: 1rem;
            }
            .section {
                margin-bottom: 80px;
            }
            .section-title {
                font-size: 2.2rem;
                margin-bottom: 35px;
            }
            .sub-title {
                font-size: 1.5rem;
                margin: 45px 0 25px;
            }
            .game-stats {
                flex-direction: column;
                align-items: center;
            }
            .stat-item {
                margin: 20px 0;
                width: 100%;
                max-width: 320px;
            }
            .quote {
                padding: 25px 30px;
                font-size: 1.25rem;
            }
            .feature-grid,
            .character-grid,
            .map-gallery,
            .why-play-list,
            .cultural-grid {
                grid-template-columns: 1fr;
            }
            .tournament-table th,
            .tournament-table td {
                padding: 15px 18px;
                font-size: 1rem;
            }
            .updates-timeline {
                padding-left: 40px;
            }
            .timeline-content {
                padding: 30px;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 12px 18px;
            }
            .logo {
                font-size: 1.6rem;
            }
            .hero {
                margin: 40px auto 60px;
                padding: 0 20px;
            }
            .hero h1 {
                font-size: 2.1rem;
            }
            .hero-tagline {
                font-size: 1.15rem;
            }
            .hero-img {
                border-radius: 18px;
            }
            .hero-buttons {
                gap: 18px;
            }
            .btn {
                padding: 11px 22px;
                font-size: 1rem;
                width: 100%;
                margin-left: 0;
            }
            .container {
                padding: 0 20px;
            }
            .content-card {
                padding: 30px;
                border-radius: 20px;
            }
            .content-card p {
                font-size: 1.05rem;
                margin-bottom: 25px;
            }
            .content-card ul {
                margin-left: 30px;
            }
            .content-card li {
                font-size: 1.05rem;
                margin-bottom: 15px;
            }
            .feature-card {
                padding: 30px;
            }
            .map-img {
                height: 200px;
            }
            .roadmap-phase {
                padding: 30px;
            }
            .cultural-elements {
                padding: 35px;
            }
        }
        .footer {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 90px 30px 50px;
            margin-top: 120px;
            position: relative;
        }
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: #ffd700;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-bottom: 70px;
        }
        .footer-col h3 {
            font-size: 1.7rem;
            margin-bottom: 35px;
            color: #ffd700;
            font-weight: 700;
            position: relative;
            padding-bottom: 18px;
        }
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #ffd700;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 25px;
        }
        .footer-col ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ffd700;
            font-weight: bold;
        }
        .footer-col ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-col ul li a:hover {
            color: #ffd700;
            padding-left: 8px;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.07);
            border-radius: 20px;
            padding: 35px;
            margin-top: 25px;
            border: 1px solid rgba(255,215,0,0.15);
        }
        .recommendation h4 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.4rem;
            font-weight: 700;
        }
        .recommendation p {
            color: #e0e0e0;
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .recommendation p:last-child {
            margin-bottom: 0;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.15);
            color: #b0b0b0;
            font-size: 1.05rem;
        }
        .copyright-links {
            margin-bottom: 25px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .copyright-links a {
            color: #e0e0e0;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .copyright-links a:hover {
            color: #ffd700;
        }
        .copyright-text {
            margin-bottom: 20px;
        }
        .copyright-disclaimer {
            font-size: 0.95rem;
            color: #909090;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .text-bold {
            font-weight: 700;
            color: #1a1a1a;
        }
        .text-highlight {
            color: #8b0000;
            font-weight: 600;
        }
        .text-myth {
            color: #6f42c1;
            font-weight: 600;
        }
        .spacing {
            margin-bottom: 30px;
        }
        .center {
            text-align: center;
        }
        .mb-0 {
            margin-bottom: 0 !important;
        }
        .mt-0 {
            margin-top: 0 !important;
        }
        .desi-note {
            background-color: #fff8e6;
            border-left: 5px solid #ffd700;
            padding: 20px 25px;
            margin: 35px 0;
            border-radius: 0 12px 12px 0;
        }
        .desi-note p {
            margin-bottom: 0 !important;
            font-style: italic;
            color: #4a3c28;
            font-size: 1.1rem;
        }
        img.lazy {
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        img.lazy.loaded {
            opacity: 1;
        }
        .category-links, .tag-links {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .category-link, .tag-link {
            padding: 8px 18px;
            background-color: #f8f5f0;
            border-radius: 25px;
            color: #8b0000;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .category-link:hover, .tag-link:hover {
            background-color: #8b0000;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
