.home-buttons-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 32px 0 0 0;
  flex-wrap: wrap;
}
.home-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 280px;
  width: 445px !important;
  height: 80px !important;
  padding: 24px 32px 24px 32px;
  border-radius: 24px;
  background: linear-gradient(90deg, #d13f3f 0%, #9e2626 100%);
  box-shadow: 0 4px 24px 0 rgba(64,224,208,0.10);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}
.home-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 0 4px #ff0000, 0 8px 32px 0 rgba(224, 64, 64, 0.18);
  outline: 2px solid #ff0000;
  outline-offset: 0;
}
.home-btn:hover .home-btn-img {
  transform: translateY(-50%) scale(2.1);
  transition: transform 0.18s;
}
.home-btn-img {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 120px;
  width: auto;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
  z-index: 2;
  pointer-events: none;
}
.home-btn-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.01em;
  z-index: 2;
  margin-left: 0;
}
.home-btn-skin .home-btn-img {
  right: 51px;
  top: calc(50% - 10px);
  transform: translateY(-50%) scale(1.95);
  user-select: none;
}
.home-btn-leaders .home-btn-img {
  height: 130px;
  transform: translateY(-50%);
  user-select: none;
}
.home-btn-privil .home-btn-img {
  transform: translateY(-50%) scale(1.8);
  user-select: none;
}
.home-btn-leaders:hover .home-btn-img {
  transform: translateY(-50%) scale(1.3);
  transition: transform 0.18s;
}
.home-btn:last-child {
  margin-right: 0 !important;
}
.home-btn:first-child {
  margin-left: 0 !important;
}
@media (max-width: 900px) {
  .home-buttons-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .home-btn {
    min-width: 220px;
    max-width: 95vw;
    padding: 18px 18px 18px 18px;
  }
  .home-btn-img {
    height: 80px;
    right: 8px;
  }
  .home-btn-text {
    font-size: 1rem;
  }
}

/* :root {
    --main-grad-from: #d13f3f;
    --main-grad-to: #9e2626;
    --main-shadow: 0 8px 40px 0 rgba(224, 64, 64, 0.18);
    --main-glow: 0 0 24px 4px #d13f3f, 0 0 8px 2px #9e2626;
    --main-card-bg: linear-gradient(120deg, #232323 0%, #181313 100%);
    --main-card-border: #d13f3f;
    --main-icon: #d13f3f;
    --main-value: #d13f3f;
    --main-label: #fff;
} */
.home-stats-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
    margin: 40px auto;
    width: 1450px;
    max-width: 1400px;
    flex-wrap: nowrap;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.home-stats-card {
    flex: 1;
    min-width: 0;
    width: calc((1400px - (5 * 8px)) / 6);
    max-width: calc((1400px - (5 * 8px)) / 6);
    background: linear-gradient(90deg, #d13f3f 0%, #9e2626 100%);
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(203, 46, 46, 0.13);
    height: 90px;
    padding: 10px 18px 8px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    border: none;
    overflow: hidden;
}
.home-stats-card:hover, .home-stats-card:focus {
    box-shadow: 0 0 16px 4px #cf3636, 0 0 8px 2px #a01f1f;
    border-color: #fff;
    z-index: 2;
}
.home-stats-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.home-stats-label {
    font-size: 14px;
    color: #111;
    opacity: 1;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.1;
}
.home-stats-value {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-top: 0;
    line-height: 1;
}
.home-stats-icon {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.home-stats-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}
.home-stats-card .crown-icon {
    transition: opacity 0.3s ease;
}
.home-stats-card .arrow-icon {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 20px;
    height: 20px;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.home-stats-card:hover .crown-icon {
    opacity: 0;
}
.home-stats-card:hover .arrow-icon {
    opacity: 1;
}
.home-stats-card:nth-child(5) .home-stats-icon img {
    width: 32px;
    height: 32px;
}
@media (max-width: 1500px) {
    .home-stats-row {
        width: 98%;
        max-width: 1400px;
        gap: 10px;
        flex-wrap: wrap;
        margin: 40px auto;
        transform: none;
        left: auto;
    }
    .home-stats-card {
        width: calc((100% - (5 * 10px)) / 6);
        max-width: calc((100% - (5 * 10px)) / 6);
    }
}
@media (max-width: 900px) {
    .home-stats-row {
        flex-direction: column;
        width: 98vw;
        max-width: 98vw;
        gap: 12px;
        flex-wrap: wrap;
    }
    .home-stats-card {
        height: 60px;
        padding: 0 0 0 12px;
        width: 100%;
        max-width: 100%;
    }
    .home-stats-icon img {
        width: 20px;
        height: 20px;
    }
    .home-stats-value {
        font-size: 16px;
        margin-right: 10px;
    }
    .home-stats-label {
        font-size: 12px;
    }
} 