
        :root {
            --gold-1: #f0c040;
            --gold-2: #e8880a;
            --gold-3: #ff6b35;
            --dark-1: #04040e;
            --dark-2: #080820;
            --dark-3: #0d0d2a;
            --crimson: #c41e3a;
            --green: #00c853;
            --text-light: #f5e6c8;
            --text-muted: #9a8870;
            --border-gold: rgba(240, 192, 64, 0.28);
            --glass-bg: rgba(255, 255, 255, 0.045);
            --glass-border: rgba(255, 255, 255, 0.10);
            --header-h: 74px;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--dark-1);
            color: var(--text-light);
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 5px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark-2);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
            border-radius: 4px;
        }

        /* ===================== HEADER ===================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            height: var(--header-h);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 50px;
            background: rgba(4, 4, 14, 0.80);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid var(--border-gold);
            transition: all 0.35s ease;
        }

        header.scrolled {
            height: 64px;
            background: rgba(4, 4, 14, 0.97);
            box-shadow: 0 6px 40px rgba(240, 192, 64, 0.10);
        }

        .logo a {
            display: inline-flex;
            align-items: center;
        }

        .logo img {
            height: 46px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 12px rgba(240, 192, 64, 0.45));
            transition: filter 0.3s;
        }

        .logo img:hover {
            filter: drop-shadow(0 0 22px rgba(240, 192, 64, 0.85));
        }

        nav {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-muted);
            font-family: 'Cinzel', serif;
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: 1.4px;
            padding: 8px 18px;
            border-radius: 30px;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1.5px;
            background: linear-gradient(90deg, var(--gold-1), var(--gold-3));
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        nav a:hover {
            color: var(--gold-1);
        }

        nav a:hover::after {
            width: 55%;
        }

        nav a.active {
            color: var(--gold-1);
            background: rgba(240, 192, 64, 0.09);
        }

        .btn-dl-nav {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 26px;
            background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
            color: #06030a;
            font-family: 'Cinzel', serif;
            font-size: 11.5px;
            font-weight: 800;
            letter-spacing: 1px;
            border-radius: 50px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 22px rgba(240, 192, 64, 0.30);
            white-space: nowrap;
        }

        .btn-dl-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 36px rgba(240, 192, 64, 0.55);
            filter: brightness(1.08);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--gold-1);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--header-h);
            left: 0;
            width: 100%;
            background: rgba(4, 4, 14, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-gold);
            padding: 18px 20px;
            flex-direction: column;
            gap: 8px;
            z-index: 999;
            transform: translateY(-10px);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .mobile-nav.open {
            display: flex;
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .mobile-nav a {
            text-decoration: none;
            color: var(--text-muted);
            font-family: 'Cinzel', serif;
            font-size: 13px;
            font-weight: 600;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid transparent;
            transition: all 0.3s;
        }

        .mobile-nav a:hover {
            color: var(--gold-1);
            background: rgba(240, 192, 64, 0.08);
            border-color: var(--border-gold);
        }

        /* ===================== BANNER ===================== */
        #home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: calc(var(--header-h) + 50px) 20px 80px;
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(135deg, #04040e 0%, #090922 35%, #140830 65%, #08101e 100%);
        }

        #home::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 55% at 50% 38%, rgba(240, 192, 64, 0.11) 0%, transparent 70%),
                radial-gradient(ellipse 55% 40% at 18% 75%, rgba(196, 30, 58, 0.14) 0%, transparent 60%),
                radial-gradient(ellipse 45% 45% at 82% 18%, rgba(80, 40, 200, 0.09) 0%, transparent 60%);
            pointer-events: none;
        }

        .card-float {
            position: absolute;
            font-size: 120px;
            opacity: 0.03;
            pointer-events: none;
            animation: floatSym 9s ease-in-out infinite;
            font-family: serif;
        }

        .card-float:nth-child(1) {
            top: 12%;
            left: 8%;
            animation-delay: 0s;
            color: var(--gold-1);
        }

        .card-float:nth-child(2) {
            top: 65%;
            left: 5%;
            animation-delay: 2s;
            color: var(--crimson);
        }

        .card-float:nth-child(3) {
            top: 18%;
            right: 7%;
            animation-delay: 1s;
            color: var(--gold-1);
        }

        .card-float:nth-child(4) {
            top: 70%;
            right: 6%;
            animation-delay: 3s;
            color: var(--crimson);
        }

        @keyframes floatSym {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-22px) rotate(8deg);
            }
        }

        .banner-inner {
            position: relative;
            z-index: 2;
            max-width: 950px;
        }

        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 22px;
            background: rgba(240, 192, 64, 0.10);
            border: 1px solid rgba(240, 192, 64, 0.38);
            border-radius: 50px;
            font-family: 'Cinzel', serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            color: var(--gold-1);
            margin-bottom: 32px;
            animation: fadeDown 0.9s ease both;
        }

        .banner-inner h1 {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(24px, 4.5vw, 58px);
            font-weight: 900;
            line-height: 1.18;
            background: linear-gradient(135deg, #fff 0%, var(--gold-1) 38%, var(--gold-3) 75%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 26px;
            animation: fadeUp 0.9s ease 0.18s both;
        }

        .banner-inner p {
            font-size: clamp(14px, 1.8vw, 17px);
            line-height: 1.85;
            color: #c0ab8a;
            max-width: 730px;
            margin: 0 auto 42px;
            font-weight: 500;
            animation: fadeUp 0.9s ease 0.34s both;
        }

        .banner-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 52px;
            background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
            color: #06030a;
            font-family: 'Cinzel', serif;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1.4px;
            border-radius: 60px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 44px rgba(240, 192, 64, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25);
            animation: fadeUp 0.9s ease 0.5s both;
            transition: all 0.35s ease;
        }

        .banner-btn::before {
            content: '';
            position: absolute;
            top: -60%;
            left: -60%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.28), transparent);
            transform: translateX(-100%) rotate(45deg);
            transition: 0.7s;
        }

        .banner-btn:hover::before {
            transform: translateX(110%) rotate(45deg);
        }

        .banner-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 56px rgba(240, 192, 64, 0.60);
        }

        .banner-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 60px;
            flex-wrap: wrap;
            animation: fadeUp 0.9s ease 0.65s both;
        }

        .banner-stat {
            text-align: center;
        }

        .banner-stat strong {
            display: block;
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(20px, 3vw, 32px);
            font-weight: 900;
            background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .banner-stat span {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 1px;
            font-weight: 600;
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===================== SECTIONS COMMON ===================== */
        section {
            padding: 94px 50px;
        }

        .sec-head {
            text-align: center;
            margin-bottom: 64px;
        }

        .sec-head h2 {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(20px, 3.2vw, 40px);
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-1) 20%, var(--gold-3) 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 14px;
        }

        .sec-line {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-1), var(--gold-3), transparent);
            border-radius: 2px;
            margin: 0 auto 16px;
        }

        .sec-sub {
            font-size: 14.5px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ===================== FEATURES ===================== */
        #features {
            background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
        }

        .feat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feat-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 22px;
            padding: 40px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(8px);
        }

        .feat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold-1), var(--gold-3), transparent);
            opacity: 0;
            transition: opacity 0.35s;
        }

        .feat-card::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(240, 192, 64, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .feat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(240, 192, 64, 0.28);
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 30px rgba(240, 192, 64, 0.08);
        }

        .feat-card:hover::before {
            opacity: 1;
        }

        .feat-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(240, 192, 64, 0.13), rgba(255, 107, 53, 0.10));
            border: 1px solid rgba(240, 192, 64, 0.28);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            font-size: 28px;
            color: var(--gold-1);
            transition: all 0.35s;
        }

        .feat-card:hover .feat-icon {
            background: linear-gradient(135deg, rgba(240, 192, 64, 0.22), rgba(255, 107, 53, 0.18));
            box-shadow: 0 0 28px rgba(240, 192, 64, 0.28);
            transform: scale(1.12) rotate(-5deg);
        }

        .feat-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--gold-1);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .feat-card p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===================== FAQ ===================== */
        #faq {
            background: linear-gradient(180deg, var(--dark-2) 0%, #0a041e 100%);
        }

        .faq-wrap {
            max-width: 920px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .faq-item:hover {
            border-color: rgba(240, 192, 64, 0.28);
        }

        .faq-q {
            padding: 22px 28px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            user-select: none;
        }

        .faq-q h3 {
            font-family: 'Cinzel', serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-light);
            flex: 1;
            line-height: 1.5;
        }

        .faq-ico {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-1);
            font-size: 13px;
            flex-shrink: 0;
            transition: all 0.35s;
        }

        .faq-item.open .faq-ico {
            background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
            color: #06030a;
            transform: rotate(45deg);
            border-color: transparent;
        }

        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.42s ease;
        }

        .faq-body.open {
            max-height: 260px;
        }

        .faq-body p {
            font-size: 14px;
            line-height: 1.85;
            color: var(--text-muted);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 16px 28px 24px;
        }

        /* ===================== APP INFO ===================== */
        #app-info {
            background: linear-gradient(135deg, var(--dark-1) 0%, #090920 50%, var(--dark-2) 100%);
        }

        .app-info-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 44px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        .info-table {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 22px;
            overflow: hidden;
        }

        .info-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.045);
            transition: background 0.3s;
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-row:hover {
            background: rgba(240, 192, 64, 0.045);
        }

        .info-label {
            display: flex;
            align-items: center;
            gap: 9px;
            font-family: 'Cinzel', serif;
            font-size: 11.5px;
            font-weight: 700;
            color: var(--gold-2);
            letter-spacing: 0.4px;
            min-width: 155px;
        }

        .info-label i {
            width: 16px;
            font-size: 12px;
            color: var(--gold-1);
        }

        .info-val {
            font-size: 13px;
            color: #c0ab8a;
            font-weight: 500;
            flex: 1;
        }

        .sec-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sec-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            padding: 24px 22px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: all 0.35s;
            position: relative;
            overflow: hidden;
        }

        .sec-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--green), rgba(0, 200, 83, 0.3));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .sec-card:hover {
            border-color: rgba(0, 200, 83, 0.3);
            transform: translateX(6px);
        }

        .sec-card:hover::before {
            opacity: 1;
        }

        .sec-card-ico {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: rgba(0, 200, 83, 0.10);
            border: 1px solid rgba(0, 200, 83, 0.28);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--green);
            flex-shrink: 0;
        }

        .sec-card h4 {
            font-family: 'Cinzel', serif;
            font-size: 13.5px;
            font-weight: 700;
            color: var(--green);
            margin-bottom: 7px;
        }

        .sec-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.68;
        }

        /* ===================== STRATEGY ===================== */
        #strategy {
            background: linear-gradient(180deg, #0a041e 0%, var(--dark-2) 100%);
        }

        .strat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .strat-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            padding: 30px 26px;
            position: relative;
            overflow: hidden;
            transition: all 0.38s ease;
        }

        .strat-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .strat-card:hover {
            transform: translateY(-8px);
            border-color: rgba(240, 192, 64, 0.24);
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
        }

        .strat-card:hover::before {
            opacity: 1;
        }

        .strat-num {
            font-family: 'Cinzel Decorative', serif;
            font-size: 44px;
            font-weight: 900;
            color: rgba(240, 192, 64, 0.10);
            line-height: 1;
            margin-bottom: 14px;
        }

        .strat-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--gold-1);
            margin-bottom: 12px;
        }

        .strat-card p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* ===================== APP FEATURES ===================== */
        #app-features {
            background: linear-gradient(180deg, var(--dark-2) 0%, #0a041e 100%);
        }

        .af-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .af-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 22px;
            padding: 32px 28px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .af-card::after {
            content: '';
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(240, 192, 64, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .af-card:hover {
            transform: translateY(-10px);
            border-color: rgba(240, 192, 64, 0.28);
            box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42), 0 0 28px rgba(240, 192, 64, 0.06);
        }

        .af-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(240, 192, 64, 0.14), rgba(232, 136, 10, 0.08));
            border: 1px solid rgba(240, 192, 64, 0.22);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--gold-1);
            margin-bottom: 20px;
            transition: all 0.35s;
        }

        .af-card:hover .af-icon {
            background: linear-gradient(135deg, rgba(240, 192, 64, 0.22), rgba(232, 136, 10, 0.18));
            box-shadow: 0 0 22px rgba(240, 192, 64, 0.20);
        }

        .af-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--gold-1);
            margin-bottom: 12px;
        }

        .af-card p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.72;
        }

        /* ===================== SLIDER ===================== */
        #slider {
            background: linear-gradient(180deg, #0a041e 0%, var(--dark-1) 100%);
            padding: 94px 0;
        }

        #slider .sec-head {
            padding: 0 50px;
        }

        .slider-wrap {
            position: relative;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 70px;
            padding: 30px 100px 50px;
        }

        .slide-img {
            flex-shrink: 0;
            width: 300px;
            height: 300px;
            border-radius: 26px;
            overflow: hidden;
            border: 1px solid var(--border-gold);
            box-shadow:
                0 24px 70px rgba(0, 0, 0, 0.55),
                0 0 50px rgba(240, 192, 64, 0.10),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
            position: relative;
        }

        .slide-img::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(240, 192, 64, 0.08) 0%, transparent 55%);
            z-index: 1;
            pointer-events: none;
        }

        .slide-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-text {
            flex: 1;
            max-width: 500px;
        }

        .slide-text h3 {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(20px, 2.6vw, 30px);
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .slide-text p {
            font-size: 15px;
            line-height: 1.82;
            color: #c0ab8a;
            font-weight: 500;
        }

        .slider-ctrl {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            padding: 30px 0 0;
        }

        .sldr-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 1px solid var(--border-gold);
            color: var(--gold-1);
            font-size: 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .sldr-btn:hover {
            background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
            color: #06030a;
            box-shadow: 0 6px 22px rgba(240, 192, 64, 0.42);
            transform: scale(1.1);
        }

        .dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(240, 192, 64, 0.28);
            cursor: pointer;
            transition: all 0.35s;
        }

        .dot.active {
            width: 26px;
            border-radius: 4px;
            background: var(--gold-1);
            box-shadow: 0 0 10px rgba(240, 192, 64, 0.5);
        }

        /* ===================== BLOG ===================== */
        #blog {
            background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 22px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .blog-card:hover {
            transform: translateY(-12px);
            border-color: rgba(240, 192, 64, 0.28);
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 30px rgba(240, 192, 64, 0.07);
        }

        .blog-img {
            position: relative;
            overflow: hidden;
            width: 100px;
            height: 100px;
            margin: auto;
            margin-top: 22px;
            border-radius: 20px;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }

        .blog-img-ov {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(4, 4, 14, 0.80) 0%, transparent 60%);
        }

        .blog-body {
            padding: 22px 22px 24px;
        }

        .blog-name {
            font-family: 'Cinzel', serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 16px;
            text-align: center;
        }

        .btn-dl-card {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 70%, var(--gold-3) 100%);
            color: #06030a;
            font-family: 'Cinzel', serif;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.8px;
            border-radius: 50px;
            text-decoration: none;
            width: 100%;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 18px rgba(240, 192, 64, 0.24);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .btn-dl-card::before {
            content: '';
            position: absolute;
            top: -60%;
            left: -60%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.24), transparent);
            transform: translateX(-100%) rotate(45deg);
            transition: 0.6s;
        }

        .btn-dl-card:hover::before {
            transform: translateX(110%) rotate(45deg);
        }

        .btn-dl-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(240, 192, 64, 0.50);
        }

        /* ===================== FOOTER ===================== */
        footer {
            background: linear-gradient(135deg, #020208 0%, #04040e 100%);
            border-top: 1px solid var(--border-gold);
            padding: 70px 50px 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 44px;
            max-width: 1200px;
            margin: 0 auto 55px;
        }

        .foot-brand img {
            height: 44px;
            margin-bottom: 18px;
            filter: drop-shadow(0 0 10px rgba(240, 192, 64, 0.32));
        }

        .foot-brand p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 22px;
            font-weight: 500;
        }

        .foot-social {
            display: flex;
            gap: 10px;
        }

        .foot-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-1);
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .foot-social a:hover {
            background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
            color: #06030a;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(240, 192, 64, 0.40);
        }

        .foot-col h4 {
            font-family: 'Cinzel', serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--gold-1);
            letter-spacing: 1.2px;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(240, 192, 64, 0.18);
        }

        .foot-col ul {
            list-style: none;
        }

        .foot-col ul li {
            margin-bottom: 12px;
        }

        .foot-col ul li a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .foot-col ul li a i {
            font-size: 10px;
            color: var(--gold-2);
        }

        .foot-col ul li a:hover {
            color: var(--gold-1);
            transform: translateX(5px);
        }

        .footer-bot {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 26px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .footer-bot p {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .footer-bot-links {
            display: flex;
            gap: 22px;
        }

        .footer-bot-links a {
            font-size: 12px;
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .footer-bot-links a:hover {
            color: var(--gold-1);
        }

        /* ===================== REVEAL ANIMATIONS ===================== */
        .reveal {
            opacity: 0;
            transform: translateY(38px);
            transition: opacity 0.72s ease, transform 0.72s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===================== RESPONSIVE ===================== */
        @media (max-width: 1100px) {
            .feat-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .strat-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .af-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .app-info-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 900px) {
            section {
                padding: 70px 30px;
            }

            header {
                padding: 0 24px;
            }

            #slider {
                padding: 70px 0;
            }

            #slider .sec-head {
                padding: 0 30px;
            }

            .slide {
                flex-direction: column;
                gap: 28px;
                padding: 30px 40px 40px;
                text-align: center;
            }

            .slide-img {
                width: 230px;
                height: 230px;
            }
        }

        @media (max-width: 768px) {

            nav,
            .btn-dl-nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            header {
                padding: 0 20px;
            }

            .feat-grid {
                grid-template-columns: 1fr;
            }

            .strat-grid {
                grid-template-columns: 1fr;
            }

            .af-grid {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bot {
                flex-direction: column;
                text-align: center;
            }

            .footer-bot-links {
                justify-content: center;
            }

            .slide {
                padding: 24px 20px 36px;
            }

            .slide-img {
                width: 190px;
                height: 190px;
            }

            section {
                padding: 60px 20px;
            }

            footer {
                padding: 60px 20px 26px;
            }
        }

        @media (max-width: 480px) {
            #home {
                padding: calc(var(--header-h) + 30px) 16px 60px;
            }

            .banner-btn {
                padding: 14px 32px;
                font-size: 12px;
            }

            .banner-stats {
                gap: 28px;
            }

            .sec-head h2 {
                font-size: 19px;
            }

            .logo img {
                height: 36px;
            }

            section {
                padding: 40px 20px;
            }

            .sec-head {
                margin-bottom: 40px;
            }

            .slider-ctrl {
                padding: 0px 0px 0px;
            }

            #slider {
                padding: 50px 0;
            }

            .btn-dl-card {
                font-size: 10px;
                padding: 12px 12px;
            }

            .btn-dl-card i {
                display: none;
            }

            .blog-body {
                padding: 14px 14px 14px;
            }

            .blog-img {
                margin-top: 14px;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .blog-name {
                font-size: 14px;
                margin-bottom: 14px;
            }

            .banner-badge {
                padding: 6px 20px;
                font-size: 10px;
            }

            .banner-btn {
                flex-direction: column;
            }

            header.scrolled {
                height: 74px;
            }

        }
    