.hosting {
  padding: 173px 0 50px;
  color: var(--theme-text-color);
}

@media screen and (max-width: 1240px) {
  .hosting {
    padding: 150px 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .hosting {
    padding: 123px 0 50px;
  }
}

.hosting__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 61px;
  line-height: 71px;
  color: var(--theme-primary-text);
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 1240px) {
  .hosting__title {
    font-size: 55px;
  }
}

@media screen and (max-width: 767px) {
  .hosting__title {
    font-size: 40px;
    line-height: 45px;
  }
}

.hosting__text {
  font-size: 18px;
  line-height: 175%;
  max-width: 606px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 47px;
}

@media screen and (max-width: 1240px) {
  .hosting__text {
    font-size: 17px;
  }
}

@media screen and (max-width: 767px) {
  .hosting__text {
    font-size: 16px;
    margin-bottom: 37px;
  }
}

.hosting__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

@media screen and (max-width: 991px) {
  .hosting__blocks {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .hosting__blocks {
    grid-template-columns: 1fr;
  }
}

.hosting__block {
  padding: 24px 32px 41px;
  background: #1a1832;
  border-radius: var(--border-radius-large);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .hosting__block {
    padding: 24px 20px 30px;
  }
}

.hosting__img {
  width: 245px;
  height: 197px;
  margin: 0 auto;
  margin-bottom: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hosting__img img {
  width: 197px;
  height: 197px;
}

@media screen and (max-width: 1240px) {
  .hosting__img {
    width: 180px;
    height: 180px;
  }
}

@media screen and (max-width: 767px) {
  .hosting__img {
    width: 180px;
    height: 180px;
  }
}

.hosting__usluga {
  text-align: center;
  margin-bottom: 10px;
}

.hosting__usluga span {
  font-weight: 600;
}

.hosting__list {
  font-size: 20px;
  line-height: 175%;
  margin-bottom: 6px;
  position: relative;
}

.hosting__list::before {
  content: "";
  position: absolute;
  width: 376.5px;
  height: 1px;
  background-color: var(--theme-border-color);
  bottom: -2px;
  left: -32px;
}

@media screen and (max-width: 1240px) {
  .hosting__list::before {
    width: 310px;
    bottom: -2px;
  }
}

@media screen and (max-width: 991px) {
  .hosting__list::before {
    width: 365px;
  }
}

@media screen and (max-width: 767px) {
  .hosting__list::before {
    width: calc(100% + 40px);
    max-width: 737px;
    left: -20px;
  }
}

@media screen and (max-width: 1240px) {
  .hosting__list {
    font-size: 18px;
  }
}

.hosting__list li {
  display: flex;
  align-items: center;
}

.hosting__list svg,
.hosting__list img {
  margin-right: 19px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hosting__amount {
  padding-left: 3px;
  font-size: 14px;
  line-height: 175%;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}

.hosting__amount svg {
  width: 15px;
  height: 15px;
  margin-right: 23px;
}

.hosting__price {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
}

.hosting__popular {
  width: 260px;
  height: 35px;
  background: var(--color-primary);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary-text);
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 767px) {
  .hosting__popular {
    width: 220px;
  }
}

.hosting__why {
  background-image: url(../images/hosting-why.png);
}

.hosting__control {
  padding: 8px 0 70px;
}

.hosting__block-info {
  margin-bottom: 21px;
}

.wrapper.active .hosting {
  color: var(--theme-text-color);
}

.wrapper.active .hosting__title {
  color: var(--theme-title-color);
}

.wrapper.active .hosting__text {
  color: var(--theme-text-color);
}

.wrapper.active .hosting svg path {
  fill: var(--color-secondary);
}

.wrapper.active .hosting__popular {
  background: var(--color-secondary);
}

.wrapper.active .hosting__block {
  background: #fbfbfb;
}

.wrapper.active .hosting__block:before {
  background-color: var(--theme-border-color);
}

.wrapper.active .hosting__amount {
  color: var(--theme-text-color);
}

.wrapper.active .hosting__list {
  color: var(--theme-text-color);
}

.wrapper.active .hosting__list:before {
  background-color: var(--theme-border-color);
}

.tooltip-asterisk {
  color: darkorange;
  cursor: help;
}

.wrapper.active .tooltip-asterisk {
  color: darkorange;
}

.game-patches {
  padding: 60px 0;
  color: var(--theme-primary-text);
}

.game-patches__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.game-patches__block {
  padding: 24px;
  background: #1a1832;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--theme-border-color);
  transition: var(--transition-default);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.game-patches__accordion {
  min-height: auto;
}

.game-patches__accordion.active {
  min-height: auto;
}

.game-patches__block:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--theme-icon-glow-rgb), 0.15);
}

