/*======================================
  VoxMachina Trader - IKO Blockchain Theme
  Exact Match to Original Theme
======================================*/

/*=============================
  01. Variable CSS
===============================*/
:root {
    --tg-body-font-family: 'Outfit', sans-serif;
    --tg-heading-font-family: 'Plus Jakarta Sans', sans-serif;
    --tg-primary-color: #E275FF;
    --tg-theme-color2: #5729D6;
    --tg-secondary-color: #0F101E;
    --tg-body-font-color: #92939E;
    --tg-heading-font-color: #FFFFFF;
    --tg-paragraph-color: #92939E;
    --tg-body-font-size: 16px;
    --tg-body-font-weight: 400;
    --tg-heading-font-weight: 600;
    --tg-body-line-height: 1.62;
    --tg-heading-line-height: 1.2;
    --tg-green: #010314;
    --tg-white: #ffffff;
    --tg-black: #010314;
    --tg-gray: #93B2C8;
}

/*=============================
  Global Styles
===============================*/
body {
    font-family: var(--tg-body-font-family);
    font-weight: var(--tg-body-font-weight);
    font-size: var(--tg-body-font-size);
    line-height: var(--tg-body-line-height);
    color: var(--tg-body-font-color);
    font-style: normal;
    background-color: var(--tg-black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-font-color);
    margin-top: 0px;
    margin-bottom: .7rem;
    font-style: normal;
    line-height: var(--tg-heading-line-height);
    font-weight: var(--tg-heading-font-weight);
    text-transform: inherit;
}

p {
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-body-font-weight);
    line-height: var(--tg-body-line-height);
    color: var(--tg-paragraph-color);
    margin-bottom: 15px;
}

a, button {
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
    color: var(--tg-primary-color);
}

a:hover {
    color: var(--tg-primary-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.list-wrap {
    margin: 0px;
    padding: 0px;
}

.list-wrap li {
    list-style: none;
}

/*=============================
  Custom Scrollbar
===============================*/
::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: var(--tg-secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: var(--tg-secondary-color);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-image: linear-gradient(0deg, var(--tg-primary-color) 0%, var(--tg-green) 47.60%, var(--tg-black) 99.23%);
}

/*=============================
  Button Styles
===============================*/
.btn {
    user-select: none;
    background: var(--tg-white) none repeat scroll 0 0;
    border: medium none;
    border-radius: 30px;
    color: var(--tg-black);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.42px;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 45px;
    text-align: center;
    text-transform: none;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    font-family: var(--tg-heading-font-family);
}

.btn::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: var(--tg-primary-color);
    line-height: 1;
    margin-left: 20px;
    transition: all 0.3s ease 0s;
}

.btn:hover {
    background: var(--tg-secondary-color);
    color: var(--tg-white);
}

.btn:hover::after {
    color: var(--tg-white);
}

.btn.btn2 {
    background: var(--tg-white);
    color: var(--tg-black);
}

.btn.btn2::after {
    display: none;
}

.btn.btn2.show-arrow::after {
    display: inline-block;
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M1 7H13M13 7L7 1M13 7L7 13' stroke='%23E275FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    margin-left: 15px;
}

.btn.btn2:hover {
    background: var(--tg-primary-color);
    color: var(--tg-white);
}

.btn.btn2:hover.show-arrow::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M1 7H13M13 7L7 1M13 7L7 13' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/*=============================
  02. Header
===============================*/
.custom-container {
    max-width: 1710px;
}

.transparent-header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
}

.menu-area {
    padding: 40px 0 20px;
}

.menu-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.logo a, .logo img {
    transition: 0s !important;
}

