     
     /* ===== RESET & BASE index home===== */
     
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 40px 0 30px;
        }
        .hero-banner {
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            background: #fff;
        }
        .hero-banner img,
        .hero-banner iframe {
            width: 100%;
            display: block;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }
        .content-card ul {
            list-style: none;
            padding: 0;
        }
        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }
        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .hero {
                padding: 20px 0;
            }
            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }
          img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        }



        /* home end  */




            /* ===== RESET & BASE  About===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }
        .content-card ul {
            list-style: none;
            padding: 0;
        }
        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }
        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }

        img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        }



        /* about end  */








        /* ===== RESET & BASE Account ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }
        .content-card ul {
            list-style: none;
            padding: 0;
        }
        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }
        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        /* Account comparison table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0 8px;
            font-size: 14px;
        }
        .comparison-table th {
            background: #f0f2f8;
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
            color: #0b0e1a;
            border-bottom: 2px solid #eef0f5;
        }
        .comparison-table td {
            padding: 14px 16px;
            border-bottom: 1px solid #eef0f5;
            color: #3d405b;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .comparison-table .highlight {
            font-weight: 700;
            color: #0b0e1a;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .comparison-table {
                font-size: 12px;
            }
            .comparison-table th,
            .comparison-table td {
                padding: 10px 8px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }


        img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        }



        /* Acount end  */








         /* ===== RESET & BASE Analysis items ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo a span {
            color: #f0b90b;
        }

        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }

        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }

        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 20px;
        }

        .week-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0b0e1a;
            color: #f0b90b;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }

        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .content-card ul {
            list-style: none;
            padding: 0;
        }

        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }

        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        /* Chart placeholder */
        .chart-placeholder {
            background: #f0f2f8;
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            margin: 16px 0 8px;
            border: 2px dashed #cdd2e0;
            color: #3d405b;
        }

        .chart-placeholder i {
            font-size: 48px;
            color: #f0b90b;
            margin-bottom: 12px;
            display: block;
        }

        .chart-placeholder small {
            display: block;
            margin-top: 6px;
            color: #6a7088;
        }

        /* Sentiment bar */
        .sentiment-bar-wrap {
            margin: 16px 0;
        }

        .sentiment-bar-wrap .sentiment-label {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            font-weight: 600;
            color: #3d405b;
            margin-bottom: 4px;
        }

        .sentiment-bar {
            height: 10px;
            border-radius: 10px;
            background: #eef0f5;
            overflow: hidden;
            display: flex;
        }

        .sentiment-bar .bullish {
            background: #22c55e;
            height: 100%;
            border-radius: 10px 0 0 10px;
        }

        .sentiment-bar .bearish {
            background: #ef4444;
            height: 100%;
            border-radius: 0 10px 10px 0;
        }

        /* Key levels table */
        .levels-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 12px;
            font-size: 14px;
        }

        .levels-table th,
        .levels-table td {
            padding: 10px 14px;
            text-align: left;
            border-bottom: 1px solid #eef0f5;
        }

        .levels-table th {
            background: #f8f9fc;
            font-weight: 700;
            color: #0b0e1a;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .levels-table .support {
            color: #22c55e;
            font-weight: 700;
        }

        .levels-table .resistance {
            color: #ef4444;
            font-weight: 700;
        }

        .levels-table .current-price {
            font-weight: 800;
            color: #0b0e1a;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }

        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        .badge.badge-bull {
            background: #d4edda;
            color: #166534;
        }

        .badge.badge-bear {
            background: #fde8e8;
            color: #991b1b;
        }

        .badge.badge-neutral {
            background: #fef3cd;
            color: #854d0e;
        }

        .setup-card {
            background: #f8f9fc;
            border-radius: 12px;
            padding: 20px 22px;
            margin-top: 16px;
            border-left: 4px solid #f0b90b;
            transition: 0.2s;
        }

        .setup-card:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            transform: translateX(2px);
        }

        .setup-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .setup-card h4 i {
            color: #f0b90b;
        }

        .setup-card p {
            font-size: 14px;
            color: #3d405b;
            margin-bottom: 4px;
        }

        .setup-card .setup-detail {
            display: inline-block;
            background: #fff;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
            margin-right: 8px;
            margin-top: 4px;
            border: 1px solid #eef0f5;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        .sidebar-ad img {
            width: 100%;
            display: block;
        }

        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }

        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .sidebar-promo h3 span {
            color: #f0b90b;
        }

        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }

        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }

        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* Indicator snapshot */
        .indicator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 8px;
        }

        .indicator-item {
            background: #f8f9fc;
            border-radius: 10px;
            padding: 12px;
            text-align: center;
            border: 1px solid #eef0f5;
        }

        .indicator-item .name {
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            color: #3d405b;
        }

        .indicator-item .value {
            font-weight: 800;
            font-size: 16px;
            color: #0b0e1a;
        }

        .indicator-item .signal {
            font-size: 12px;
            font-weight: 600;
            margin-top: 2px;
        }

        .indicator-item .signal.bullish {
            color: #22c55e;
        }

        .indicator-item .signal.bearish {
            color: #ef4444;
        }

        .indicator-item .signal.neutral {
            color: #f59e0b;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .footer-brand h3 span {
            color: #f0b90b;
        }

        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }

        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }

        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }
            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .indicator-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
        }




        /* analysis item end  */








            /* ===== RESET & BASE blog grid  ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        /* ===== BLOG GRID – FIXED 3 COLUMNS ===== */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 30px;
        }

        .blog-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
        }

        .blog-card .card-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }
        .blog-card .card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .blog-card .card-date {
            font-size: 12px;
            color: #6a7088;
            margin-bottom: 8px;
        }
        .blog-card .card-date i {
            margin-right: 4px;
        }
        .blog-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .blog-card p {
            font-size: 14px;
            color: #3d405b;
            margin-bottom: 16px;
            flex: 1;
        }
        .blog-card .read-more {
            display: inline-block;
            font-weight: 600;
            color: #f0b90b;
            font-size: 14px;
            transition: 0.2s;
            align-self: flex-start;
        }
        .blog-card .read-more:hover {
            color: #d4a308;
            text-decoration: underline;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            /* 3 columns → 2 columns on tablet */
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
            /* 2 columns → 1 column on mobile */
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }

        /* top banner */
        .top-banner img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
        }
        .top-banner {
            padding: 8px 0 4px;
            background: #f4f6fa;
        }

        .mid-banner {
            margin-bottom: 24px;
        }
        .mid-banner img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }


        /* Blog grid end  */









         /* ===== RESET & BASE contact start ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }
        .content-card ul {
            list-style: none;
            padding: 0;
        }
        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }
        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        /* Contact methods grid */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 16px 0 8px;
        }
        .contact-method {
            text-align: center;
            padding: 24px 16px;
            background: #f8f9fc;
            border-radius: 12px;
            transition: 0.2s;
        }
        .contact-method:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .contact-method i {
            font-size: 30px;
            color: #f0b90b;
            margin-bottom: 12px;
        }
        .contact-method h3 {
            font-size: 16px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 6px;
        }
        .contact-method p {
            font-size: 14px;
            color: #3d405b;
        }

        /* Form styling */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 12px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 6px;
            color: #0b0e1a;
        }
        .form-group input,
        .form-group textarea {
            padding: 12px 16px;
            border: 1px solid #d0d4e0;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f0b90b;
            box-shadow: 0 0 0 3px rgba(240,185,11,0.15);
        }
        .btn-submit {
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 14px 40px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: 0.25s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }

        img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        }


        /* Contact end  */










            /* ===== RESET & BASE Daily market ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo a span {
            color: #f0b90b;
        }

        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }

        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }

        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 20px;
        }

        .date-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0b0e1a;
            color: #f0b90b;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .date-badge i {
            font-size: 16px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }

        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .content-card ul {
            list-style: none;
            padding: 0;
        }

        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }

        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        /* Sentiment bar */
        .sentiment-bar-wrap {
            margin: 16px 0;
        }

        .sentiment-bar-wrap .sentiment-label {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            font-weight: 600;
            color: #3d405b;
            margin-bottom: 4px;
        }

        .sentiment-bar {
            height: 10px;
            border-radius: 10px;
            background: #eef0f5;
            overflow: hidden;
            display: flex;
        }

        .sentiment-bar .bullish {
            background: #22c55e;
            height: 100%;
            border-radius: 10px 0 0 10px;
        }

        .sentiment-bar .bearish {
            background: #ef4444;
            height: 100%;
            border-radius: 0 10px 10px 0;
        }

        /* Key levels table style */
        .levels-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 12px;
            font-size: 14px;
        }

        .levels-table th,
        .levels-table td {
            padding: 10px 14px;
            text-align: left;
            border-bottom: 1px solid #eef0f5;
        }

        .levels-table th {
            background: #f8f9fc;
            font-weight: 700;
            color: #0b0e1a;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .levels-table .support {
            color: #22c55e;
            font-weight: 700;
        }

        .levels-table .resistance {
            color: #ef4444;
            font-weight: 700;
        }

        .levels-table .current-price {
            font-weight: 800;
            color: #0b0e1a;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }

        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        .badge.badge-bull {
            background: #d4edda;
            color: #166534;
        }

        .badge.badge-bear {
            background: #fde8e8;
            color: #991b1b;
        }

        .badge.badge-neutral {
            background: #fef3cd;
            color: #854d0e;
        }

        /* Setup card */
        .setup-card {
            background: #f8f9fc;
            border-radius: 12px;
            padding: 20px 22px;
            margin-top: 16px;
            border-left: 4px solid #f0b90b;
            transition: 0.2s;
        }

        .setup-card:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            transform: translateX(2px);
        }

        .setup-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .setup-card h4 i {
            color: #f0b90b;
        }

        .setup-card p {
            font-size: 14px;
            color: #3d405b;
            margin-bottom: 4px;
        }

        .setup-card .setup-detail {
            display: inline-block;
            background: #fff;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
            margin-right: 8px;
            margin-top: 4px;
            border: 1px solid #eef0f5;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }

        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }

        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .sidebar-promo h3 span {
            color: #f0b90b;
        }

        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }

        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }

        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* TradingView widget container */
        .tradingview-widget-container {
            width: 100%;
            overflow: hidden;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .footer-brand h3 span {
            color: #f0b90b;
        }

        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }

        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }

        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }
            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .levels-table {
                font-size: 12px;
            }
            .levels-table th,
            .levels-table td {
                padding: 8px 6px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
        }



        /* daily market end  */



            /* ===== RESET & BASE Economic ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }

        /* Live clock */
        .live-clock {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            color: #fff;
        }
        .live-clock .current-time {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .live-clock .current-date {
            font-size: 16px;
            color: #b0b8d0;
        }
        .live-clock .next-event {
            background: rgba(240,185,11,0.1);
            border: 1px solid #f0b90b;
            border-radius: 12px;
            padding: 12px 20px;
        }
        .next-event .label {
            font-size: 12px;
            text-transform: uppercase;
            color: #f0b90b;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .next-event .event-name {
            font-weight: 700;
            font-size: 16px;
            margin: 4px 0;
        }
        .next-event .event-time {
            font-size: 14px;
            color: #b0b8d0;
        }

        /* Calendar table */
        .calendar-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .calendar-table thead th {
            background: #f0f2f8;
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
            color: #0b0e1a;
            border-bottom: 2px solid #eef0f5;
        }
        .calendar-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid #eef0f5;
            vertical-align: middle;
        }
        .calendar-table tbody tr:hover {
            background: #f8f9fc;
        }
        .calendar-table .importance {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 6px;
        }
        .importance.high { background: #e74c3c; }
        .importance.medium { background: #f39c12; }
        .importance.low { background: #27ae60; }

        .flag-icon {
            margin-right: 6px;
            font-size: 16px;
            vertical-align: -1px;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .live-clock {
                flex-direction: column;
                align-items: flex-start;
            }
            .calendar-table {
                font-size: 12px;
            }
            .calendar-table thead th,
            .calendar-table tbody td {
                padding: 10px 8px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }


        /* Economic end  */



         /* ===== RESET & BASE education ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        /* Education resource grid */
        .resource-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 16px;
        }
        .resource-item {
            background: #f8f9fc;
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            border: 1px solid #eef0f5;
            transition: 0.2s;
        }
        .resource-item:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            transform: translateY(-2px);
        }
        .resource-item i {
            font-size: 34px;
            color: #f0b90b;
            margin-bottom: 12px;
        }
        .resource-item h3 {
            font-size: 17px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 8px;
        }
        .resource-item p {
            font-size: 14px;
            color: #3d405b;
            margin-bottom: 16px;
            line-height: 1.5;
        }
        .resource-item .btn-resource {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 8px 22px;
            border-radius: 30px;
            font-size: 13px;
            transition: 0.2s;
        }
        .resource-item .btn-resource:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .resource-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .resource-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }



        /* education end  */







        /* ===== RESET & BASE  FAQ ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }

        /* ===== ACCORDION ===== */
        .accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .accordion-item {
            border: 1px solid #eef0f5;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            transition: box-shadow 0.2s;
        }
        .accordion-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }

        .accordion-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            cursor: pointer;
            background: #f8f9fc;
            font-weight: 600;
            font-size: 16px;
            color: #0b0e1a;
            transition: background 0.2s;
        }
        .accordion-question:hover {
            background: #f0f2f8;
        }
        .accordion-question i {
            font-size: 18px;
            color: #f0b90b;
            transition: transform 0.3s ease;
        }
        .accordion-item.active .accordion-question i {
            transform: rotate(45deg);
        }

        .accordion-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 24px;
            color: #3d405b;
            font-size: 15px;
            line-height: 1.7;
        }
        .accordion-item.active .accordion-answer {
            max-height: 500px; /* enough for most answers */
            padding: 16px 24px 20px;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .accordion-question {
                padding: 14px 16px;
                font-size: 15px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }
        img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        }


        /* FAQ end  */


         /* ===== RESET & BASE  market analysis ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }
        .content-card ul {
            list-style: none;
            padding: 0;
        }
        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }
        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        /* Analysis resource grid */
        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 16px;
        }
        .analysis-item {
            background: #f8f9fc;
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            border: 1px solid #eef0f5;
            transition: 0.2s;
        }
        .analysis-item:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            transform: translateY(-2px);
        }
        .analysis-item i {
            font-size: 34px;
            color: #f0b90b;
            margin-bottom: 12px;
        }
        .analysis-item h3 {
            font-size: 17px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 8px;
        }
        .analysis-item p {
            font-size: 14px;
            color: #3d405b;
            margin-bottom: 16px;
            line-height: 1.5;
        }
        .analysis-item .btn-analysis {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 8px 22px;
            border-radius: 30px;
            font-size: 13px;
            transition: 0.2s;
        }
        .analysis-item .btn-analysis:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .analysis-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .analysis-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }



        /* Market analysis end  */











        /* ===== RESET & BASE  news ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo a span {
            color: #f0b90b;
        }

        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }

        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }

        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 20px;
        }

        .news-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0b0e1a;
            color: #f0b90b;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .news-badge i {
            font-size: 16px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }

        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }

        /* ===== FEATURED NEWS ===== */
        .featured-news {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }

        .featured-news:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .featured-news .featured-img {
            background: #0b0e1a;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f0b90b;
            font-size: 64px;
            position: relative;
        }

        .featured-news .featured-img .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 30px 20px;
            background: linear-gradient(0deg, rgba(11, 14, 26, 0.9) 0%, transparent 100%);
            color: #fff;
        }

        .featured-news .featured-img .overlay .tag {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .featured-news .featured-img .overlay h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .featured-news .featured-img .overlay p {
            color: #d0d4e0;
            font-size: 14px;
            margin-bottom: 0;
        }

        .featured-news .featured-body {
            padding: 20px 30px 24px;
        }

        .featured-news .featured-body .meta {
            display: flex;
            gap: 20px;
            font-size: 13px;
            color: #6a7088;
            margin-bottom: 10px;
        }

        .featured-news .featured-body .meta i {
            margin-right: 4px;
        }

        .featured-news .featured-body p {
            color: #3d405b;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .featured-news .featured-body .read-more {
            color: #f0b90b;
            font-weight: 600;
            font-size: 14px;
            transition: 0.2s;
        }

        .featured-news .featured-body .read-more:hover {
            color: #d4a308;
        }

        /* ===== NEWS GRID ===== */
        .news-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-top: 4px;
        }

        .news-item {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid #eef0f5;
            align-items: flex-start;
            transition: 0.2s;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item:hover {
            padding-left: 8px;
        }

        .news-item .news-icon {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            border-radius: 10px;
            background: #f0f2f8;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f0b90b;
            font-size: 22px;
        }

        .news-item .news-content {
            flex: 1;
        }

        .news-item .news-content .news-tag {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #f0b90b;
        }

        .news-item .news-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: #0b0e1a;
            margin: 2px 0 4px;
            line-height: 1.3;
        }

        .news-item .news-content h4 a:hover {
            color: #f0b90b;
        }

        .news-item .news-content .news-meta {
            font-size: 12px;
            color: #6a7088;
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .news-item .news-content .news-meta i {
            margin-right: 3px;
        }

        /* ===== CATEGORY TABS ===== */
        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .category-tabs .cat-btn {
            background: #f0f2f8;
            border: none;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #3d405b;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Inter', sans-serif;
        }

        .category-tabs .cat-btn:hover,
        .category-tabs .cat-btn.active {
            background: #0b0e1a;
            color: #f0b90b;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        .sidebar-ad img {
            width: 100%;
            display: block;
        }

        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }

        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .sidebar-promo h3 span {
            color: #f0b90b;
        }

        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }

        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }

        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* Trending list */
        .trending-list {
            list-style: none;
            padding: 0;
        }

        .trending-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eef0f5;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .trending-list li:last-child {
            border-bottom: none;
        }

        .trending-list .rank {
            font-weight: 800;
            font-size: 18px;
            color: #cdd2e0;
            min-width: 28px;
        }

        .trending-list .trend-text {
            font-size: 14px;
            color: #0b0e1a;
            font-weight: 500;
        }

        .trending-list .trend-text a:hover {
            color: #f0b90b;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .footer-brand h3 span {
            color: #f0b90b;
        }

        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }

        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }

        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }
            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .featured-news .featured-img {
                min-height: 160px;
            }
            .featured-news .featured-img .overlay h3 {
                font-size: 18px;
            }
            .featured-news .featured-body {
                padding: 16px 20px 20px;
            }
            .news-item {
                flex-direction: column;
                gap: 8px;
            }
            .news-item .news-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .featured-news .featured-img .overlay {
                padding: 16px 16px 12px;
            }
            .featured-news .featured-img .overlay h3 {
                font-size: 16px;
            }
        }



        /* news end  */




         /* ===== RESET & BASE  platform===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }
        .content-card ul {
            list-style: none;
            padding: 0;
        }
        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }
        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        /* Platform comparison grid */
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-top: 16px;
        }
        .platform-item {
            background: #f8f9fc;
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            border: 1px solid #eef0f5;
            transition: 0.2s;
        }
        .platform-item:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            transform: translateY(-2px);
        }
        .platform-item i {
            font-size: 36px;
            color: #f0b90b;
            margin-bottom: 12px;
        }
        .platform-item h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 8px;
        }
        .platform-item p {
            font-size: 14px;
            color: #3d405b;
            margin-bottom: 16px;
        }
        .platform-item .btn-platform {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 8px 22px;
            border-radius: 30px;
            font-size: 13px;
            transition: 0.2s;
        }
        .platform-item .btn-platform:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .platform-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }

        img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        }



        /* platform end  */










        /* ===== RESET & BASE pavacy  ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== CONTENT STYLES ===== */
        .page-content {
            padding: 50px 0 60px;
        }

        .privacy-card {
            background: #fff;
            border-radius: 16px;
            padding: 35px 40px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            max-width: 960px;
            margin: 0 auto;
            font-size: 15px;
            color: #3d405b;
        }

        .privacy-card h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .privacy-card h1 i {
            color: #f0b90b;
            font-size: 30px;
        }

        .privacy-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin: 32px 0 12px;
            padding-bottom: 6px;
            border-bottom: 2px solid #f0b90b;
            display: inline-block;
        }

        .privacy-card p {
            margin-bottom: 14px;
            line-height: 1.7;
        }
        .privacy-card ul,
        .privacy-card ol {
            margin: 10px 0 16px 22px;
        }
        .privacy-card li {
            margin-bottom: 8px;
            padding-left: 6px;
        }

        .privacy-card strong {
            color: #0b0e1a;
        }

        .privacy-card a {
            color: #f0b90b;
            font-weight: 600;
            text-decoration: underline;
        }
        .privacy-card a:hover {
            color: #c99407;
        }

        .last-updated {
            font-size: 13px;
            color: #8e92a8;
            margin-top: -12px;
            margin-bottom: 28px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .privacy-card {
                padding: 28px 25px;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .privacy-card h1 {
                font-size: 28px;
            }
            .privacy-card h2 {
                font-size: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .privacy-card h1 {
                font-size: 24px;
            }
            .privacy-card {
                padding: 20px 18px;
            }
        }



        /* privacy end  */




        /* ===== RESET & BASE  promtion ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }
        .content-card ul {
            list-style: none;
            padding: 0;
        }
        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }
        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        .highlight-box {
            background: #fffbe6;
            border-left: 4px solid #f0b90b;
            padding: 16px 20px;
            border-radius: 8px;
            margin: 16px 0;
            font-weight: 500;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }

        img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        }

        /* promotion end  */











         /* ===== RESET & BASE risk ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== CONTENT STYLES ===== */
        .page-content {
            padding: 50px 0 60px;
        }

        .risk-card {
            background: #fff;
            border-radius: 16px;
            padding: 35px 40px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            max-width: 960px;
            margin: 0 auto;
            font-size: 15px;
            color: #3d405b;
        }

        .risk-card h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .risk-card h1 i {
            color: #f0b90b;
            font-size: 30px;
        }

        .risk-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin: 32px 0 12px;
            padding-bottom: 6px;
            border-bottom: 2px solid #f0b90b;
            display: inline-block;
        }

        .risk-card p {
            margin-bottom: 14px;
            line-height: 1.7;
        }
        .risk-card ul,
        .risk-card ol {
            margin: 10px 0 16px 22px;
        }
        .risk-card li {
            margin-bottom: 8px;
            padding-left: 6px;
        }

        .risk-card strong {
            color: #0b0e1a;
        }

        .risk-card a {
            color: #f0b90b;
            font-weight: 600;
            text-decoration: underline;
        }
        .risk-card a:hover {
            color: #c99407;
        }

        .last-updated {
            font-size: 13px;
            color: #8e92a8;
            margin-top: -12px;
            margin-bottom: 28px;
        }

        .warning-box {
            background: #fff8e1;
            border-left: 4px solid #f0b90b;
            padding: 16px 20px;
            border-radius: 8px;
            margin-bottom: 24px;
        }
        .warning-box p {
            margin-bottom: 6px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .risk-card {
                padding: 28px 25px;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .risk-card h1 {
                font-size: 28px;
            }
            .risk-card h2 {
                font-size: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .risk-card h1 {
                font-size: 24px;
            }
            .risk-card {
                padding: 20px 18px;
            }
        }



        /* Risk end  */


         /* ===== RESET & BASE term  ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== CONTENT STYLES ===== */
        .page-content {
            padding: 50px 0 60px;
        }

        .terms-card {
            background: #fff;
            border-radius: 16px;
            padding: 35px 40px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            max-width: 960px;
            margin: 0 auto;
            font-size: 15px;
            color: #3d405b;
        }

        .terms-card h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .terms-card h1 i {
            color: #f0b90b;
            font-size: 30px;
        }

        .terms-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin: 32px 0 12px;
            padding-bottom: 6px;
            border-bottom: 2px solid #f0b90b;
            display: inline-block;
        }

        .terms-card p {
            margin-bottom: 14px;
            line-height: 1.7;
        }
        .terms-card ul,
        .terms-card ol {
            margin: 10px 0 16px 22px;
        }
        .terms-card li {
            margin-bottom: 8px;
            padding-left: 6px;
        }

        .terms-card strong {
            color: #0b0e1a;
        }

        .terms-card a {
            color: #f0b90b;
            font-weight: 600;
            text-decoration: underline;
        }
        .terms-card a:hover {
            color: #c99407;
        }

        .last-updated {
            font-size: 13px;
            color: #8e92a8;
            margin-top: -12px;
            margin-bottom: 28px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .terms-card {
                padding: 28px 25px;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .terms-card h1 {
                font-size: 28px;
            }
            .terms-card h2 {
                font-size: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .terms-card h1 {
                font-size: 24px;
            }
            .terms-card {
                padding: 20px 18px;
            }
        }

        /* Term end  */










        /* ===== RESET & BASE trading ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo a span {
            color: #f0b90b;
        }
        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }
        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }
        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 28px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }
        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }
        .content-card ul {
            list-style: none;
            padding: 0;
        }
        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }
        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        /* Table style for conditions */
        .conditions-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0 8px;
            font-size: 14px;
        }
        .conditions-table th {
            background: #f0f2f8;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
            color: #0b0e1a;
            border-bottom: 2px solid #eef0f5;
        }
        .conditions-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #eef0f5;
            color: #3d405b;
        }
        .conditions-table tr:last-child td {
            border-bottom: none;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        /* Sidebar promo card */
        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }
        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .sidebar-promo h3 span {
            color: #f0b90b;
        }
        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }
        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .footer-brand h3 span {
            color: #f0b90b;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }
        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }
        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }

            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .conditions-table {
                font-size: 12px;
            }
            .conditions-table th,
            .conditions-table td {
                padding: 10px 8px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
            .sidebar-promo {
                padding: 18px 16px;
            }
        }

        img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        }



        /* Trading end  */



         /* ===== RESET & BASE weekly end ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6fa;
            color: #1a1a2e;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            background: #0b0e1a;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #f0b90b;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo a {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo a span {
            color: #f0b90b;
        }

        .logo i {
            color: #f0b90b;
            font-size: 28px;
        }

        /* Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #d0d4e0;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
        }

        .nav-menu li a.active {
            color: #f0b90b;
        }

        .btn-nav-cta {
            background: #f0b90b;
            color: #0b0e1a !important;
            font-weight: 700 !important;
            padding: 8px 22px !important;
            border-radius: 30px !important;
            transition: all 0.25s ease;
        }

        .btn-nav-cta:hover {
            background: #d4a308 !important;
            transform: scale(1.04);
            color: #0b0e1a !important;
        }

        /* ===== MAIN LAYOUT ===== */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 0 50px;
        }

        /* ===== CONTENT ===== */
        .content-area h1 {
            font-size: 34px;
            font-weight: 800;
            color: #0b0e1a;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .content-area h1 span {
            color: #f0b90b;
        }

        .content-area .lead {
            font-size: 18px;
            color: #3d405b;
            margin-bottom: 20px;
        }

        .week-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0b0e1a;
            color: #f0b90b;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .week-badge i {
            font-size: 16px;
        }

        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            transition: box-shadow 0.2s;
        }

        .content-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
        }

        .content-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .content-card h2 i {
            color: #f0b90b;
            font-size: 26px;
        }

        .content-card p {
            color: #3d405b;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .content-card ul {
            list-style: none;
            padding: 0;
        }

        .content-card ul li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: #3d405b;
            font-size: 15px;
        }

        .content-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f0b90b;
            font-weight: 700;
            font-size: 18px;
        }

        /* Calendar table */
        .calendar-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 16px;
            font-size: 14px;
        }

        .calendar-table th,
        .calendar-table td {
            padding: 10px 12px;
            text-align: left;
            border-bottom: 1px solid #eef0f5;
        }

        .calendar-table th {
            background: #f8f9fc;
            font-weight: 700;
            color: #0b0e1a;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .calendar-table .impact-high {
            background: #fde8e8;
            color: #991b1b;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 20px;
            display: inline-block;
            font-size: 12px;
        }

        .calendar-table .impact-medium {
            background: #fef3cd;
            color: #854d0e;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 20px;
            display: inline-block;
            font-size: 12px;
        }

        .calendar-table .impact-low {
            background: #eef0f5;
            color: #3d405b;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 20px;
            display: inline-block;
            font-size: 12px;
        }

        /* Sentiment bar */
        .sentiment-bar-wrap {
            margin: 16px 0;
        }

        .sentiment-bar-wrap .sentiment-label {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            font-weight: 600;
            color: #3d405b;
            margin-bottom: 4px;
        }

        .sentiment-bar {
            height: 10px;
            border-radius: 10px;
            background: #eef0f5;
            overflow: hidden;
            display: flex;
        }

        .sentiment-bar .bullish {
            background: #22c55e;
            height: 100%;
            border-radius: 10px 0 0 10px;
        }

        .sentiment-bar .bearish {
            background: #ef4444;
            height: 100%;
            border-radius: 0 10px 10px 0;
        }

        /* Key levels table */
        .levels-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 12px;
            font-size: 14px;
        }

        .levels-table th,
        .levels-table td {
            padding: 10px 14px;
            text-align: left;
            border-bottom: 1px solid #eef0f5;
        }

        .levels-table th {
            background: #f8f9fc;
            font-weight: 700;
            color: #0b0e1a;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .levels-table .support {
            color: #22c55e;
            font-weight: 700;
        }

        .levels-table .resistance {
            color: #ef4444;
            font-weight: 700;
        }

        .levels-table .current-price {
            font-weight: 800;
            color: #0b0e1a;
        }

        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }

        .badge-group .badge {
            background: #f0f2f8;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
        }

        .badge.badge-bull {
            background: #d4edda;
            color: #166534;
        }

        .badge.badge-bear {
            background: #fde8e8;
            color: #991b1b;
        }

        .badge.badge-neutral {
            background: #fef3cd;
            color: #854d0e;
        }

        .setup-card {
            background: #f8f9fc;
            border-radius: 12px;
            padding: 20px 22px;
            margin-top: 16px;
            border-left: 4px solid #f0b90b;
            transition: 0.2s;
        }

        .setup-card:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            transform: translateX(2px);
        }

        .setup-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: #0b0e1a;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .setup-card h4 i {
            color: #f0b90b;
        }

        .setup-card p {
            font-size: 14px;
            color: #3d405b;
            margin-bottom: 4px;
        }

        .setup-card .setup-detail {
            display: inline-block;
            background: #fff;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #0b0e1a;
            margin-right: 8px;
            margin-top: 4px;
            border: 1px solid #eef0f5;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-ad {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef0f5;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .sidebar-ad:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
        }

        .sidebar-ad img,
        .sidebar-ad iframe {
            width: 100%;
            display: block;
        }

        .sidebar-ad .ad-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8e92a8;
            padding: 8px 16px 4px;
            background: #f8f9fc;
        }

        .sidebar-promo {
            background: linear-gradient(145deg, #0b0e1a, #1a1f35);
            color: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            text-align: center;
            border: 1px solid #2a2f4a;
        }

        .sidebar-promo h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .sidebar-promo h3 span {
            color: #f0b90b;
        }

        .sidebar-promo p {
            color: #b0b8d0;
            font-size: 14px;
            margin-bottom: 18px;
        }

        .sidebar-promo .btn-promo {
            display: inline-block;
            background: #f0b90b;
            color: #0b0e1a;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.25s;
        }

        .sidebar-promo .btn-promo:hover {
            background: #d4a308;
            transform: scale(1.04);
        }

        /* Mini snapshot */
        .snapshot-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 8px;
        }

        .snapshot-item {
            background: #f8f9fc;
            border-radius: 10px;
            padding: 12px;
            text-align: center;
            border: 1px solid #eef0f5;
        }

        .snapshot-item .symbol {
            font-weight: 700;
            font-size: 13px;
            color: #0b0e1a;
            margin-bottom: 2px;
        }

        .snapshot-item .price {
            font-weight: 800;
            font-size: 15px;
            color: #0b0e1a;
        }

        .snapshot-item .change {
            font-size: 12px;
            font-weight: 600;
            margin-top: 2px;
        }

        .snapshot-item .change.up {
            color: #22c55e;
        }

        .snapshot-item .change.down {
            color: #ef4444;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0b0e1a;
            color: #b0b8d0;
            padding: 50px 0 20px;
            margin-top: 20px;
            border-top: 3px solid #f0b90b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #1e2340;
        }

        .footer-brand h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .footer-brand h3 span {
            color: #f0b90b;
        }

        .footer-brand p {
            font-size: 14px;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: #b0b8d0;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: #f0b90b;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1f35;
            color: #b0b8d0;
            font-size: 18px;
            transition: all 0.25s;
        }

        .footer-social a:hover {
            background: #f0b90b;
            color: #0b0e1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6a7088;
        }

        .footer-bottom a {
            color: #f0b90b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-sticky {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 10px 0;
            }
            .btn-nav-cta {
                text-align: center;
            }
            .content-area h1 {
                font-size: 26px;
            }
            .content-card {
                padding: 20px;
            }
            .calendar-table {
                font-size: 12px;
            }
            .calendar-table th,
            .calendar-table td {
                padding: 8px 6px;
            }
            .snapshot-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo a {
                font-size: 20px;
            }
            .content-area h1 {
                font-size: 22px;
            }
            .content-card h2 {
                font-size: 19px;
            }
        }


        /* Weekly end  */