.game-patches__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 16px;
  position: relative;
}

.game-patches__accordion.active .game-patches__header {
  border-bottom: 1px solid rgba(160, 101, 255, 0.15);
  margin-bottom: 16px;
}

.game-patches__title-section {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.game-patches__title-content {
  flex: 1;
}

.game-patches__header img,
.game-patches__header svg {
  flex-shrink: 0;
  color: var(--color-primary);
  filter: drop-shadow(0 0 8px rgba(var(--theme-icon-glow-rgb), 0.4));
  transition: var(--transition-default);
}

.game-patches__block:hover .game-patches__header img,
.game-patches__block:hover .game-patches__header svg {
  filter: drop-shadow(0 0 12px rgba(var(--theme-icon-glow-rgb), 0.6));
  transform: scale(1.05);
}

.game-patches__header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme-title-color);
  margin: 0 0 4px 0;
  line-height: 1.2;
  transition: var(--transition-default);
}

.game-patches__subtitle {
  font-size: 14px;
  color: var(--theme-text-color);
  margin: 0;
  opacity: 0.8;
  line-height: 1.3;
}

.game-patches__block:hover .game-patches__header h3 {
  color: var(--color-primary);
}

.game-patches__content {
  display: none;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.game-patches__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.game-patches__toggle-icon {
  width: 16px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  position: relative;
  transition: var(--transition-default);
}

.game-patches__toggle-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 16px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-default);
}

.game-patches__accordion.active .game-patches__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.game-patches__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.game-patches__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.4;
  transition: var(--transition-fast);
}

.game-patches__list li:hover {
  transform: translateX(2px);
}

.game-patches__list li:last-child {
  margin-bottom: 0;
}

.game-patches__list img,
.game-patches__list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.game-patches__list li:hover img,
.game-patches__list li:hover svg {
  filter: drop-shadow(0 0 6px rgba(var(--theme-icon-glow-rgb), 0.5));
}

.game-patches__list span {
  color: var(--theme-text-color);
  transition: var(--transition-fast);
}

.game-patches__list li:hover span {
  color: var(--theme-primary-text);
}