.logo-text {
    font-family: var(--tg-heading-font-family);
    font-size: 32px;
    font-weight: 800;
    color: var(--tg-white);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo-text:hover {
    color: var(--tg-white);
}

.logo-trader {
    font-family: var(--tg-heading-font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--tg-primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 8px;
    vertical-align: middle;
}

.text-gradient {
    background: linear-gradient(93deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-wrap {
    display: flex;
    flex-grow: 1;
}

.navbar-wrap ul {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 70px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--tg-black);
    border-radius: 40px;
}

.navbar-wrap > ul > li {
    list-style: none;
    display: block;
    position: relative;
    margin-right: 65px;
}

.navbar-wrap > ul > li:last-child {
    margin-right: 0;
}

.navbar-wrap ul li a {
    color: var(--tg-heading-font-color);
    padding: 24px 0;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.96px;
    text-transform: uppercase;
    font-family: var(--tg-heading-font-family);
}

.navbar-wrap > ul > li.current-menu-item > a,
.navbar-wrap > ul > li:hover > a {
    color: var(--tg-primary-color);
}

.navbar-wrap > ul > li.menu-item-has-children > a::after {
    content: "\f107";
    display: inline-block;
    font-weight: 700;
    font-family: "Font Awesome 5 Free";
    margin-left: 5px;
}

/* Sub Menu */
.sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 230px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: var(--tg-secondary-color);
    margin: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    box-shadow: 0px 30px 70px 0px rgba(7, 8, 8, 0.4);
}

.navbar-wrap ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.sub-menu li {
    margin-right: 0;
    text-align: left;
    display: block;
}

.sub-menu li a {
    padding: 9px 25px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: capitalize !important;
    font-size: 15px !important;
    color: var(--tg-heading-font-color);
}

.sub-menu li a:hover {
    color: var(--tg-primary-color);
}

/* Header Action */
.header-action > ul {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.header-action > ul li {
    position: relative;
    margin-left: 15px;
    list-style: none;
}

.header-action ul li:first-child {
    margin-left: 0;
}

.header-action .header-login a {
    font-size: 14px;
    display: flex;
    align-items: center;
    background: var(--tg-white);
    color: var(--tg-black);
    font-weight: 700;
    gap: 12px;
    padding: 14px 23px;
    border-radius: 30px;
    font-family: var(--tg-heading-font-family);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-action .header-login a:hover {
    background: var(--tg-primary-color);
    color: var(--tg-white);
}

/* Sticky Header */
#sticky-header.sticky-menu {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background: var(--tg-black);
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
    padding: 15px 0;
}

/* Mobile Menu Toggle */
.mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--tg-white);
    display: none;
}

/*=============================
  Mobile Menu
===============================*/
.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--tg-secondary-color);
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: var(--tg-primary-color);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu .nav-logo img {
    max-width: 150px;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-outer .navigation {
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.mobile-menu .menu-outer .navigation li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .menu-outer .navigation li a {
    padding: 15px 25px;
    font-size: 14px;
}

.mobile-menu .social-links {
    padding: 30px 25px;
}

.mobile-menu .social-links ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--tg-white);
}

.mobile-menu .social-links a:hover {
    background: var(--tg-primary-color);
}

/*=============================
  Hero Section
===============================*/
.hero-section {
    position: relative;
    padding: 200px 0 100px;
    min-height: 100vh;
    overflow: hidden;
}

/* Video Background - Full Screen */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video,
.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    width: 177.77vh; /* 16:9 aspect ratio */
    height: 56.25vw;
    transform: translate(-50%, -50%) scale(1.2);
    pointer-events: none;
    object-fit: cover;
}

/* Hide YouTube branding by scaling up */
@media (min-aspect-ratio: 16/9) {
    .hero-video-bg video,
    .hero-video-bg iframe {
        width: 100vw;
        height: 56.25vw;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video-bg video,
    .hero-video-bg iframe {
        width: 177.77vh;
        height: 100vh;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.hero-video-bg video,
.hero-video-bg iframe {
    opacity: 0.3;
}

.hero-video-bg .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(1, 3, 20, 0.3) 0%,
        rgba(1, 3, 20, 0.2) 30%,
        rgba(87, 41, 214, 0.1) 60%,
        rgba(1, 3, 20, 0.4) 100%
    );
    z-index: 1;
}

/* Background Gradients */
.tg-bg-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
}

.purple-bg-gradient {
    width: 721px;
    height: 563px;
    background: rgba(226, 117, 255, 0.60);
    top: -200px;
    left: -200px;
}

