.activity-rewards-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #2d3246 0%, #242837 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(126, 111, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.activity-rewards-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(126, 111, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.activity-rewards-banner:hover::before {
    left: 100%;
}

.activity-rewards-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.activity-rewards-banner a {
    padding: 32px;
    display: block;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.activity-rewards-banner h3 {
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    margin-bottom: 24px;
    color: #ffffff;
    background: rgba(126, 111, 255, 0.1);
    border: 1px solid rgba(126, 111, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.activity-rewards-banner h3::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.activity-rewards-banner p {
    color: #b0b3c1;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.activity-rewards-banner img {
    width: 100%;
    max-width: 280px;
    display: block;
    margin: 0 auto 24px;
    border-radius: 12px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.activity-rewards-banner:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
}

.day-in-a-row {
    color: #FBAB7E !important;
    font-weight: 700 !important;
    background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 50%, #FBAB7E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
    padding: 0 4px;
}

.day-in-a-row::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
    border-radius: 2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.reward {
    padding: 24px 20px;
    border-radius: 20px;
    display: flex;
    position: relative;
    background: #35383b52;
    margin-bottom: 20px !important;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.reward:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.reward::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4d856d, #314c4a, #3b8d6b);
    background-size: 200% 100%;
    animation: gradientFlow 1.5s ease infinite;
}

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

.reward .received {
    display: none;
}

.reward.active {
    background: linear-gradient(145deg, #3a7157 0%, #4dde97 100%);
}

.reward.active .received {
    display: flex;
    position: absolute;
    width: 100%;
    height: 140% !important;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    z-index: 2;
    transition: all 0.4s ease;
    border-radius: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	margin-top: -70px;
}

.reward.active .received:hover {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: none;
    font-size: 0;
    color: transparent;
}

.reward.active .received:hover::after {
    content: '';
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

.reward .reward-day {
    flex-direction: column;
    width: 140px;
    height: 75px;
    border-radius: 16px;
    align-items: center;
    background: linear-gradient(135deg, #283a3f 0%, #569778 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    margin-top: -33px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgb(113 255 111 / 30%);
    transition: all 0.3s ease;
}

.reward:hover .reward-day {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgb(113 255 111 / 80%);
}

.reward .reward-day span {
    font-size: 32px;
    text-align: center;
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reward .reward-day i {
    font-size: 13px;
    font-weight: 600;
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.reward .reward-content {
    flex: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    padding: 0 8px;
    text-align: center;
}

.reward .reward-content span:nth-child(1) {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
    background: rgb(48 49 57);
    padding: 8px 16px;
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.reward .reward-content span:nth-child(2) {
    font-size: 14px;
    color: #b0b3c1;
    line-height: 1.5;
}

#iconrewards {
    background: linear-gradient(135deg, #2d3246 0%, #363738 100%);
    margin: 0 0 20px 0;
    padding: 16px;
    width: 56px;
    height: 56px;
    font-size: 22px;
    border-radius: 12px;
    color: #7e6fff;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(126, 111, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

#iconrewards:hover {
    background: linear-gradient(135deg, #7e6fff 0%, #5e4fcf 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(126, 111, 255, 0.4);
}

#wrapper {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #2d3246 0%, #242837 100%);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(126, 111, 255, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#inner {
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, rgba(126, 111, 255, 0.1) 0%, rgba(251, 171, 126, 0.1) 100%);
    position: absolute;
    top: 0;
    left: -100%;
    border-radius: 16px;
    border-top: 3px solid #7e6fff;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#wrapper:hover #inner {
    left: 0;
}

#buttontext {
    margin-top: 16px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

#arrowrewards {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #7e6fff;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

#wrapper:hover #arrowrewards {
    transform: translateX(5px);
    color: #FBAB7E;
}

#activity-rewards {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-gap: 20px;
    margin-top: 20px;
    padding: 0 8px;
}

#referal_procent {
    border: none;
    padding: 14px 20px;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(126, 111, 255, 0.1) 0%, rgba(251, 171, 126, 0.1) 100%);
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(126, 111, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#referal_procent:hover {
    background: linear-gradient(135deg, rgba(126, 111, 255, 0.2) 0%, rgba(251, 171, 126, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .activity-rewards-banner a {
        padding: 24px 20px;
    }
    
    .activity-rewards-banner h3 {
        font-size: 16px;
        padding: 12px;
    }
    
    .reward {
        padding: 20px 16px;
    }
    
    #activity-rewards {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        grid-gap: 16px;
    }
    
    .reward .reward-day {
        width: 120px;
        height: 65px;
        margin-top: -25px;
    }
	
	.reward.active .received {
		margin-top: -50px;
	}
	
	.left_blocked {
		width: 100%;
	}
    
    .reward .reward-day span {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    #activity-rewards {
        grid-template-columns: 1fr;
    }
    
    .activity-rewards-banner img {
        max-width: 200px;
    }
	
		.left_blocked {
		width: 100%;
	}
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --dark-bg: #1a1d29;
    --card-bg: #242837;
    --card-hover: #2d3246;
    --text-primary: #ffffff;
    --text-secondary: #b0b3c1;
    --accent: #7e6fff;
    --border-radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
  }

.blocked_block_banner {
    height: 360px;
    background: #282b3b;
    padding: 20px 25px;
    display: flex;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 20px;
	}
	
	.left_blocked {
    width: 40%;
    padding: 20px;
}

.report_btn_blocked {
    display: flex;
    transition: 0.2s;
    position: relative;
    letter-spacing: 1px;
    gap: 10px;
    cursor: pointer;
    padding: 7px 22px 7px 7px;
    background: rgb(255 1 1 / 17%);
    align-items: center;
    font-size: 10px;
    color: #fff;
    font-weight: 600;
    border-radius: 11px;
	width: 60%;
}

.report_btn_blocked i {
	border-radius: 9px;
    transition: 0.2s;
    font-size: 16px;
    color: rgb(218 73 73 / 93%);
    display: flex;
    padding-left: 1px;
    width: 33px;
    height: 33px;
    background: rgb(159 44 44 / 51%);
    align-items: center;
    justify-content: center;
}

.bans_muts {
    display: flex;
    gap: 8px;
    align-items: center;
    border: solid 1px #464646;
    border-radius: 14px;
    padding: 8px;
    margin-bottom: 45px;
    width: 283px;
}

.profile-settingss_custom {
	color: #fff;
    font-weight: 600;
    height: 45px;
    border-radius: 10px;
    font-size: 11px;
    display: flex;
    width: 100%;
    transition: .2s all;
    cursor: pointer;
    background: rgb(48 49 57);
    align-items: center;
    justify-content: center;
}

.profile-settingss_custom:hover {
	    background: rgb(35 35 38);
		color: #ada5a5;
}

.active_btn_stats {
    cursor: pointer;
    height: 50px;
    width: 100%;
    display: flex;
    text-shadow: #00000059 1px 0 11px;
    background: #29293c;
    font-weight: 600;
    border-radius: 11px;
    background: linear-gradient(23deg, #2b56da 0%, #3f6fff 55%) !important;
    box-shadow: 0px 10px 40px #6f73fd3d;
    align-items: center;
    transition: 0.2s;
    justify-content: center;
	
	}
	
.btn_bans_muts {
    cursor: pointer;
    height: 50px;
    display: flex;
    font-weight: 600;
    border-radius: 11px;
    width: 100%;
    color: #fff;
	background: linear-gradient(135deg, #283a3f 0%, #569778 100%);
    align-items: center;
    transition: 0.2s;
    justify-content: center;
}

.flex_blocked {
    display: flex;
    flex-direction: column;
    margin-bottom: 55px;
}

.blocked_text {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 15px;
    color: #fff;
}

.blocked_desp {
    font-size: 12.5px;
    font-weight: 600;
    color: #777777;
    line-height: 18px;
    position: relative;
}
	
  *[onclick],
  *[data-toggle="modal"]:hover {
    cursor: pointer;
  }

  .col-lg-9.order-is-first {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: var(--text-primary);
  }

  .heading_block {
    margin-bottom: 24px;
  }

  .double_heading {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .double_heading i {
    font-size: 32px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .heading_cap {
    display: flex;
    flex-direction: column;
  }

  .heading_so {
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .second_heading {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
  }

  .block {
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .block:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .referal_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .black_list_left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 300px;
  }

  .black_list_left i {
    font-size: 24px;
    display: flex;
    height: 56px;
    border-radius: 12px;
    width: 56px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .black_list_left:hover i {
    transform: scale(1.05);
    background: rgba(126, 111, 255, 0.2);
  }

  .black_list_text {
    display: flex;
    flex-direction: column;
  }

  .black_list_h1 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .black_list_h2 {
    font-size: 14px;
    color: var(--text-secondary);
  }

  .referal_procent {
    background: rgba(72, 195, 136, 0.15) !important;
    color: #67ce9d !important;
    border: 1px dashed rgba(72, 195, 136, 0.6);
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    white-space: nowrap;
  }

  .referal_procent:hover {
    background: rgba(72, 195, 136, 0.25) !important;
    transform: translateY(-2px);
  }

  /* Промо-линия */
  .block_rewa {
    margin-bottom: 24px;
  }

  .line_promo_up {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .micro_line {
    width: 40px;
    height: 3px;
    border-radius: 3px;
    opacity: 0.6;
  }

  .big_line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 10px;
  }

  .noty-block.success {
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 15px;
    transition: var(--transition);
  }

  .noty-block.success:hover {
    background: rgba(79, 172, 254, 0.15);
    transform: translateY(-2px);
  }

  .noty-block.success a {
    color: #4facfe;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
  }

  .noty-block.success a:hover {
    color: #7bc4ff;
    text-decoration: underline;
  }

  #activity-rewards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-gap: 20px;
    margin-top: 20px;
    padding: 10px 5px;
  }

  .loader {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(126, 111, 255, 0.2);
    border-bottom-color: var(--accent);
    border-radius: 50%;
    animation: rotation 1s linear infinite;
    margin: 40px auto;
  }

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

  .reward.active .received {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    background: rgba(77, 102, 96, 0.9);
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
    transition: var(--transition);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
  }

  .reward.active .received:hover {
    background: transparent;
    backdrop-filter: none;
    cursor: pointer;
    font-size: 0;
    color: transparent;
  }

  @media (max-width: 991.99px) {
    .referal_block {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .black_list_left {
      min-width: auto;
      width: 100%;
    }
	
		.left_blocked {
		width: 100%;
	}
    
    #activity-rewards {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  }

  @media (max-width: 575.99px) {
    .block {
      padding: 16px;
    }
    
    #activity-rewards {
      grid-template-columns: 1fr;
    }
    
		.left_blocked {
		width: 100%;
	}
	
    .heading_so {
      font-size: 20px;
    }
    
    .double_heading i {
      font-size: 28px;
    }
  }

  .block_back {
    display: flex;
    border-radius: 13px;
    background: transparent;
    padding: 7px 13px;
    margin-bottom: -20px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: max-content;
    position: relative;
    top: -35px;
    left: -40px;
  }

  .blocked_text {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 15px;
    color: #fff;
  }

  .blocked_block {
    height: 360px;
    padding: 20px 25px;
    display: flex;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    background-position: -25pc 0pc;
    transition: 11.6s;
  }

  .blocked_block:hover {
    background-position: -27pc 0pc;
    transition: 11.6s;
  }

  .circle_rewa {
    animation: animate_reduce 2s infinite;
    width: 31px;
    height: 31px;
    background: #e4b0848c;
    border-radius: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc491;
    font-size: 22px;
    font-weight: bold;
  }

  @keyframes animate_reduce {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }

  small {
    font-size: 14px;
    color: #edad78;
    font-weight: 600;
    margin-left: 4px;
  }

  #ending {
    display: flex;
    font-size: larger;
    color: #ffffff;
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }