* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	#background: linear-gradient(180deg, #0a0a1a 0%, #0f0f2a 50%, #1a1a3e 100%);
	background: #000000;
	min-height: 100vh;
	color: #fff;
}

/* Mobile First Design */
.container {
	padding-left: 16px;
	padding-right: 16px;
}

/* Top Action Buttons - Phone ke target kore */
.top-actions {
	padding: 16px 16px 8px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.logo-area {
    flex-shrink: 0;
    width: auto;        /* 70% remove */
    max-width: 180px;   /* limit width */
}

.logo img {
    width: 100%;
    height: auto;       /* important */
    max-width: 100%;    
    object-fit: contain;
}

@media (max-width: 480px) {
    .logo-area {
        max-width: 120px;  /* mobile এ ছোট হবে */
    }
}

.logo {
	font-size: 1.3rem;
	font-weight: 800;
	background: linear-gradient(135deg, #FFD700, #FFA500);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: -0.5px;
}

.logo i {
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	color: #FFD700;
	font-size: 1.2rem;
}

.btn-group-top {
	display: flex;
	gap: 8px;
}

.btn-top {
	padding: 8px 18px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.85rem;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn-login-top {
	background: transparent;
	border: 1.5px solid #FFD700;
	color: #FFD700;
}

.btn-login-top:active {
	transform: scale(0.96);
	background: rgba(255, 215, 0, 0.1);
}

.btn-register-top {
	background: linear-gradient(135deg, #FFD700, #FFA500);
	border: none;
	color: #0a0a1a;
	box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-register-top:active {
	transform: scale(0.96);
}

/* Hero 96 Number */
.hero-number {
	text-align: center;
	padding: 20px 16px 10px;
}

.big-96 {
	font-size: 80px;
	font-weight: 900;
	background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
	letter-spacing: -4px;
}

/* Slider / Shape Card - Top e */
.slider-wrapper {
	padding: 10px 16px 20px;
}

.shape-card {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
	border-radius: 40px;
	padding: 30px 20px;
	border: 1px solid rgba(255, 215, 0, 0.15);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-container {
	position: relative;
	overflow: hidden;
}

.slide {
	display: none;
	text-align: center;
	animation: fadeEffect 0.5s ease;
}

.slide.active {
	display: block;
}

@keyframes fadeEffect {
	from { opacity: 0; transform: translateX(20px); }
	to { opacity: 1; transform: translateX(0); }
}

.slide-icon {
	font-size: 50px;
	color: #FFD700;
	margin-bottom: 15px;
}

.slide-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}

.slide-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	max-width: 280px;
	margin: 0 auto;
	line-height: 1.4;
}

.slide-badge {
	margin-top: 15px;
}

.slide-badge span {
	background: rgba(255, 215, 0, 0.15);
	padding: 6px 14px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 500;
	color: #FFD700;
}

.slider-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
}

.slider-nav-btn {
	background: rgba(255, 215, 0, 0.15);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #FFD700;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-nav-btn:active {
	transform: scale(0.9);
	background: #FFD700;
	color: #0a0a1a;
}

.slider-dots {
	display: flex;
	gap: 8px;
}

.dot {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s ease;
}

.dot.active {
	background: #FFD700;
	width: 24px;
	border-radius: 10px;
}

/* Sell Gold Text */
.sell-gold-section {
	text-align: center;
	padding: 10px 16px 20px;
}

.sell-title {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
}

.sell-title .gold {
	color: #FFD700;
}

.emergency-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(220, 53, 69, 0.15);
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 500;
	color: #ff6b6b;
	margin: 15px 0;
}

.btn-get-started {
	background: linear-gradient(135deg, #FFD700, #FFA500);
	border: none;
	padding: 14px 30px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	color: #0a0a1a;
	width: 100%;
	max-width: 280px;
	margin: 0 auto;
	display: block;
	transition: all 0.2s ease;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-get-started:active {
	transform: scale(0.97);
}

/* Features Grid */
.features-section {
	padding: 30px 16px 20px;
}

.section-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.feature-card {
	background: rgba(255, 255, 255, 0.04);
	border-radius: 20px;
	padding: 16px 12px;
	text-align: center;
	border: 1px solid rgba(255, 215, 0, 0.08);
	transition: all 0.2s ease;
}

.feature-card:active {
	transform: scale(0.97);
	background: rgba(255, 215, 0, 0.05);
}

.feature-card i {
	font-size: 28px;
	color: #FFD700;
	margin-bottom: 8px;
	display: block;
}

.feature-card h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 4px;
}

.feature-card p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* Stats Section */
.stats-section {
	padding: 20px 16px 30px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	text-align: center;
}

.stat-item h3 {
	font-size: 22px;
	font-weight: 800;
	color: #FFD700;
	margin-bottom: 4px;
}

.stat-item p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* Report Button */
.report-btn {
	position: fixed;
	bottom: 16px;
	right: 16px;
	background: rgba(255, 69, 0, 0.95);
	backdrop-filter: blur(10px);
	padding: 10px 18px;
	border-radius: 50px;
	color: white;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 1000;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.report-btn:active {
	transform: scale(0.95);
}

/* Price Ticker */
.price-ticker {
	background: rgba(0, 0, 0, 0.3);
	padding: 10px 16px;
	margin: 10px 16px;
	border-radius: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.price-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}

.price-label {
	color: rgba(255, 255, 255, 0.6);
}

.price-value {
	font-weight: 700;
	color: #FFD700;
}

/* Phone specific optimizations */
@media (max-width: 480px) {
	.big-96 {
		font-size: 70px;
	}
	
	.sell-title {
		font-size: 24px;
	}
	
	.shape-card {
		padding: 25px 15px;
	}
	
	.slide-title {
		font-size: 20px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 500px;
		margin: 0 auto;
	}
	
	body {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.main-content {
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
}

/* Loading animation */
@keyframes shimmer {
	0% { opacity: 0.5; }
	100% { opacity: 1; }
}