.hero-gradient-ball {
    width: 406px;
    height: 406px;
    background: rgba(87, 41, 214, 0.80);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.green-bg-gradient {
    width: 406px;
    height: 406px;
    background: rgba(0, 216, 153, 0.30);
    bottom: -100px;
    right: -100px;
}

/* Ripple Animation */
.ripple-shape2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.ripple-shape2 span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ripple-11 { width: 180px; height: 180px; }
.ripple-12 { width: 360px; height: 360px; }
.ripple-13 { width: 540px; height: 540px; }
.ripple-14 { width: 720px; height: 720px; }
.ripple-15 { width: 900px; height: 900px; }

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.gradient-title {
    background: linear-gradient(93deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 150px;
    font-weight: 800;
    color: var(--tg-white);
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: var(--tg-heading-font-family);
    letter-spacing: -3px;
}

.bitcoin-wrap {
    position: relative;
    display: inline-block;
}

.bitcoin-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 2;
}

.hero-subtitle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.gradient-box {
    background: linear-gradient(93deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    padding: 16px 40px;
    border-radius: 30px;
    display: inline-block;
}

.gradient-box span {
    font-size: 24px;
    font-weight: 700;
    color: var(--tg-white);
    font-family: var(--tg-heading-font-family);
}

/*=============================
  Mega Badge - Hero Selling Point
===============================*/
.mega-badge {
    position: relative;
    display: inline-block;
    padding: 5px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 50%, #00d99a 100%);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(226, 117, 255, 0.5), 0 0 60px rgba(87, 41, 214, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 50px rgba(226, 117, 255, 0.7), 0 0 100px rgba(87, 41, 214, 0.5), 0 0 150px rgba(0, 217, 154, 0.3);
        transform: scale(1.02);
    }
}

.mega-badge-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(226, 117, 255, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    animation: glowRotate 5s linear infinite;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mega-badge-content {
    background: rgba(1, 3, 20, 0.95);
    border-radius: 20px;
    padding: 30px 50px;
    text-align: center;
}

.mega-badge-top {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mega-percent {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d99a 0%, #00ff88 50%, #00d99a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--tg-heading-font-family);
    line-height: 1;
    text-shadow: 0 0 40px rgba(0, 217, 154, 0.5);
    animation: percentGlow 2s ease-in-out infinite alternate;
}

@keyframes percentGlow {
    0% { filter: drop-shadow(0 0 10px rgba(0, 217, 154, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(0, 217, 154, 0.8)); }
}

.mega-label {
    font-size: 24px;
    font-weight: 800;
    color: var(--tg-white);
    letter-spacing: 3px;
    font-family: var(--tg-heading-font-family);
}

.mega-badge-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    margin: 15px 0;
}

.mega-badge-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-stocks {
    font-size: 20px;
    font-weight: 700;
    color: var(--tg-white);
    font-family: var(--tg-heading-font-family);
    letter-spacing: 1px;
}

.mega-guaranteed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #00d99a;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: rgba(0, 217, 154, 0.1);
    border: 1px solid rgba(0, 217, 154, 0.3);
    border-radius: 30px;
    margin-top: 5px;
}

.mega-guaranteed i {
    font-size: 12px;
}

@media (max-width: 767px) {
    .mega-badge-content {
        padding: 20px 30px;
    }
    
    .mega-percent {
        font-size: 48px;
    }
    
    .mega-label {
        font-size: 16px;
    }
    
    .mega-stocks {
        font-size: 16px;
    }
    
    .mega-guaranteed {
        font-size: 11px;
    }
}

.hero-desc {
    max-width: 470px;
    text-align: center;
}

.hero-desc p {
    color: var(--tg-paragraph-color);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.62;
}

/*=============================
  Section Titles
===============================*/
.section-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--tg-white);
    line-height: 1.19;
    margin-bottom: 20px;
    font-family: var(--tg-heading-font-family);
}

.section-desc {
    font-size: 16px;
    color: var(--tg-paragraph-color);
    line-height: 1.62;
    max-width: 600px;
}

/*=============================
  Brand Section
===============================*/
.brand-area {
    position: relative;
    z-index: 2;
}

.brand-title {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    font-family: var(--tg-heading-font-family);
}

.brand-item-wrap2 {
    overflow: hidden;
}

.brand-item {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-height: 35px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    opacity: 1;
}

