body{
	margin: 0;
	padding: 0;
	background: linear-gradient(135deg, #2f1d3a 0%, #28152f 60%, #1f0e25 100%) fixed !important;
	background-color: #2f1d3a !important;
    background-image: none !important;
	color: #eae6f6;
	font-family: 'Blogger Sans', sans-serif;
	min-height: 100vh;
	overflow-x: hidden;
}

.navmenu {
	margin-bottom: 0 !important;
	padding: 8px 0;
	border-radius: 0;
	background: rgba(47, 29, 58, 0.85) !important;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 1000;
}

.navbar-brand {
	color: #eae6f6 !important;
	font-size: 32px;
	line-height: 26px;
	font-weight: 800;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	position: relative;
}
.navbar-brand:hover {
	color: #4cc07a !important;
	transform: translateY(-2px);
	text-shadow: 0 4px 8px rgba(76, 192, 122, 0.3);
}

.navbar-nav a{
	font-size: 1.2em;
	color: #cfc2e6 !important;
	padding: 8px 16px;
	border-radius: 10px;
	margin: 2px 4px;
	position: relative;
	font-weight: 600;
	transition: all 0.3s ease;
	overflow: hidden;
}

.navbar-nav a::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(76, 192, 122, 0.2), transparent);
	transition: left 0.5s ease;
}

.navbar-nav a:hover::before {
	left: 100%;
}

.navbar-nav a:hover{
	color: #4cc07a !important;
	background: rgba(76, 192, 122, 0.1);
	border-radius: 10px;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(76, 192, 122, 0.2);
}

.wrapper {
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;	
	background: rgba(57, 37, 63, 0.7);
	backdrop-filter: blur(10px);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
	border-radius: 16px;
	margin: 15px;
	animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wrap-title, .content-title{
	color: #f3ecff;
	display:inline-block;
	padding: 8px 16px 10px;
	font-weight: 800;
	font-size: 1.4em;
	position: relative;
}

.wrap-title::after, .content-title::after {
	position: relative;
	bottom: 0;
	left: 0;
	display: block;
	content: "";
	background: linear-gradient(90deg, #4cc07a, #36a869);
	border-radius: 4px;
	padding: 0;
	margin: 5px 0 0;
	width: 60px;
	height: 4px;
	transition: width 0.3s ease;
}

.wrap-title:hover::after, .content-title:hover::after {
	width: 80px;
}

.homee {
	border-radius: 16px;
	padding: 20px 20px 10px 20px;
}

.home {
	padding: 25px 20px !important;
	background: linear-gradient(135deg, rgba(57, 37, 63, 0.8), rgba(47, 29, 58, 0.9));
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.home::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #4cc07a, #9f7aea, #4cc07a);
	background-size: 200% 100%;
	animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}

.home h1 {
	font-size: 2.4em;
	color: #f3ecff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.home p {
	font-size: 1.4em;
	color: #cfc2e6;
}

.footer {
	margin: 20px auto 0;
	padding: 20px 0;
	border-radius: 16px 16px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, rgba(32, 18, 38, 0.9), rgba(25, 12, 30, 0.95));
	backdrop-filter: blur(10px);
	color: #cfc2e6;
}

/* Stats block */
.stat {
	background: linear-gradient(135deg, rgba(63, 41, 72, 0.8), rgba(57, 37, 63, 0.9));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	margin-bottom: 10px;
	padding: 15px;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	overflow: hidden;
}

.stat::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(76, 192, 122, 0.05), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stat:hover::before {
	opacity: 1;
}

.stat:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	border-color: rgba(76, 192, 122, 0.2);
}

.stat2 {
	border-radius: 12px;
	background: rgba(63, 41, 72, 0.6);
	backdrop-filter: blur(5px);
}