@media screen and (max-width: 1240px) {
  .game-patches {
    padding: 50px 0;
  }
  
  .game-patches__blocks {
    gap: 20px;
  }
  
  .game-patches__block {
    padding: 20px;
  }
  
  .game-patches__header h3 {
    font-size: 18px;
  }
  
  .game-patches__subtitle {
    font-size: 13px;
  }
  
  .game-patches__list li {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 991px) {
  .game-patches__blocks {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .game-patches__block {
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  .game-patches {
    padding: 40px 0;
  }
  
  .game-patches__blocks {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .game-patches__block {
    padding: 16px;
  }
  
  .game-patches__header {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  
  .game-patches__title-section {
    gap: 8px;
  }
  
  .game-patches__header h3 {
    font-size: 16px;
  }
  
  .game-patches__subtitle {
    font-size: 12px;
  }
  
  .game-patches__list li {
    font-size: 12px;
    margin-bottom: 10px;
    gap: 8px;
  }
  
  .game-patches__toggle {
    width: 20px;
    height: 20px;
  }
  
  .game-patches__toggle-icon {
    width: 14px;
  }
  
  .game-patches__toggle-icon::before {
    width: 14px;
  }
}

.wrapper.active .game-patches {
  color: var(--theme-text-color);
}

.wrapper.active .game-patches__block {
  background: #fbfbfb;
  border-color: rgba(0, 0, 0, 0.1);
}

.wrapper.active .game-patches__header h3 {
  color: var(--theme-title-color);
}

.wrapper.active .game-patches__subtitle {
  color: var(--theme-text-color);
}

.wrapper.active .game-patches__toggle-icon {
  background: var(--color-secondary);
}

.wrapper.active .game-patches__toggle-icon::before {
  background: var(--color-secondary);
}

.wrapper.active .game-patches__list span {
  color: var(--theme-text-color);
}

.wrapper.active .game-patches__header img,
.wrapper.active .game-patches__header svg {
  color: var(--color-secondary);
}

.wrapper.active .game-patches__list img,
.wrapper.active .game-patches__list svg {
  color: var(--color-secondary);
}

.wrapper.active .game-patches svg path {
  fill: var(--color-secondary);
}

.wrapper.active .game-patches svg[stroke] path {
  stroke: var(--color-secondary);
}

.hosting__block.gmod__block {
  padding: 28px 32px;
}

@media screen and (max-width: 1240px) {
  .hosting__block.gmod__block {
    padding: 24px 20px;
  }
}

.gmod__player {
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  color: var(--theme-primary-text);
  margin-bottom: 14px;
}

@media screen and (max-width: 1240px) {
  .gmod__player {
    font-size: 21px;
  }
}

.gmod__player span {
  font-size: 38px;
  line-height: 45px;
}

@media screen and (max-width: 1240px) {
  .gmod__player span {
    font-size: 32px;
  }
}

.gmod__head {
  font-size: 18px;
  line-height: 175%;
  margin-bottom: 13px;
  height: 95px;
}

@media screen and (max-width: 1240px) {
  .gmod__head {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .gmod__head {
    height: auto;
  }
}

.gmod__block-item {
  margin-bottom: 38px;
  position: relative;
}

.gmod__block-item::before {
  content: "";
  position: absolute;
  width: 376.5px;
  height: 1px;
  background-color: var(--theme-border-color);
  bottom: -20px;
  left: -32px;
}

@media screen and (max-width: 1240px) {
  .gmod__block-item::before {
    width: 310px;
    left: -20px;
    bottom: -15px;
  }
}

@media screen and (max-width: 991px) {
  .gmod__block-item::before {
    width: 365px;
  }
}

@media screen and (max-width: 767px) {
  .gmod__block-item::before {
    width: calc(100% + 40px);
    max-width: 737px;
    left: -20px;
  }
}

@media screen and (max-width: 1240px) {
  .gmod__block-item {
    margin-bottom: 30px;
  }
}

.wrapper.active .gmod__player {
  color: var(--theme-title-color);
}

.wrapper.active .gmod__head {
  color: var(--theme-text-color);
}

.wrapper.active .hosting__block.gmod__block .gmod__block-item:before {
  background-color: var(--theme-border-color);
}

.gmod__block .gmod__price {
  text-align: left;
}

.gmod__advantage {
  font-size: 20px;
  line-height: 175%;
  margin-bottom: 10px;
}

.wrapper.active .gmod__advantage {
  color: var(--theme-text-color);
}

.gmod__block .hosting__block-info {
  margin-bottom: 12px;
}

.gmod__list {
  margin-bottom: 24px;
}

.gmod__list::before {
  display: none;
}

.control__text {
  color: var(--theme-text-color);
  font-size: 18px;
  line-height: 175%;
  margin-bottom: 51px;
}

@media screen and (max-width: 1240px) {
  .control__text {
    font-size: 17px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .control__text {
    margin-bottom: 28px;
  }
}

.wrapper.active .control__text {
  color: var(--theme-text-color);
}