/*=============================
  Feature Area
===============================*/
.feature-area {
    position: relative;
    overflow: hidden;
}

.feature-area-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.feature-shape2-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    opacity: 0.5;
}

.feature-shape2-2 {
    position: absolute;
    top: 30%;
    right: 10%;
    opacity: 0.5;
}

.feature-shape2-3 {
    position: absolute;
    bottom: 10%;
    left: 20%;
    opacity: 0.5;
}

.circle-radius {
    position: absolute;
    top: 15%;
    right: 5%;
    opacity: 0.3;
    z-index: 0;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(226, 117, 255, 0.2);
}

.feature-card-large {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(87, 41, 214, 0.15) 0%, rgba(87, 41, 214, 0.03) 100%);
}

.feature-card-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--tg-white);
    margin-bottom: 15px;
    font-family: var(--tg-heading-font-family);
}

.feature-card-content p {
    color: var(--tg-paragraph-color);
    font-size: 16px;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--tg-white);
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature-list li i {
    color: var(--tg-primary-color);
    font-size: 6px;
}

.feature-card-img {
    text-align: right;
    margin-top: auto;
}

.feature-card-img img {
    max-width: 100%;
    height: auto;
}

.feature-card-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(87, 41, 214, 0.20) 0%, rgba(87, 41, 214, 0.05) 100%);
}

.feature-card-small.purple {
    background: linear-gradient(180deg, rgba(226, 117, 255, 0.15) 0%, rgba(226, 117, 255, 0.03) 100%);
}

.feature-card-img-small img {
    max-width: 180px;
}

.feature-note {
    display: block;
    color: rgba(255, 255, 255, 0.40);
    font-size: 14px;
    margin-top: 15px;
}

/*=============================
  Clean Feature Cards
===============================*/
.feature-card-clean {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card-clean:hover {
    border-color: rgba(226, 117, 255, 0.3);
    transform: translateY(-5px);
    background: rgba(226, 117, 255, 0.05);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon-large i {
    font-size: 32px;
    color: var(--tg-white);
}

.feature-card-clean h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--tg-white);
    margin-bottom: 15px;
}

.feature-card-clean p {
    color: var(--tg-paragraph-color);
    font-size: 15px;
    margin-bottom: 20px;
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.clean-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tg-white);
    font-size: 14px;
    margin-bottom: 10px;
}

.clean-list li i {
    color: #00d99a;
    font-size: 12px;
}

/*=============================
  App Feature Boxes
===============================*/
.app-feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.app-feature-box:hover {
    border-color: rgba(226, 117, 255, 0.3);
    transform: translateY(-5px);
}

.app-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.app-feature-icon i {
    font-size: 24px;
    color: var(--tg-white);
}

.app-feature-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-white);
    margin-bottom: 8px;
}

.app-feature-box p {
    color: var(--tg-paragraph-color);
    font-size: 14px;
    margin: 0;
}

/*=============================
  Features Section
===============================*/
.features-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(87, 41, 214, 0.08) 50%, transparent 100%);
}

.left-vector {
    position: absolute;
    left: 0;
    top: 40%;
    opacity: 0.5;
}

.right-vector {
    position: absolute;
    right: 0;
    top: 20%;
    opacity: 0.5;
}

.features-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-img-wrap .main-img {
    position: relative;
    z-index: 2;
}

.features-img-wrap .galaxy-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.5;
}

.features-img-wrap .vector-img {
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 0;
}

.features-content {
    padding-left: 50px;
}

.features-subtitle {
    display: inline-block;
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--tg-heading-font-family);
}

.features-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--tg-white);
    margin-bottom: 20px;
    line-height: 1.19;
    font-family: var(--tg-heading-font-family);
}

.features-desc {
    color: var(--tg-paragraph-color);
    font-size: 16px;
    line-height: 1.62;
    margin-bottom: 40px;
}

.features-stats {
    display: flex;
    gap: 60px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 52px;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--tg-paragraph-color);
    font-size: 14px;
    margin: 0;
}

/*=============================
  Possibilities Section
===============================*/
.possibilities-section {
    position: relative;
    overflow: hidden;
}

.feature-shape-4-1 {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: 15%;
    right: 10%;
}

