html,
body {
	touch-action: pan-x pan-y;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
    color: #ffffff;
}

:root {
    --primary-green: #00c853;
    --primary-red: #ff1744;
    --dark-bg: #0f172a;
    --card-bg: #111827;
    --border-color: rgba(255,255,255,0.08);
}

.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar-brand img {
	height: 100px;
	margin-top: -15px;
	margin-bottom: -15px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-right: 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.hero-section {
    position: relative;
    padding: 50px 0;
    background:
        radial-gradient(circle at top left, rgba(0,200,83,0.25), transparent 35%),
        radial-gradient(circle at top right, rgba(255,23,68,0.25), transparent 35%),
        linear-gradient(135deg, #0f172a, #111827);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 750px;
    margin-bottom: 35px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-green), #00e676);
    border: none;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,200,83,0.25);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #111827;
}

.section-padding {
    padding: 30px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #ffffff;
    margin-bottom: 45px;
}

.glass-card {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.chart-container {
    height: 500px;
    border-radius: 20px;
    background: #0b1220;
    position: relative;
    overflow: hidden;
}

.chart-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #94a3b8;
}

.chart-placeholder i {
    font-size: 70px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.market-stat {
    text-align: center;
    padding: 25px;
}

.market-stat h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
}

.market-stat h2 {
    font-size: 32px;
    font-weight: 700;
}

.market-stat .positive {
    color: var(--primary-green);
}

.market-stat .negative {
    color: var(--primary-red);
}

.analysis-card {
    overflow: hidden;
    transition: 0.3s;
}

.analysis-card:hover {
    transform: translateY(-8px);
}

.analysis-image {
    height: 220px;
    background: linear-gradient(135deg, rgba(0,200,83,0.4), rgba(255,23,68,0.4));
    position: relative;
}

.analysis-image::before {
    content: '\f201';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: rgba(255,255,255,0.2);
}

.analysis-content {
    padding: 25px;
}

.analysis-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.analysis-content p {
    color: #cbd5e1;
    line-height: 1.8;
}

.tool-card {
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,200,83,0.4);
}

.tool-card i {
    font-size: 45px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.tool-card h5 {
    font-weight: 600;
}

.membership-section {
    background:
        radial-gradient(circle at left, rgba(0,200,83,0.2), transparent 30%),
        radial-gradient(circle at right, rgba(255,23,68,0.2), transparent 30%),
        linear-gradient(135deg, #111827, #0b1220);
    border-radius: 30px;
    padding: 70px 50px;
}

.membership-section h2 {
    font-size: 46px;
    font-weight: 800;
}

.membership-features li {
    margin-bottom: 15px;
    font-size: 18px;
}

.membership-features i {
    color: var(--primary-green);
    margin-right: 10px;
}

.footer {
    background: #0b1220;
    padding: 70px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 25px;
}

.footer p,
.footer li,
.footer a {
    color: #ffffff;
    text-decoration: none;
}

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

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

.social-icons a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-green);
    color: #fff;
}

.badge-market {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(0,200,83,0.15);
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media(max-width: 991px) {

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 30px;
    }

    .membership-section h2 {
        font-size: 34px;
    }

}

@media(max-width: 767px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-section {
        padding: 30px 0 30px;
    }

    .membership-section {
        padding: 40px 25px;
    }

}

.chart-wrapper {

    background: rgba(12, 18, 32, 0.85);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 24px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.04);

}

.chart-toolbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,0.06);

}

.symbol-btn,
.timeframe-btn {

    border-radius: 10px !important;

    font-weight: 600;

    padding: 10px 18px;

    transition: 0.25s ease;

}
.timeframe-btn {

    min-width: 62px;

    border-radius: 12px !important;

}

.symbol-btn:hover,
.timeframe-btn:hover {

    transform: translateY(-1px);

}

.market-overview {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

}

.market-box {

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    padding: 12px 18px;

    border-radius: 14px;

    min-width: 110px;

    text-align: center;

}

.market-box small {

    display: block;

    color: #ffffff;

    font-size: 12px;

    margin-bottom: 4px;

}

.market-box .value {

    font-size: 18px;

    font-weight: 700;

    color: #ffffff;

}

.chart-card {

    background: #06101f;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.04);

}

#tradingChart {

    width: 100%;

    height: 650px;

}
.chart-ohlc {
    padding: 8px 12px;
    color: #d1d4dc;
    background: #0b1220;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.live-dot{
	display:inline-block;
	width:10px;
	height:10px;
	background:#00ff66;
	border-radius:50%;
	margin-right:6px;
	box-shadow:0 0 8px #00ff66;
	animation:livePulse 1.5s infinite;
}
#mobileDebug{
	position:fixed;
	bottom:0;
	left:0;
	right:0;
	max-height:200px;
	overflow:auto;
	background:#000;
	color:#0f0;
	font-size:12px;
	padding:10px;
	z-index:999999;
	font-family:monospace;
	border-top:2px solid #0f0;
}
@keyframes livePulse{
	0%{
		opacity:1;
		transform:scale(1);
		box-shadow:0 0 5px #00ff66;
	}
	50%{
		opacity:.3;
		transform:scale(1.4);
		box-shadow:0 0 15px #00ff66;
	}
	100%{
		opacity:1;
		transform:scale(1);
		box-shadow:0 0 5px #00ff66;
	}
}
@media(max-width: 991px) {

    .chart-toolbar {

        flex-direction: column;

        align-items: flex-start;

    }

    .market-overview {

        width: 100%;

    }

}

@media(max-width: 767px) {

    .market-overview {

        gap: 10px;

    }

    .market-box {

        flex: 1 1 calc(50% - 10px);

        min-width: auto;

    }
}
