/* Integrated Dynamic Animations & Transitions */
.pv-modal-overlay-7a69b854 {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	backdrop-filter: blur(5px);
}
.pv-modal-overlay-7a69b854.active {
	display: flex !important;
	opacity: 1 !important;
}
.pv-modal-content-7a69b854 {
	background: #0f251a;
	border: 1px solid #1a422e;
	border-radius: 12px;
	padding: 30px;
	width: 100%;
	max-width: 450px;
	position: relative;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	margin: 20px;
}
.pv-modal-close-7a69b854 {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	color: #88c9a1;
	font-size: 24px;
	cursor: pointer;
	transition: color 0.2s;
}
.pv-modal-close-7a69b854:hover {
	color: #fff;
}

/* Bulletproof Tabs */
.pv-portal-tab-content {
	display: none !important;
}
.pv-portal-tab-content.active {
	display: block !important;
}

/* Grids */
.pv-portal-stat-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
	.pv-portal-stat-row {
		grid-template-columns: 1fr !important;
	}
	.pv-portal-stat-row > div {
		margin-bottom: 20px !important;
	}
}

/* Wizard Grid & Spacing */
.pv-wizard-actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}
.pv-wizard-actions button {
	flex: 1;
	padding: 12px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	border: none;
}
@media only screen and (max-width: 768px) {
	.pv-wizard-actions {
		flex-direction: column;
	}
	.pv-wizard-actions button {
		width: 100%;
		box-sizing: border-box;
	}
}

/* Payouts container */
.pv-portal-payouts-container { display: flex; flex-direction: row; gap: 30px; align-items: start; flex-wrap: wrap; }
@media only screen and (max-width: 768px) { .pv-portal-payouts-container { flex-direction: column !important; } .pv-portal-payouts-container > div { width: 100% !important; min-width: 0 !important; margin-bottom: 20px; } }

/* =========================================================
   PROFILE PAGE MOBILE FIX (Responsive & Centered)
   ========================================================= */
.pv-profile-card-7a69b854 {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
	background: #0f251a;
	border: 1px solid #1a422e;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
	margin-top: 20px;
}
.pv-profile-img-col-7a69b854 img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	border: 2px solid #d4af37;
	aspect-ratio: 1/1;
	object-fit: cover;
	display: block;
}
.pv-profile-info-col-7a69b854 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.pv-profile-title-7a69b854 {
	color: #d4af37 !important;
	font-weight: 700 !important;
	font-size: 32px !important;
	margin: 0 0 15px !important;
	text-transform: uppercase;
}
.pv-profile-votes-7a69b854 {
	font-size: 18px;
	color: #88c9a1;
	margin-bottom: 25px;
}
.pv-profile-about-7a69b854 {
	background: #06110b;
	border: 1px solid #1c4a34;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 25px;
}
.pv-profile-share-7a69b854 {
	display: flex;
	gap: 10px;
	margin-bottom: 25px;
}
#pv-copy-btn-link-7a69b854 {
	background: #1a422e;
	border: 1px solid #23593e;
	color: #fff;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	transition: 0.2s;
}
#pv-copy-btn-link-7a69b854:hover {
	background: #23593e;
}

@media only screen and (max-width: 767px) {
	.pv-profile-card-7a69b854,
	div.pv-profile-card-7a69b854 {
		grid-template-columns: 1fr !important;
		text-align: center !important;
		padding: 20px !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
	}
	.pv-profile-img-col-7a69b854,
	div.pv-profile-img-col-7a69b854 {
		width: 100% !important;
		max-width: 100% !important; 
		margin: 0 auto 20px !important;
		text-align: center !important;
	}
	.pv-profile-img-col-7a69b854 img {
		width: 100% !important;
		max-width: 100% !important;
		border-radius: 12px !important;
	}
	.pv-profile-info-col-7a69b854 {
		width: 100% !important;
		text-align: center !important;
	}
	.pv-profile-title-7a69b854,
	h2.pv-profile-title-7a69b854 {
		color: #d4af37 !important;
		text-align: center !important;
	}
	.pv-profile-votes-7a69b854 {
		text-align: center !important;
	}
	.pv-profile-about-7a69b854 {
		text-align: center !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.pv-profile-share-7a69b854 {
		flex-direction: column !important;
		align-items: center !important;
		width: 100% !important;
	}
	#pv-share-input-7a69b854 {
		width: 100% !important;
		box-sizing: border-box !important;
		margin-bottom: 10px !important;
	}
	#pv-copy-btn-link-7a69b854 {
		width: 100% !important;
		margin-top: 0 !important;
	}
	.pv-action-btn-7a69b854,
	button.pv-action-btn-7a69b854 {
		width: 100% !important;
		box-sizing: border-box !important;
	}
}

/* =========================================================
   PAYMENT METHOD GLOW (BULLETPROOF FIX)
   ========================================================= */
.pv-payment-method {
    background: #0f251a;
    border: 1px solid #1a422e;
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    color: #88c9a1;
    font-size: 12px;
    font-weight: 600;
    user-select: none;
}
.pv-payment-method:hover {
    border-color: #d4af37;
    color: #fff;
}
.pv-payment-method.active {
    border-color: #10b981 !important;
    background: #143224 !important;
    color: #10b981 !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3) !important;
    font-weight: 700 !important;
}