.feature-shape-4-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(226, 117, 255, 0.2);
    border-radius: 50%;
    top: 25%;
    left: 5%;
    filter: blur(80px);
}

.feature-shape-4-3 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(87, 41, 214, 0.3);
    border-radius: 50%;
    bottom: 25%;
    right: 15%;
    filter: blur(80px);
}

.feature-shape-4-4 {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: 15%;
    left: 20%;
}

.possibilities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.possibilities-item {
    display: block;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--tg-white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--tg-heading-font-family);
}

.possibilities-item:hover {
    background: rgba(226, 117, 255, 0.08);
    border-color: rgba(226, 117, 255, 0.2);
    color: var(--tg-white);
}

.bitcoin-feature-box {
    background: linear-gradient(180deg, rgba(87, 41, 214, 0.30) 0%, rgba(87, 41, 214, 0.08) 100%);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bitcoin-img-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.bitcoin-img-wrap img {
    max-width: 350px;
}

.bitcoin-content {
    text-align: center;
}

.bitcoin-label {
    display: inline-block;
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--tg-heading-font-family);
}

.bitcoin-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--tg-white);
    margin-bottom: 15px;
    font-family: var(--tg-heading-font-family);
}

.bitcoin-content p {
    color: var(--tg-paragraph-color);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.62;
}

/*=============================
  Testimonial Section
===============================*/
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-wrap-3 {
    position: relative;
}

.testimonial-wrap-circle1,
.testimonial-wrap-circle2,
.testimonial-wrap-circle3 {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.06);
}

.testimonial-wrap-circle1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.testimonial-wrap-circle2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: 10%;
}

.testimonial-wrap-circle3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
}

.testimonial-wrap-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    z-index: 0;
}

.testimonial-slider-wrap {
    position: relative;
    z-index: 2;
}

.testi-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    margin: 10px;
    transition: all 0.3s ease;
}

.testi-box:hover {
    border-color: rgba(226, 117, 255, 0.15);
}

.testi-box-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testi-box-profile-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-white);
    font-family: var(--tg-heading-font-family);
}

.testi-box-profile-details {
    flex: 1;
}

.testi-box_name {
    font-size: 18px;
    font-weight: 600;
    color: var(--tg-white);
    margin-bottom: 5px;
    font-family: var(--tg-heading-font-family);
}

.testi-box_desig {
    color: var(--tg-paragraph-color);
    font-size: 14px;
}

.testi-box-profile-ratting {
    display: flex;
    gap: 3px;
}

.testi-box-profile-ratting i {
    color: #FFC700;
    font-size: 14px;
}

.testi-box_text {
    color: var(--tg-paragraph-color);
    font-size: 16px;
    line-height: 1.62;
    margin: 0;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--tg-white);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--tg-primary-color);
    border-color: var(--tg-primary-color);
}

.slider-arrow.prev-btn {
    left: -70px;
}

.slider-arrow.next-btn {
    right: -70px;
}

/*=============================
  Technology Section
===============================*/
.technology-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(87, 41, 214, 0.10) 100%);
}

.line-shape {
    position: absolute;
    top: 10%;
    left: 5%;
    opacity: 0.3;
}

.circle001 {
    position: absolute;
    top: 20%;
    right: 10%;
    opacity: 0.5;
}

.circle002 {
    position: absolute;
    bottom: 20%;
    left: 15%;
    opacity: 0.5;
}

.technology-box {
    background: linear-gradient(180deg, rgba(87, 41, 214, 0.30) 0%, rgba(87, 41, 214, 0.08) 100%);
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.technology-label {
    display: inline-block;
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--tg-heading-font-family);
}

.technology-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--tg-white);
    margin-bottom: 20px;
    line-height: 1.19;
    font-family: var(--tg-heading-font-family);
}

.technology-desc {
    color: var(--tg-paragraph-color);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 470px;
    line-height: 1.62;
}

/* Play Button */
.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(93deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    border-radius: 50%;
    color: var(--tg-white);
    transition: all 0.3s ease;
    position: relative;
}