.stat-count {
	color: #4cc07a;
	background: rgba(76, 192, 122, 0.1);
	border: 1px solid rgba(76, 192, 122, 0.2);
	font-size: 1.9em;
	font-weight: 800;
	line-height: 1;
	border-radius: 8px;
	padding: 10px;
	margin: 10px 0;
	display: block;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-count small {
	font-size: 70%;
	color: #cfc2e6;
}

.stat-title{
	color: #eae6f6;
	padding: 5px 0;
	font-size: 100%;
	font-weight: 600;
}

.stat i {
	color: #4cc07a;
	font-size: 2.2em;
	transition: all 0.3s ease;
	transform: scale(0.9);
	text-shadow: 0 2px 8px rgba(76, 192, 122, 0.3);
}
.stat:hover i {
	  transform: scale(1) rotate(5deg);
	}

.stats {
	background: linear-gradient(135deg, #4cc07a, #36a869);
	border-radius: 12px;
	margin-bottom: 10px;
	padding: 3px;
	box-shadow: 0 4px 20px rgba(76, 192, 122, 0.3);
}

.stats2 {
	overflow: hidden;
	border-radius: 10px;
	background: rgba(57, 37, 63, 0.8);
	backdrop-filter: blur(5px);
}

.table-striped > tbody > tr:nth-of-type(2n+1) > * {
	--bs-table-accent-bg: rgba(63, 41, 72, 0.5) !important;
}

tbody, td, tfoot, th, thead, tr {
	border-color: rgba(255, 255, 255, 0.08);
}

.stats2.table-striped > tbody > tr:nth-of-type(2n+1) > * {
	--bs-table-accent-bg: rgba(70, 45, 80, 0.5);
}

.stats2 tr:last-child td{
	border-bottom: 0;
}

.alert.bg-light {
	border-radius: 12px;
	background: rgba(63, 41, 72, 0.7) !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 15px;
	backdrop-filter: blur(5px);
}

.alert-warning {
	border-color: rgba(239, 140, 69, 0.3);
	background: linear-gradient(135deg, rgba(239, 140, 69, 0.1), rgba(63, 41, 72, 0.7)) !important;
}

.alert-success {
	border-color: rgba(76, 192, 122, 0.3);
	background: linear-gradient(135deg, rgba(76, 192, 122, 0.1), rgba(63, 41, 72, 0.7)) !important;
}

.card.bg-light {
	background: rgba(63, 41, 72, 0.7) !important;
	backdrop-filter: blur(5px);
}

div.card {
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 12px;
	overflow: hidden;
}

.card-header {
	background: rgba(57, 37, 63, 0.9) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Buttons */
.btn {
	border-radius: 10px;
	font-weight: 700;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn-lg {
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 12px;
	font-weight: bold;
	padding: 12px 30px;
	font-size: 1.1em;
}

.btn-danger {
	color: #fff;
	background: linear-gradient(135deg, #ff6b4a, #ff4a4a);
	border-color: rgba(255, 107, 74, 0.3);
	box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.btn-danger:hover {
	background: linear-gradient(135deg, #ff4a4a, #ff2a2a);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
}

.btn-warning {
	background: linear-gradient(135deg, #ffc107, #ff9800);
	border-color: rgba(255, 193, 7, 0.3);
	box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
	background: linear-gradient(135deg, #ff9800, #f57c00);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-success {
	background: linear-gradient(135deg, #4cc07a, #36a869);
	border-color: rgba(76, 192, 122, 0.3);
	box-shadow: 0 4px 15px rgba(76, 192, 122, 0.3);
	color: #0b2416 !important;
}

.btn-success:hover {
	background: linear-gradient(135deg, #36a869, #2d9558);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(76, 192, 122, 0.4);
	color: #fff !important;
}

.btn-primary {
	background: linear-gradient(135deg, #9f7aea, #805ad5);
	border-color: rgba(159, 122, 234, 0.3);
	box-shadow: 0 4px 15px rgba(159, 122, 234, 0.3);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #805ad5, #6b46c1);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(159, 122, 234, 0.4);
}

.btn2 {
	border-radius: 10px !important;
	padding: 8px 20px;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;	
}

.btn-lg:hover {
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline-dark {
	color: #eae6f6;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	background: transparent;
}

.btn-outline-dark:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3) !important;
	transform: translateY(-2px);
}

.title {
	font-size: 1.5em;
	font-weight: 800;
	color: #f3ecff;
}

.title::after {
	position: relative;
	bottom: 0;
	left: 0;
	display: block;
	content: "";
	background: linear-gradient(90deg, #4cc07a, #36a869);
	border-radius: 4px;
	padding: 0;
	width: 55px;
	height: 4px;
	margin-top: 5px;
	transition: width 0.3s ease;
}

.title:hover::after {
	width: 70px;
}

.tut .card {
	background: rgba(63, 41, 72, 0.7);
	border: 2px dashed rgba(159, 122, 234, 0.4);
	position: relative;
	font-size: 15px;
	font-weight: bold;
	display: block;
	z-index: 33;
	margin: 10px auto;
	padding: 15px 0 10px;
	text-align: center;
	border-radius: 16px;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.tut .card:hover {
	border-color: rgba(76, 192, 122, 0.6);
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(76, 192, 122, 0.2);
}

.tut .badge{
	border-radius: 10px 1em;
	font-size: 18px;
	left: 10px;
	top: 10px;
	background: linear-gradient(135deg, #4cc07a, #36a869);
}

.check-list span{
	display: block;
	text-align: center;
	padding: 8px 0px;
	color: #eae6f6;
}

.check-list div:hover div{
	position: relative;
}

.check-list .check-oval {
	background: rgba(63, 41, 72, 0.7);
	border: 2px dashed rgba(159, 122, 234, 0.4);
	position: relative;
	font-size: 15px;
	font-weight: bold;
	display: block;
	z-index: 33;
	margin: 10px auto;
	padding: 15px 0 10px;
	text-align: center;
	border-radius: 16px;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.check-list div .check-oval img{
	width: 66px;
	transition: all 0.3s ease;
	filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.check-list div:hover .check-oval {
	border-color: rgba(76, 192, 122, 0.6);
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(76, 192, 122, 0.2);
}

.check-list div:hover .check-oval img{
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

.card2 {
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;	
	background: linear-gradient(135deg, rgba(0, 168, 154, 0.8), rgba(1, 106, 98, 0.9));
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
	text-shadow: 1px 1px 2px rgba(26,26,26,0.4);
	position: relative;
	overflow: hidden;
	padding: 20px 0;
}

.card2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: 2;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
	transition-duration: 120ms;
}

.card2 .fa {
	font-size: 30px;
	color: rgba(255, 255, 255, 0.9);
}

/* ACCOUNT STYLE */
.content {
	float: left;
	display: block;
	width: calc(100% - 300px);
}

.content > div {
	margin: 0;
	padding: 0;
}

.serf {
	border-radius: 12px;
	margin: 10px 5px !important;
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	background: rgba(63, 41, 72, 0.7);
	backdrop-filter: blur(5px);
	transition: all 0.3s ease;
}

.serf-link {
	font-size: 18px;
	font-weight: 700;
	color: #f3ecff !important;
	text-decoration: none !important;
}

.serf .card-footer {
	color: #cfc2e6;
	font-size: 18px;
	font-weight: 500 !important;
	background: rgba(57, 37, 63, 0.8);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.serf:hover {
	border: 1px solid rgba(76, 192, 122, 0.4) !important;
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(76, 192, 122, 0.2);
}

.serf .bg-danger {
	background: linear-gradient(135deg, #ff6b4a, #ff4a4a) !important;
}

.serf:hover .bg-danger {
	background: linear-gradient(135deg, #ff4a4a, #ff2a2a) !important;
}

.serf .bg-primary {
	background: linear-gradient(135deg, #4cc07a, #36a869) !important;
}

.serf:hover .bg-primary {
	background: linear-gradient(135deg, #36a869, #2d9558) !important;
}

.serf-link:hover {
	color: #4cc07a !important;
}

.tarif .card {
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	background: linear-gradient(135deg, rgba(0, 168, 154, 0.8), rgba(1, 106, 98, 0.9));
	background-size: 24px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.tarif .card-img {
	padding: 15px 23% 20px;
}

.tarif .card .card-img {
	transition-duration: 0.3s;
	transform: scale(0.9);
	opacity: 0.95;
	filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.tarif .card:hover .card-img{
	transform: scale(1);
	opacity: 1;
	filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

.tarif .card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 168, 154, 0.3);
}

.tarif .p-2 {
	border-radius: 0 0 16px 16px;
	background: rgba(57, 37, 63, 0.9);
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.titlec {
	color: #fff;
	font-weight: bold;
	text-shadow: 1px 1px 1px rgba(26,26,26,0.7);
	border-radius: 0;
	padding: 10px 0 15px;
	margin: -20px 0px 0px 0px;
}

.leftbar {
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(47, 29, 58, 0.9), rgba(40, 21, 47, 0.95));
	width: 290px;
	margin: 5px 10px 5px 0px;
	display: block;
	float: left;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.leftbar .menubar {
	border-radius: 16px;
}

.leftbar__menu {
	padding: 10px;
}

.leftbar__menu li {
	display: block;
	margin: 5px 0;
}

.leftbar_head {
	font-weight: 700;
	text-transform: uppercase;
	padding: 15px 20px 10px;
	color: #f3ecff;
	font-size: 1.2em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 10px;
}

.leftbar__menu li a {
	color: #cfc2e6;
	display: block;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 15px;
	margin: 2px 0;
	border-radius: 10px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.leftbar__menu li a::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(76, 192, 122, 0.1), transparent);
	transition: left 0.5s ease;
}

.leftbar__menu li a:hover::before {
	left: 100%;
}

.leftbar__menu li a span{
	text-shadow: 1px 1px 1px rgba(26,26,26,0.2);
	position: relative;
	z-index: 2;
}

.leftbar__menu li a:hover {
	color: #4cc07a;
	background: rgba(76, 192, 122, 0.1);
	transform: translateX(5px);
}

/* РАЗНОЦВЕТНЫЕ ИКОНКИ В МЕНЮ */
.leftbar__menu li a i.fa-user { color: #4cc07a !important; }
.leftbar__menu li a i.fa-rabbit { color: #ff902f !important; }
.leftbar__menu li a i.fa-eye { color: #4fc3f7 !important; }
.leftbar__menu li a i.fa-gift { color: #ff6b4a !important; }
.leftbar__menu li a i.fa-ticket-alt { color: #ffd700 !important; }
.leftbar__menu li a i.fa-dice { color: #ff4081 !important; }
.leftbar__menu li a i.fa-tasks { color: #00bcd4 !important; }
.leftbar__menu li a i.fa-star { color: #ffeb3b !important; }
.leftbar__menu li a i.fa-users { color: #4fc3f7 !important; }
.leftbar__menu li a i.fa-cog { color: #78909c !important; }
.leftbar__menu li a i.fa-sign-out-alt { color: #ff6b4a !important; }

.leftbar__menu li a i {
	position: relative;
	font-size: 20px;
	text-align: right;
	line-height: 1.2;
	margin-right: 15px;
	width: 30px;
	padding: 2px;
	text-align: center;
	transform: scale(0.9);
	transition: all 0.3s ease;
	z-index: 2;
}

.leftbar__menu li a:hover i{
	transform: scale(1) rotate(10deg);
}

/*MENU V KABINE*/
.divide {
	border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.menu-title {
	padding: 10px 15px;
	color: #4cc07a;
	font-weight: 700;
}

.menu2 {
	color: #4cc07a;
	padding-left: 20px;
	padding-top: 15px;
	font-size: 24px;
	font-weight: 600;
	line-height: 26px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.menu2:hover {
	color: #36a869;
	transform: translateX(5px);
}

.menu2 i {
	position: relative;
	margin-right: 14px;
}

.menub{
	width: calc(100% - 20px);
	margin: 10px;
	border-top: 1px dashed rgba(255, 255, 255, 0.1) !important;
	padding: 15px 10px;
}

.topbar{
	padding: 15px;
	margin: 10px;
	border-radius: 12px;
	background: rgba(63, 41, 72, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__top {
	padding-bottom: 20px;
	position: relative;
	margin-bottom: 20px;
	text-align: center;
}

.topbar__btns {
	margin-top: 15px;
}

.topbar__btn {
	margin: 0 10px;
}

.topbar__bottom {
	text-align: center;
}

/* БАЛАНС - СИМВОЛ ₽ В ОДНОЙ СТРОКЕ */
.topbar__balance {
	background: rgba(76, 192, 122, 0.1) !important;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 12px;
	border: 1px solid rgba(76, 192, 122, 0.2);
}

.topbar__balance p {
	color: #cfc2e6;
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	line-height: 1.5em;
}

.topbar__balance p b{
	font-size: 32px;
	color: #4cc07a;
	font-weight: 800;
	display: inline !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	margin-right: 5px;
}

.topbar__balance p .notranslate {
	display: inline !important;
	font-size: 24px;
	color: #cfc2e6;
	font-weight: 600;
}

.topbar__balance:hover {
	border-color: rgba(76, 192, 122, 0.4);
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(76, 192, 122, 0.2);
}

.topbar__balance:hover p b {
	color: #36a869;
}

.topbar__balance:hover p {
	color: #eae6f6;
}

.topbar__stat {
	background: rgba(159, 122, 234, 0.1);
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 12px;
	border: 1px solid rgba(159, 122, 234, 0.2);
}

.topbar__stat p {
	color: #cfc2e6;
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	line-height: 1.5em;
}

.topbar__stat p b{
	font-size: 32px;
	color: #9f7aea;
	font-weight: 800;
	display: block;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.topbar__stat p small {
	font-size: 14px;
	color: #cfc2e6;
}

.topbar__stat:hover {
	border-color: rgba(159, 122, 234, 0.4);
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(159, 122, 234, 0.2);
}

.topbar__stat:hover p b {
	color: #805ad5;
}

.topbar__stat:hover p {
	color: #eae6f6;
}

.topbar__stat2 {
	background: rgba(99, 102, 241, 0.1);
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 12px;
	border: 1px solid rgba(99, 102, 241, 0.2);
}

.topbar__stat2 p {
	color: #cfc2e6;
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	line-height: 1.5em;
}

.topbar__stat2 p b{
	font-size: 32px;
	color: #6366f1;
	font-weight: 800;
	display: block;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.topbar__stat2 p small {
	font-size: 14px;
	color: #cfc2e6;
}

.topbar__stat2:hover {
	border-color: rgba(99, 102, 241, 0.4);
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

.topbar__stat2:hover p b {
	color: #4f46e5;
}

.topbar__stat2:hover p {
	color: #eae6f6;
}

/* Forms */
.form-control, .form-select {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #eae6f6;
	border-radius: 10px;
	padding: 10px 15px;
	transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(76, 192, 122, 0.5);
	box-shadow: 0 0 0 3px rgba(76, 192, 122, 0.2);
	color: #eae6f6;
}

.form-control::placeholder {
	color: rgba(207, 194, 230, 0.6);
}

/* Badges */
.badge {
	border-radius: 10px;
	padding: 8px 12px;
	font-weight: 700;
	font-size: 0.85em;
}

.badge.bg-success {
	background: linear-gradient(135deg, #4cc07a, #36a869) !important;
}

.badge.bg-primary {
	background: linear-gradient(135deg, #9f7aea, #805ad5) !important;
}

.badge.bg-warning {
	background: linear-gradient(135deg, #ffc107, #ff9800) !important;
}

.badge.bg-danger {
	background: linear-gradient(135deg, #ff6b4a, #ff4a4a) !important;
}

/* Tables */
.table {
	color: #eae6f6;
	border-color: rgba(255, 255, 255, 0.08);
}

.table th {
	background: rgba(57, 37, 63, 0.8);
	border-color: rgba(255, 255, 255, 0.08);
	font-weight: 700;
	color: #f3ecff;
}

.table td {
	border-color: rgba(255, 255, 255, 0.08);
	background: rgba(63, 41, 72, 0.5);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
	--bs-table-accent-bg: rgba(70, 45, 80, 0.5);
	color: #eae6f6;
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(47, 29, 58, 0.5);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #4cc07a, #36a869);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #36a869, #2d9558);
}

/* СТИЛИ ДЛЯ СКРЫТИЯ/ПОКАЗА МЕНЮ НА МОБИЛЬНЫХ */
@media only screen and (max-width: 791px) {
    .menu__wrapper {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menu__wrapper.active {
        max-height: 1300px;
    }
    
    .menu2 {
        display: block;
        cursor: pointer;
        padding: 12px 20px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu2:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .content, .leftbar {
        width: 100%;
        float: none;
        margin: 0;
        margin-bottom: 10px;
    }
    
    .topbar__balance {
        margin-bottom: 8px;
    }
    
    .topbar__balance p {
        text-align: center;
    }
}

/* НА ДЕСКТОПАХ МЕНЮ ВСЕГДА ОТКРЫТО И НАДПИСЬ ВИДИМА */
@media only screen and (min-width: 792px) {
    .menu2 {
        display: block !important;
        cursor: default !important;
        padding: 12px 20px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        pointer-events: none;
    }
    
    .menu2:hover {
        background-color: transparent !important;
        transform: none !important;
    }
    
    .menu__wrapper {
        display: block !important;
        max-height: none !important;
    }
    
    .content {
        float: left;
        display: block;
        width: calc(100% - 300px);
    }
    
    .leftbar {
        width: 290px;
        margin: 5px 10px 5px 0px;
        display: block;
        float: left;
    }
}

/* Responsive */
@media (max-width: 768px) {
	.content {
		width: 100%;
		float: none;
	}
	
	.leftbar {
		width: 100%;
		float: none;
		margin: 10px 0;
	}
	
	.wrapper {
		margin: 10px;
		padding: 15px;
	}
	
	.home h1 {
		font-size: 1.8em;
	}
	
	.home p {
		font-size: 1.1em;
	}
}

/* Animation for page load */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.fade-in {
	animation: fadeIn 0.5s ease;
}

/* Pulsing animation for important elements */
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(76, 192, 122, 0.4); }
	70% { box-shadow: 0 0 0 10px rgba(76, 192, 122, 0); }
	100% { box-shadow: 0 0 0 0 rgba(76, 192, 122, 0); }
}

/* ================== РЕФЕРАЛЫ — Жёлтый акцент как на бонусах ================== */

.ref-section .stat-value,
.ref-section .bonus-value,
.ref-section .rabbit-value,
.ref-section .mining-text {
  color: #ff902f !important;
  text-shadow: 0 4px 15px rgba(255, 144, 47, 0.4) !important;
}

.ref-section .stat-label,
.ref-section .bonus-label,
.ref-section .rabbit-label {
  color: rgba(255, 144, 47, 0.8) !important;
}

/* ПРИНУДИТЕЛЬНОЕ ПЕРЕОПРЕДЕЛЕНИЕ ДЛЯ СТРАНИЦЫ РЕФЕРАЛОВ */
.stat-value,
.bonus-value,
.rabbit-value,
.mining-text,
.referral-card .stat-value,
.referral-card .bonus-value {
    color: #ff902f !important;
    text-shadow: 0 4px 15px rgba(255, 144, 47, 0.4) !important;
}

.pulse {
	animation: pulse 2s infinite;
}
/* ================== ПОЛНОЕ ОТКЛЮЧЕНИЕ ИЗМЕНЕНИЯ ФОНА ПРИ НАЖАТИИ ================== */
.menu2 {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    user-select: none !important;
    cursor: pointer !important;
    transition: transform 0.3s ease !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Убираем ВСЕ изменения фона при активном состоянии */
.menu2:active,
.menu2:focus,
.menu2:focus-visible,
.menu2:focus-within {
    background: transparent !important;
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

/* Только для мобильных устройств */
@media only screen and (max-width: 791px) {
    .menu2 {
        -webkit-tap-highlight-color: transparent !important;
        background: transparent !important;
    }
    
    .menu2:active {
        transform: translateX(5px) !important;
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
        /* Явно указываем что не должно быть фона */
        background-image: none !important;
        backdrop-filter: none !important;
    }
}

/* На десктопах убираем интерактивность */
@media only screen and (min-width: 792px) {
    .menu2 {
        cursor: default !important;
        pointer-events: none !important;
    }
}