.play-btn::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(226, 117, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.play-btn:hover {
    transform: scale(1.1);
}

/*=============================
  FAQ Section
===============================*/
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-2-shape-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(226, 117, 255, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.accordion-area {
    position: relative;
    z-index: 2;
}

.accordion-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-card.active-item {
    border-color: rgba(226, 117, 255, 0.2);
    background: rgba(226, 117, 255, 0.03);
}

.accordion-card .accordion-button {
    background: transparent;
    color: var(--tg-white);
    font-size: 18px;
    font-weight: 600;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    width: 100%;
    text-align: left;
    font-family: var(--tg-heading-font-family);
}

.accordion-card .accordion-button:focus {
    box-shadow: none;
}

.accordion-card .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: brightness(2);
}

.accordion-card .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-card .accordion-body {
    padding: 0 30px 25px;
}

.faq-text {
    color: var(--tg-paragraph-color);
    font-size: 16px;
    line-height: 1.62;
    margin: 0;
}

/*=============================
  CTA Section
===============================*/
.cta-section {
    position: relative;
    z-index: 2;
}

.cta-box {
    background: linear-gradient(93deg, rgba(87, 41, 214, 0.40) 0%, rgba(226, 117, 255, 0.30) 100%);
    border-radius: 30px;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--tg-white);
    margin-bottom: 15px;
    font-family: var(--tg-heading-font-family);
}

.cta-desc {
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.62;
}

.cta-img {
    max-width: 380px;
}

.cta-chart-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(87, 41, 214, 0.3) 0%, rgba(226, 117, 255, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.cta-chart-icon::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px dashed rgba(226, 117, 255, 0.2);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.cta-chart-icon i {
    font-size: 80px;
    background: linear-gradient(135deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*=============================
  Footer Styles
===============================*/
.footer-area {
    background: var(--tg-black);
    position: relative;
    overflow: hidden;
}

.footer-gradient-shape {
    position: absolute;
    width: 100%;
    height: 400px;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(87, 41, 214, 0.08) 0%, transparent 100%);
    z-index: 0;
}

.footer-top {
    padding: 100px 0 60px;
    position: relative;
    z-index: 2;
}

.footer-widget {
    margin-bottom: 30px;
}

.fw-logo img {
    max-height: 50px;
    margin-bottom: 25px;
}

.footer-content p {
    color: var(--tg-paragraph-color);
    font-size: 15px;
    line-height: 1.62;
    margin-bottom: 25px;
}

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

.social-btn a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-white);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn a:hover {
    background: var(--tg-primary-color);
}

.fw-title {
    color: var(--tg-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    font-family: var(--tg-heading-font-family);
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: var(--tg-paragraph-color);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 15px 25px;
    color: var(--tg-white);
    font-size: 15px;
    flex: 1;
}

.newsletter-form .form-control::placeholder {
    color: var(--tg-paragraph-color);
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: var(--tg-primary-color);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
}

.btn5 {
    background: var(--tg-white);
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    color: var(--tg-black);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--tg-heading-font-family);
}

.btn5:hover {
    background: var(--tg-primary-color);
    color: var(--tg-white);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
}

.copyright-text {
    text-align: center;
}

.copyright-text p {
    color: var(--tg-paragraph-color);
    font-size: 14px;
    margin: 0;
}

/*=============================
  Scroll Top
===============================*/
.scroll-top {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: -10%;
    right: 30px;
    font-size: var(--tg-body-font-size);
    border-radius: 30px;
    z-index: 99;
    color: var(--tg-white);
    text-align: center;
    cursor: pointer;
    background: var(--tg-primary-color);
    transition: 1s ease;
    border: none;
}

.scroll-top.open {
    bottom: 30px;
}

.scroll-top:hover {
    background: var(--tg-secondary-color);
}

/*=============================
  Preloader
===============================*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.spinner {
    display: flex;
    gap: 5px;
}

.spinner > div {
    width: 6px;
    height: 50px;
    background: linear-gradient(180deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    animation: spinner 1.2s infinite ease-in-out;
}

.spinner .rect2 { animation-delay: -1.1s; }
.spinner .rect3 { animation-delay: -1.0s; }
.spinner .rect4 { animation-delay: -0.9s; }
.spinner .rect5 { animation-delay: -0.8s; }

@keyframes spinner {
    0%, 40%, 100% { transform: scaleY(0.4); }
    20% { transform: scaleY(1); }
}

/*=============================
  Animations
===============================*/
.alltuchtopdown {
    animation: alltuchtopdown 3s ease-in-out infinite;
}

@keyframes alltuchtopdown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.leftToRight {
    animation: leftToRight 4s ease-in-out infinite;
}

@keyframes leftToRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.spin {
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*=============================
  Responsive
===============================*/
@media (max-width: 1400px) {
    .hero-title {
        font-size: 120px;
    }
    .navbar-wrap > ul > li {
        margin-right: 40px;
    }
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 100px;
    }
    .features-content {
        padding-left: 30px;
    }
    .technology-box {
        padding: 50px 40px;
    }
    .navbar-wrap ul {
        padding: 0 40px;
    }
}

@media (max-width: 991px) {
    .mobile-nav-toggler {
        display: block;
    }
    .navbar-wrap.main-menu {
        display: none !important;
    }
    .header-action {
        margin-right: 20px;
    }
    .hero-section {
        padding: 150px 0 80px;
    }
    .hero-title {
        font-size: 70px;
    }
    .section-title {
        font-size: 36px;
    }
    .features-content {
        padding-left: 0;
        margin-top: 50px;
    }
    .features-stats {
        gap: 40px;
    }
    .possibilities-list {
        grid-template-columns: 1fr;
    }
    .bitcoin-feature-box {
        margin-top: 50px;
    }
    .technology-box {
        text-align: center;
    }
    .technology-desc {
        margin: 0 auto 30px;
    }
    .cta-box {
        padding: 40px;
        text-align: center;
    }
    .cta-desc {
        margin: 0 auto 30px;
    }
    .cta-img {
        margin-top: 30px;
    }
    .slider-arrow.prev-btn {
        left: 0;
    }
    .slider-arrow.next-btn {
        right: 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 50px;
        letter-spacing: -1px;
    }
    .bitcoin-icon {
        width: 50px;
        height: 50px;
    }
    .gradient-box span {
        font-size: 18px;
    }
    .gradient-box {
        padding: 12px 25px;
    }
    .section-title {
        font-size: 28px;
    }
    .features-title, .technology-title, .cta-title {
        font-size: 28px;
    }
    .features-stats {
        flex-direction: column;
        gap: 30px;
    }
    .stat-number {
        font-size: 36px;
    }
    .slider-arrow {
        display: none;
    }
    .header-action {
        display: none;
    }
    .footer-widget {
        text-align: center;
    }
    .social-btn {
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .menu-area {
        padding: 20px 0;
    }
}

/*=============================
  Hero Buttons
===============================*/
.hero-buttons {
    display: inline-flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.btn-video {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--tg-white);
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-video::after {
    display: none;
}

.btn-video i {
    width: 30px;
    height: 30px;
    background: var(--tg-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--tg-primary-color);
    color: var(--tg-white);
}

/*=============================
  Missed Section
===============================*/
.missed-section {
    position: relative;
}

.missed-title {
    font-size: 48px;
    margin-bottom: 50px;
}

.missed-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.missed-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 35px;
    transition: all 0.3s ease;
}

.missed-item:hover {
    border-color: rgba(226, 117, 255, 0.3);
    background: rgba(226, 117, 255, 0.05);
}

.missed-year {
    font-size: 18px;
    font-weight: 800;
    color: var(--tg-primary-color);
    font-family: var(--tg-heading-font-family);
}

.missed-event {
    font-size: 18px;
    font-weight: 600;
    color: var(--tg-white);
    flex: 1;
    text-align: center;
}

.missed-gain {
    font-size: 18px;
    font-weight: 800;
    color: #00d99a;
    font-family: var(--tg-heading-font-family);
}

.missed-desc {
    font-size: 18px;
    color: var(--tg-paragraph-color);
    max-width: 700px;
    margin: 0 auto;
}

.missed-desc strong {
    color: var(--tg-white);
}

/*=============================
  Video Section
===============================*/
.video-section {
    position: relative;
}

.video-box {
    background: linear-gradient(180deg, rgba(87, 41, 214, 0.20) 0%, rgba(87, 41, 214, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    overflow: hidden;
}

.video-thumb {
    position: relative;
    height: 400px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.stock-video-bg {
    background: linear-gradient(135deg, rgba(87, 41, 214, 0.4) 0%, rgba(226, 117, 255, 0.2) 50%, rgba(0, 216, 153, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.stock-video-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cpath d='M0,150 L50,120 L100,140 L150,80 L200,100 L250,60 L300,90 L350,40 L400,70' fill='none' stroke='rgba(0,216,153,0.5)' stroke-width='3'/%3E%3Cpath d='M0,180 L50,160 L100,170 L150,130 L200,150 L250,110 L300,130 L350,80 L400,100' fill='none' stroke='rgba(226,117,255,0.3)' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.6;
}

.video-thumb .play-btn {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    background: linear-gradient(93deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-white);
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.video-thumb .play-btn::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border: 2px solid rgba(226, 117, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.video-thumb .play-btn:hover {
    transform: scale(1.1);
}

.video-content {
    padding: 40px;
}

.video-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--tg-white);
    margin-bottom: 10px;
}

.video-content p {
    color: var(--tg-paragraph-color);
    margin: 0;
}

/*=============================
  Single Pricing Card
===============================*/
.single-pricing {
    max-width: 500px;
    margin: 0 auto;
}

.single-pricing .pricing-header {
    padding-bottom: 40px;
}

.single-pricing .pricing-features li {
    padding: 15px 0;
}

.btn-lg {
    padding: 20px 50px;
    font-size: 16px;
}

.pricing-note {
    color: var(--tg-paragraph-color);
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 0;
}

/*=============================
  Stats Bar
===============================*/
.stats-bar {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.stats-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
}

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

.stat-box h3 {
    font-size: 42px;
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--tg-paragraph-color);
    margin: 0;
    font-size: 14px;
}

/*=============================
  Feature Grid
===============================*/
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item-small {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-item-small:hover {
    border-color: rgba(226, 117, 255, 0.2);
    background: rgba(226, 117, 255, 0.05);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(93deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small i {
    font-size: 20px;
    color: var(--tg-white);
}

.feature-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--tg-white);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--tg-paragraph-color);
    margin: 0;
}

/*=============================
  Step Cards
===============================*/
.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    border-color: rgba(226, 117, 255, 0.2);
    transform: translateY(-5px);
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(93deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--tg-heading-font-family);
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--tg-white);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--tg-paragraph-color);
    margin: 0;
}

/*=============================
  Pricing Cards
===============================*/
.pricing-section {
    position: relative;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(226, 117, 255, 0.3);
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(87, 41, 214, 0.20) 0%, rgba(226, 117, 255, 0.10) 100%);
    border-color: rgba(226, 117, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(93deg, var(--tg-primary-color) 0%, var(--tg-theme-color2) 100%);
    color: var(--tg-white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--tg-white);
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--tg-white);
}

.pricing-price .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--tg-white);
    line-height: 1;
    font-family: var(--tg-heading-font-family);
}

.pricing-price .period {
    font-size: 16px;
    color: var(--tg-paragraph-color);
}

.pricing-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--tg-white);
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    width: 20px;
    text-align: center;
}

.pricing-features li .fa-check {
    color: #00d99a;
}

.pricing-features li .fa-times {
    color: #ff6b6b;
}

.pricing-features li.disabled {
    color: var(--tg-paragraph-color);
    opacity: 0.6;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--tg-white);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--tg-white);
    border-color: var(--tg-white);
    color: var(--tg-black);
}

.btn-outline::after {
    display: none;
}

/*=============================
  Footer Links
===============================*/
.footer-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link li {
    margin-bottom: 12px;
}

.footer-link a {
    color: var(--tg-paragraph-color);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link a:hover {
    color: var(--tg-primary-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--tg-primary-color);
    width: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--tg-paragraph-color);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--tg-primary-color);
}

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }

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

/*=============================
  Utilities
===============================*/
.text-center { text-align: center; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }

/* Spacing */
.pt-80 { padding-top: 80px; }
.pb-80 { padding-bottom: 80px; }
.pt-120 { padding-top: 120px; }
.pb-120 { padding-bottom: 120px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
